Commit 783fc9464f027c7f555b59f6de5b4d68289e89ef
1 parent
67b6417e
房山充电
Showing
3 changed files
with
9 additions
and
9 deletions
src/components/parkRecord.vue
| ... | ... | @@ -149,7 +149,7 @@ export default { |
| 149 | 149 | { text: '离场待缴', id: 2 }, |
| 150 | 150 | ], |
| 151 | 151 | carColor: 1,// 车牌颜色 |
| 152 | - currentTabActive: 1, // 显示当前哪个 | |
| 152 | + currentTabActive: 0, // 显示当前哪个 | |
| 153 | 153 | carNumber: '', // 车牌号码 |
| 154 | 154 | parkingData: [], // 在停数据 |
| 155 | 155 | parkList: [], // 停车记录数据 |
| ... | ... | @@ -185,7 +185,7 @@ export default { |
| 185 | 185 | terminalSource: 7, |
| 186 | 186 | carNumber: this.carNumber, |
| 187 | 187 | carNumberColor: this.carColor, |
| 188 | - orgId: this.$utils.myOrgId | |
| 188 | + // orgId: this.$utils.myOrgId | |
| 189 | 189 | } |
| 190 | 190 | jsondata.sign = this.$utils.signObject(jsondata) |
| 191 | 191 | |
| ... | ... | @@ -340,7 +340,7 @@ export default { |
| 340 | 340 | orderIds: list, |
| 341 | 341 | terminalSource: '7', |
| 342 | 342 | payType: 4, |
| 343 | - orgId: this.$utils.myOrgId, | |
| 343 | + // orgId: this.$utils.myOrgId, | |
| 344 | 344 | } |
| 345 | 345 | jsondata.sign = this.$utils.signObject(jsondata) |
| 346 | 346 | ... | ... |
src/components/pay.vue
| ... | ... | @@ -232,7 +232,7 @@ export default { |
| 232 | 232 | orderIds: list, |
| 233 | 233 | terminalSource: "7", |
| 234 | 234 | payType: this.$utils.clientBrowserPayType(), |
| 235 | - orgId: this.historyList[0].orgId | |
| 235 | + // orgId: this.historyList[0].orgId | |
| 236 | 236 | }; |
| 237 | 237 | jsondata.sign = this.$utils.signObject(jsondata); |
| 238 | 238 | console.log(jsondata); |
| ... | ... | @@ -282,7 +282,7 @@ export default { |
| 282 | 282 | terminalSource: 7, |
| 283 | 283 | carNumber: this.carNumber, |
| 284 | 284 | carNumberColor: this.carColor, |
| 285 | - orgId: this.$utils.myOrgId | |
| 285 | + // orgId: this.$utils.myOrgId | |
| 286 | 286 | }; |
| 287 | 287 | jsondata.sign = this.$utils.signObject(jsondata); |
| 288 | 288 | parkRecordList(jsondata).then(response => { |
| ... | ... | @@ -345,7 +345,7 @@ export default { |
| 345 | 345 | aliParams.payType = 1;// 1:支付宝 2:微信 3:银联 10:H5 4微信公众号 |
| 346 | 346 | aliParams.terminalSource = 7;//请求端来源 1: 任你停 2:pda 3:微信公共号 7:H5扫码 10页面支付 |
| 347 | 347 | aliParams.paySrcType = paySrcType;//101停车支付 |
| 348 | - aliParams.orgId = this.$utils.myOrgId; | |
| 348 | + // aliParams.orgId = this.$utils.myOrgId; | |
| 349 | 349 | aliParams.backType = 2; |
| 350 | 350 | aliParams.recordArreaInfos = JSON.stringify( _order); |
| 351 | 351 | console.log(aliParams); |
| ... | ... | @@ -367,7 +367,7 @@ export default { |
| 367 | 367 | bankabcParams.payType = 34;// 1:支付宝 2:微信 3:银联 10:H5 4微信公众号 |
| 368 | 368 | bankabcParams.terminalSource = 7;//请求端来源 1: 任你停 2:pda 3:微信公共号 7:H5扫码 10页面支付 |
| 369 | 369 | bankabcParams.paySrcType = paySrcType;//101停车支付 |
| 370 | - bankabcParams.orgId = this.$utils.myOrgId; | |
| 370 | + // bankabcParams.orgId = this.$utils.myOrgId; | |
| 371 | 371 | bankabcParams.backType = 2; |
| 372 | 372 | bankabcParams.PaymentLinkType = 1; |
| 373 | 373 | bankabcParams.recordArreaInfos = JSON.stringify(this.orderId); |
| ... | ... | @@ -437,7 +437,7 @@ export default { |
| 437 | 437 | var wxParams = {}; |
| 438 | 438 | wxParams.orderId = this.orderId; |
| 439 | 439 | wxParams.backType = 2, |
| 440 | - wxParams.orgId = this.$utils.myOrgId, | |
| 440 | + // wxParams.orgId = this.$utils.myOrgId, | |
| 441 | 441 | wxParams.payType = 4;// 1:支付宝 2:微信 3:银联 10:H5 4微信公众号 |
| 442 | 442 | wxParams.terminalSource = 7;//请求端来源 1: 任你停 2:pda 3:微信公共号 7:H5扫码 10页面支付 |
| 443 | 443 | wxParams.carNumber = this.carNumber; | ... | ... |
src/utils/utils.js