commit
6abad0df4d
|
@ -171,7 +171,7 @@
|
||||||
uni.showToast({
|
uni.showToast({
|
||||||
title: '申请成功',
|
title: '申请成功',
|
||||||
});
|
});
|
||||||
sheep.$router.go('/pages/order/aftersale/list');
|
sheep.$router.redirect('/pages/order/aftersale/list');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -260,7 +260,7 @@
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import sheep from '@/sheep';
|
import sheep from '@/sheep';
|
||||||
import { onLoad } from '@dcloudio/uni-app';
|
import { onLoad, onShow } from '@dcloudio/uni-app';
|
||||||
import { reactive, ref } from 'vue';
|
import { reactive, ref } from 'vue';
|
||||||
import { isEmpty } from 'lodash-es';
|
import { isEmpty } from 'lodash-es';
|
||||||
import {
|
import {
|
||||||
|
@ -345,11 +345,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
|
||||||
|
@ -420,6 +429,11 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
onShow(async () => {
|
||||||
|
//onShow中获取订单列表,保证跳转后页面为最新状态
|
||||||
|
await getOrderDetail(state.orderInfo.id);
|
||||||
|
})
|
||||||
|
|
||||||
onLoad(async (options) => {
|
onLoad(async (options) => {
|
||||||
let id = 0;
|
let id = 0;
|
||||||
if (options.id) {
|
if (options.id) {
|
||||||
|
@ -430,7 +444,7 @@
|
||||||
if (state.comeinType === 'wechat') {
|
if (state.comeinType === 'wechat') {
|
||||||
state.merchantTradeNo = options.merchant_trade_no;
|
state.merchantTradeNo = options.merchant_trade_no;
|
||||||
}
|
}
|
||||||
await getOrderDetail(id);
|
state.orderInfo.id = id
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
|
@ -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