【功能优化】确认收货添加提示确认
parent
518c898882
commit
b476305e30
|
@ -341,11 +341,20 @@
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// 正常的确认收货流程
|
uni.showModal({
|
||||||
const { code } = await OrderApi.receiveOrder(orderId);
|
title: '提示',
|
||||||
if (code === 0) {
|
content: '确认收货吗?',
|
||||||
await getOrderDetail(orderId);
|
success: async function (res) {
|
||||||
}
|
if (!res.confirm) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
// 正常的确认收货流程
|
||||||
|
const { code } = await OrderApi.receiveOrder(orderId);
|
||||||
|
if (code === 0) {
|
||||||
|
await getOrderDetail(orderId);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
// #ifdef MP-WEIXIN
|
// #ifdef MP-WEIXIN
|
||||||
|
|
|
@ -223,12 +223,21 @@
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// 正常的确认收货流程
|
uni.showModal({
|
||||||
const { code } = await OrderApi.receiveOrder(order.id);
|
title: '提示',
|
||||||
if (code === 0) {
|
content: '确认收货吗?',
|
||||||
resetPagination(state.pagination);
|
success: async function (res) {
|
||||||
await getOrderList();
|
if (!res.confirm) {
|
||||||
}
|
return;
|
||||||
|
}
|
||||||
|
// 正常的确认收货流程
|
||||||
|
const { code } = await OrderApi.receiveOrder(order.id);
|
||||||
|
if (code === 0) {
|
||||||
|
resetPagination(state.pagination);
|
||||||
|
await getOrderList();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
// #ifdef MP-WEIXIN
|
// #ifdef MP-WEIXIN
|
||||||
|
|
Loading…
Reference in New Issue