Commit d1e66130 authored by youjie's avatar youjie

no message

parent 727d3157
...@@ -68,7 +68,6 @@ ...@@ -68,7 +68,6 @@
this.$emit('closePay'); this.$emit('closePay');
}, },
Pay() { Pay() {
let that = this
let msg = { let msg = {
'pay_channel': this 'pay_channel': this
.payType, //网页打开支付宝支付:alipay_wap 支付宝正扫:alipay_qr 支付宝app:alipay 微信小程序:wx_lite 微信公众号:wx_pub .payType, //网页打开支付宝支付:alipay_wap 支付宝正扫:alipay_qr 支付宝app:alipay 微信小程序:wx_lite 微信公众号:wx_pub
...@@ -88,26 +87,11 @@ ...@@ -88,26 +87,11 @@
this.loading = false this.loading = false
uni.hideLoading() uni.hideLoading()
if (res.data != '') { if (res.data != '') {
if(res.data.OrderStatus==5){
if (that.u && that.u.TenantId == 27) {
uni.navigateTo({
url: `/pages/order-submit/pay-success2?payInfo=${JSON.stringify(that.payInfo)}&StuId=${that.StuId}&TeacherIds=${that.TeacherIds}`
});
that.pay = false
} else {
uni.navigateTo({
url: '/pages/order-submit/pay-success?payInfo=' + JSON.stringify(that
.payInfo)
});
that.pay = false
}
}else{
if (this.payType != 'wx_lite') { if (this.payType != 'wx_lite') {
this.aliPay(res.data) this.aliPay(res.data)
} else { } else {
this.wxPay(JSON.parse(res.data)) this.wxPay(JSON.parse(res.data))
} }
}
} else { } else {
uni.showToast({ uni.showToast({
title: "调起支付失败,请重试", title: "调起支付失败,请重试",
......
...@@ -561,6 +561,14 @@ ...@@ -561,6 +561,14 @@
}, },
res => { res => {
if (res.resultCode == 1) { if (res.resultCode == 1) {
that.payInfo.OrderId = res.data.OrderId;
that.payInfo.total_price = that.ds.total_price;
if(res.data.OrderStatus==5){
uni.reLaunch({
url: '/pages/order-submit/pay-success?payInfo=' +
JSON.stringify(that.payInfo)
})
}else {
if (that.checked == true) { if (that.checked == true) {
that.zhaoren = true; that.zhaoren = true;
let u = uni.getStorageSync("mall_UserInfo"); let u = uni.getStorageSync("mall_UserInfo");
...@@ -575,8 +583,7 @@ ...@@ -575,8 +583,7 @@
"&user_id=" + uid + "&Up=" + Up + "&user_id=" + uid + "&Up=" + Up +
"&SmallShopId=" + SmallShopId + '&JumpType=4'; "&SmallShopId=" + SmallShopId + '&JumpType=4';
} else { } else {
that.payInfo.OrderId = res.data.OrderId;
that.payInfo.total_price = that.ds.total_price;
if (that.formdata.Use_Deposit_Id != 0 && that.ds.total_price == if (that.formdata.Use_Deposit_Id != 0 && that.ds.total_price ==
0) { //如果使用了储蓄卡 就直接支付成功 跳入支付结果 0) { //如果使用了储蓄卡 就直接支付成功 跳入支付结果
uni.reLaunch({ uni.reLaunch({
...@@ -587,6 +594,8 @@ ...@@ -587,6 +594,8 @@
that.payBtn = true; that.payBtn = true;
} }
} }
}
} else { } else {
that.$refs.uToast.show({ that.$refs.uToast.show({
title: res.data.message, title: res.data.message,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment