From 737ff22320484ce5890ca78a22f4aea8aed5315d Mon Sep 17 00:00:00 2001 From: hzj <1304805162@qq.com> Date: Wed, 17 Sep 2025 18:42:18 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E8=B7=AF=E7=94=B1=E5=AE=88=E5=8D=AB):=20?= =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=9C=B0=E5=9B=BE=E9=A1=B5=E8=BF=9B=E4=B8=8D?= =?UTF-8?q?=E5=8E=BB=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/utils/routeGuard.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/utils/routeGuard.js b/src/utils/routeGuard.js index 6f5b1b2..fddcb6c 100644 --- a/src/utils/routeGuard.js +++ b/src/utils/routeGuard.js @@ -398,11 +398,12 @@ class RouteGuard { const publicPages = [ PAGES.APPLY, // 申请页面 - 重要:申请页面不需要权限检查 PAGES.NOT_APP, // 错误页面 - APP连接失败时的页面 + PAGES.MAP, // 地图选择页面 '/404', // 404页面 '/error', // 通用错误页面 '/recharge', '/recharge-freight-agent', - '/pay-result' + '/pay-result', ] return publicPages.includes(path) }