|
@@ -233,7 +233,11 @@ export default {
|
|
|
};
|
|
};
|
|
|
this.$http.get('/groupmeal/merchantPackageOrder/orderReady', {params}).then(res => {
|
|
this.$http.get('/groupmeal/merchantPackageOrder/orderReady', {params}).then(res => {
|
|
|
if (res.data.code === 200) {
|
|
if (res.data.code === 200) {
|
|
|
- this.$tip.success(res.data.message);
|
|
|
|
|
|
|
+ // this.$tip.success(res.data.message);
|
|
|
|
|
+ uni.showToast({
|
|
|
|
|
+ icon:'success',
|
|
|
|
|
+ title:res.data.message
|
|
|
|
|
+ })
|
|
|
// 触发更新
|
|
// 触发更新
|
|
|
this.isManaging = false;
|
|
this.isManaging = false;
|
|
|
this.currentStatusTab = 1;
|
|
this.currentStatusTab = 1;
|
|
@@ -242,7 +246,11 @@ export default {
|
|
|
this.$refs.listScroll.downCallback();
|
|
this.$refs.listScroll.downCallback();
|
|
|
});
|
|
});
|
|
|
} else {
|
|
} else {
|
|
|
- this.$tip.error(res.data.message);
|
|
|
|
|
|
|
+ // this.$tip.error(res.data.message);
|
|
|
|
|
+ uni.showToast({
|
|
|
|
|
+ icon:'error',
|
|
|
|
|
+ title:res.data.message
|
|
|
|
|
+ })
|
|
|
}
|
|
}
|
|
|
});
|
|
});
|
|
|
});
|
|
});
|