1.修改支付成功提示文字

2.app 打开促销更多显示异常
3.拼团点击单独购买无法打开商品详情页面
4.促销打开更多 上面有空白区域
5.商户管理点击去发货,提示订单不存在的问题
This commit is contained in:
Gao xiaosong
2020-05-17 15:27:47 +08:00
parent 20842ae3fe
commit 0e622676f0
5 changed files with 6 additions and 16 deletions

View File

@ -14,16 +14,6 @@ export const weappPay = (option) => {
sign: option.sign,
timestamp: option.timestamp + '',
}
console.log({
provider: 'wxpay',
// signType: "MD5",
// timeStamp: orderInfo.timeStamp,
// nonceStr: orderInfo.noncestr,
// package: orderInfo.prepayid,
// signType: "MD5",
// paySign: orderInfo.sign,
orderInfo,
}, '发起支付')
// 调用登录接口
uni.requestPayment({
provider: 'wxpay',
@ -33,7 +23,7 @@ export const weappPay = (option) => {
success: (success) => {
console.log(success)
uni.showToast({
title: JSON.stringify(success), icon: 'success', duration: 5000
title: '支付成功', icon: 'success', duration: 5000
});
resolve(success)
},