From 8077d4204a9fae3ac63a1ae30e04db73eb96cd34 Mon Sep 17 00:00:00 2001 From: 16337 <1633794139@qq.com> Date: Mon, 23 Mar 2026 12:05:26 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8A=9F=E8=83=BD=EF=BC=9A=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=20/work-order=20=E8=B7=AF=E7=94=B1=EF=BC=8C=E6=97=A0=E5=B8=83?= =?UTF-8?q?=E5=B1=80=E6=97=A0=E9=9C=80=E7=99=BB=E5=BD=95=EF=BC=8C=E4=BC=81?= =?UTF-8?q?=E5=BE=AE=20H5=20=E7=9B=B4=E6=8E=A5=E8=AE=BF=E9=97=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/web-antd/src/router/routes/core.ts | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/apps/web-antd/src/router/routes/core.ts b/apps/web-antd/src/router/routes/core.ts index 22fd0017c..5a749a51e 100644 --- a/apps/web-antd/src/router/routes/core.ts +++ b/apps/web-antd/src/router/routes/core.ts @@ -109,6 +109,19 @@ const coreRoutes: RouteRecordRaw[] = [ }, ], }, + // H5 工单详情页(企微内打开,无布局,无需登录) + { + name: 'WorkOrder', + path: '/work-order', + component: () => import('#/views/work-order/index.vue'), + meta: { + hideInMenu: true, + hideInTab: true, + hideInBreadcrumb: true, + title: '工单详情', + ignoreAccess: true, + }, + }, ]; export { coreRoutes, fallbackNotFoundRoute };