pull/2/head
js199000126 2023-05-26 15:20:44 +08:00
parent c7b67f2aae
commit 1bd8b84439
1 changed files with 2 additions and 1 deletions

View File

@ -617,7 +617,7 @@
let that = this;
orderCreate(data).then(res => {
console.log(res.data,'订单信息')
that.getOrderPay(res.data.orderNo, '支付成功');
that.getOrderPay(res.data.columns.orderNo, '支付成功');
}).catch(err => {
uni.hideLoading();
@ -628,6 +628,7 @@
},
getOrderPay: function(orderNo, message) {
let that = this;
console.log(orderNo,'orderNo')
uni.navigateTo({
url: '/pages/goods_cashier/index?order_id=' + orderNo
})