|
@@ -308,12 +308,19 @@
|
308
|
308
|
post("/workerOrder/receiveOrders", {ids: res.data.toString()}).then((res) => {
|
309
|
309
|
uni.hideLoading();
|
310
|
310
|
if (res.status == 200) {
|
311
|
|
- uni.showToast({
|
312
|
|
- title: "操作成功",
|
313
|
|
- success() {
|
314
|
|
- uni.redirectTo({
|
315
|
|
- url: "../receiptpage/receiptpage",
|
316
|
|
- });
|
|
311
|
+ uni.showModal({
|
|
312
|
+ title: "提示",
|
|
313
|
+ content: `本次接单包括${res.names.join('、')},${res.data.length}个工单已接单完成`,
|
|
314
|
+ showCancel: false,
|
|
315
|
+ success: function(res) {
|
|
316
|
+ if (res.confirm) {
|
|
317
|
+ console.log("用户点击确定");
|
|
318
|
+ uni.redirectTo({
|
|
319
|
+ url: "../receiptpage/receiptpage",
|
|
320
|
+ });
|
|
321
|
+ } else if (res.cancel) {
|
|
322
|
+ console.log("用户点击取消");
|
|
323
|
+ }
|
317
|
324
|
},
|
318
|
325
|
});
|
319
|
326
|
} else {
|