liding
2025-04-01 fcc2feb57154cdb9fcedf10c526a1fe57e4bc2cc
src/router/index.js
@@ -105,20 +105,20 @@
// 动态路由,基于用户权限动态去加载
export const dynamicRoutes = [
  {
    // 原辅料下单
    // 原辅材下单
    path: "/materialOrder",
    component: Layout,
    hidden: true,
    permissions: ["business:order"],
    children: [
      {
        // 原辅料下单
        // 原辅材下单
        path: "customsInspection",
        component: () =>
          import("@/views/business/materialOrder/customsInspection"),
        name: "CustomsInspection",
        meta: {
          title: "原辅料下单详情",
          title: "原辅材下单详情",
          activeMenu: "/business/materialOrder",
          keepAlive: true,
        },