gaoluyang
2025-02-11 29b413387460cd532f6d9f045c82faad9a2c1e85
src/router/index.js
@@ -93,9 +93,24 @@
// 动态路由,基于用户权限动态去加载
export const dynamicRoutes = [
  {
    // 原材料报检
    path: '/business/rawMaterialInspection',
    component: Layout,
  },
  {
    // 原材料检验下单
    path: '/business/materialOrder',
    component: Layout,
    hidden: true,
    children: [
      {
        // 铜单丝下单
        path: '/customsInspection',
        component: () => import('@/views/business/materialOrder/customsInspection'),
        name: '铜单丝下单',
        meta: { title: '铜单丝下单', activeMenu: '/business/materialOrder' }
      }
    ]
  },
  {
    path: '/system/user-auth',