From f8882ea09f24f0a4ba002fbbcb3e9818629c9c29 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?TOP=E7=B3=AF=E7=B1=B3?= <1130395124@qq.com> Date: Sun, 26 Mar 2023 17:36:17 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=8C=E5=96=84=E6=8E=A5=E5=8D=95=E9=A1=B5?= =?UTF-8?q?=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/get/index.vue | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/pages/get/index.vue b/src/pages/get/index.vue index fb4286f..c3b86eb 100644 --- a/src/pages/get/index.vue +++ b/src/pages/get/index.vue @@ -177,6 +177,19 @@ export default { this.$nextTick(() => { this.setTabHeight(); }); + }) + .catch((e) => { + const that = this; + uni.showModal({ + title: "无法接单", + content: e, + showCancel: false, + success(success) { + if (success.confirm) { + that.$utils.toPage("", {}, "back"); + } + }, + }); }); }); },