功能:添加 /work-order 路由,无布局无需登录,企微 H5 直接访问

This commit is contained in:
2026-03-23 12:05:26 +08:00
parent bf304e5dfd
commit 8077d4204a

View File

@@ -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 };