master
xiaozhiyong 8 months ago
parent a4bf992e9b
commit 7fae7312ea
  1. 51
      BagStation/pages/makeOrder/orderPaying.vue
  2. 8
      api/pay.js

@ -183,7 +183,7 @@
},
data() {
return {
userIp:null,
userIp: null,
showtitles: "",
imgURL: this.global.imgURL,
order: uni.getStorageSync('orderMade'),
@ -225,8 +225,8 @@
const that = this
wx.request({
url: 'http://ip-api.com/json',
success:function(e){
console.log(e.data.query);
success: function(e) {
// console.log(e.data.query);
that.userIp = e.data.query
}
})
@ -315,8 +315,8 @@
payCode: 'WECHAT_ORDER_PAY_WECHAT', //APPWECHAT_ORDER_PAY_APP
orderId: this.order.orderSerialNumber,
payClient: 'XOIL_DRIVER_WECHAT_APPLET', //"XOIL_DRIVER_ANDROID
userIp: (this.userIp?this.userIp:"36.57.160.59"),
merchantNo:'10089145264'
userIp: (this.userIp ? this.userIp : "36.57.160.59"),
merchantNo: '10089145264'
}
oilPayApi.aggregatePay(payData).then(res => {
@ -324,51 +324,26 @@
uni.requestPayment({
provider: 'wxpay',
...res.data.baseWxOrderVo,
success: (res1) => {
console.log(res)
if (res.code == 20000) {
// this.getPayStatus(this.outTradeNo)
// this.getLastMoney()
// this.getCards()
// console.log('success:' + JSON.stringify(res));
success: (_res) => {
uni.showToast({
title: res.msg
})
oilPayApi.wxPayIntegral({
appId: 'wxc1d226ac9c5bea36',
orderId: this.order.orderSerialNumber
})
uni.redirectTo({
url: '/BagStation/pages/makeOrder/payResult?status=success&&payMethod=' +
this.payMethod,
fail: (err) => {
// console.log(err)
this.payMethod
})
}
})
} else {
uni.showToast({
title: res.msg,
icon: 'none'
})
}
},
fail: function(err) {
console.log(res, err, '************')
// console.log('fail:' + JSON.stringify(err));
}
})
// uni.showToast({
// title: res.msg
// })
// uni.redirectTo({
// url: '/BagStation/pages/makeOrder/payResult?status=success',
// fail: (err) => {
// console.log(err)
// }
// })
} else {
// uni.redirectTo({
// url: '/BagStation/pages/makeOrder/payResult?status=fail'
// })
}
})
},
@ -439,7 +414,7 @@
},
filters: {
moneyFormath(value) {
console.log(value)
// console.log(value)
if (value != 'xxx.x') {
let number = value.toFixed(2)
return number

@ -10,4 +10,12 @@ export default {
data: data
})
},
// 积分处理
wxPayIntegral(data) {
return request({
url: '/oil-pay/yiBaoPay/wxPayIntegral',
method: 'post',
data: data
})
},
}

Loading…
Cancel
Save