|
@@ -85,6 +85,7 @@ export default {
|
|
|
method: 'POST',
|
|
|
data: { orderId: this.item.id },
|
|
|
success: res => {
|
|
|
+ uni.showToast({ title: '订单确认成功' });
|
|
|
this.current = 1;
|
|
|
uni.setNavigationBarTitle({ title: '互助委托确认' });
|
|
|
}
|
|
@@ -104,8 +105,9 @@ export default {
|
|
|
method: 'POST',
|
|
|
data: { orderId: this.item.id },
|
|
|
success: res => {
|
|
|
+ uni.showToast({ title: '互助委托确认成功' });
|
|
|
this.current = 2;
|
|
|
- uni.setNavigationBarTitle({ title: '互助委托确认' });
|
|
|
+ uni.setNavigationBarTitle({ title: '进口申报确认' });
|
|
|
}
|
|
|
});
|
|
|
}
|
|
@@ -123,7 +125,10 @@ export default {
|
|
|
method: 'POST',
|
|
|
data: { orderId: this.item.id },
|
|
|
success: res => {
|
|
|
- uni.navigateTo({ url: '/pages/index/index' });
|
|
|
+ uni.showToast({ title: '进口申报确认成功' });
|
|
|
+ setTimeout(() => {
|
|
|
+ uni.switchTab({ url: '/pages/index/index' });
|
|
|
+ }, 1000);
|
|
|
}
|
|
|
});
|
|
|
}
|