From a82c414693d4e7c3162bfa7a707cf135636380fd Mon Sep 17 00:00:00 2001 From: caoqianming Date: Tue, 16 Dec 2025 13:37:08 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E4=B8=BB=E9=A1=B5=E6=B5=81=E7=A8=8B?= =?UTF-8?q?=E6=8F=90=E7=A4=BA=E9=A1=B5=E9=9D=A2=E6=9C=AA=E5=AE=8C=E6=88=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/index/index.vue | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pages/index/index.vue b/pages/index/index.vue index 982d791..59b6024 100644 --- a/pages/index/index.vue +++ b/pages/index/index.vue @@ -108,6 +108,14 @@ let view_path = item.view_path2?item.view_path2:item.view_path; uni.navigateTo({ url:`/pages${view_path}?mode=add` + }).catch(e=>{ + console.log(e) + if (e.errMsg.indexOf("not found")!=-1){ + uni.showToast({ + title: '该页面暂未完成', + icon: 'none' + }); + } }) } }