...
|
...
|
@@ -307,7 +307,7 @@ |
|
|
this.joinValue = (Number(item.price).toFixed(2))
|
|
|
}
|
|
|
})
|
|
|
(this.cheapListDeal.length > 0) && (this.cheapListDeal.unshift('请选择'));
|
|
|
(this.cheapListDeal.length > 0) && (this.cheapListDeal.unshift('请选择'));
|
|
|
// 店铺活动价
|
|
|
res.data.data.goods_list.map(item => {
|
|
|
if (item.active.length > 0) {
|
...
|
...
|
@@ -390,7 +390,7 @@ |
|
|
}
|
|
|
this.$rqs('/api/cart/pay', data).then(res => {
|
|
|
jweixin.config({
|
|
|
debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
|
|
|
debug: false, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
|
|
|
appId: 'wx03ffc650911f32d4', // 必填,公众号的唯一标识
|
|
|
timestamp: res.data.data.jsApiParameters.timeStamp, // 必填,生成签名的时间戳
|
|
|
nonceStr: res.data.data.jsApiParameters.nonceStr, // 必填,生成签名的随机串
|
...
|
...
|
@@ -469,7 +469,7 @@ |
|
|
}
|
|
|
this.$rqs('/api/goods/pay', data).then(res => {
|
|
|
jweixin.config({
|
|
|
debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
|
|
|
debug: false, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
|
|
|
appId: 'wx03ffc650911f32d4', // 必填,公众号的唯一标识
|
|
|
timestamp: res.data.data.jsApiParameters.timeStamp, // 必填,生成签名的时间戳
|
|
|
nonceStr: res.data.data.jsApiParameters.nonceStr, // 必填,生成签名的随机串
|
...
|
...
|
@@ -498,27 +498,27 @@ |
|
|
signType: 'MD5', // 签名方式,默认为'SHA1',使用新版支付需传入'MD5'
|
|
|
paySign: res.data.data.jsApiParameters.paySign, // 支付签名
|
|
|
success: function(res) {
|
|
|
// 支付成功后的回调函数
|
|
|
console.log('paysuccess')
|
|
|
// // 支付成功后的回调函数
|
|
|
// console.log('paysuccess')
|
|
|
console.log(res)
|
|
|
var route = 'payResult' + '?type=1'
|
|
|
uni.navigateTo({
|
|
|
url: route
|
|
|
});
|
|
|
// var route = 'payResult' + '?type=1'
|
|
|
// uni.navigateTo({
|
|
|
// url: route
|
|
|
// });
|
|
|
},
|
|
|
cancel: function(r) {
|
|
|
var route = 'payResult' + '?type=2'
|
|
|
uni.navigateTo({
|
|
|
url: route
|
|
|
});
|
|
|
// var route = 'payResult' + '?type=2'
|
|
|
// uni.navigateTo({
|
|
|
// url: route
|
|
|
// });
|
|
|
},
|
|
|
fail: function(res) {
|
|
|
console.log('payfail')
|
|
|
console.log(res)
|
|
|
var route = 'payResult' + '?type=0'
|
|
|
uni.navigateTo({
|
|
|
url: route
|
|
|
});
|
|
|
// console.log('payfail')
|
|
|
// console.log(res)
|
|
|
// var route = 'payResult' + '?type=0'
|
|
|
// uni.navigateTo({
|
|
|
// url: route
|
|
|
// });
|
|
|
}
|
|
|
});
|
|
|
});
|
...
|
...
|
|