Commit cd926e2c192b826e3d9a0950d5765d032ad88a65

Authored by liuqimichale
1 parent 54a8181a

去掉车辆类型

src/components/orderPay.vue
... ... @@ -142,10 +142,12 @@ export default {
142 142 aliParams.paySrcType = this.paySrcType;//101停车支付
143 143 aliParams.orgId = this.$utils.myOrgId,
144 144 aliParams.backType = 2,
  145 + aliParams.PaymentLinkType = 1
145 146 aliParams.recordArreaInfos = JSON.stringify(this.orderId);
146 147 console.log(aliParams)
147 148  
148 149 bankH5Pay(aliParams).then(response => {
  150 + console.log(response)
149 151 let res = response.data
150 152 let _token = res.split('TOKEN=')[1]
151 153 console.log(_token)
... ...
src/utils/utils.js
... ... @@ -88,7 +88,7 @@ export default {
88 88 return '农行'
89 89 }else {
90 90 console.log("其他浏览器");
91   - return '支付宝'
  91 + return '农行'
92 92 }
93 93 },
94 94 // 0eca8f5373ca4866aec2f8e9d9367104 老的id
... ...