|
@@ -198,14 +198,15 @@ this.hexiaodata=JSON.parse(option.list);
|
|
|
this.$api.post('/api/merchant/food/scenic/merchant/order/verifyOrderQrCode?writeOffCode',this.hexiaodata)
|
|
|
.then(res => {
|
|
|
if (res.data.code == 0) {
|
|
|
- uni.showToast({
|
|
|
- title:'核销成功',
|
|
|
- icon:'none',
|
|
|
- duration:1500
|
|
|
- })
|
|
|
- uni.navigateBack({
|
|
|
- delta: 1
|
|
|
- });
|
|
|
+ this.$showToast('核销成功');
|
|
|
+ setTimeout(()=>{
|
|
|
+ uni.navigateTo({
|
|
|
+ url: '/pagesHouse/Mine/ordersList/outcome'
|
|
|
+ })
|
|
|
+ },1500)
|
|
|
+ // uni.navigateBack({
|
|
|
+ // delta: 1
|
|
|
+ // });
|
|
|
} else {
|
|
|
this.$showToast(res.data.msg)
|
|
|
}
|