chenhaozhe
2025-12-08 49e57dcc6775a8e52d7f854e9a299e19a65dbe58
src/router/index.js
@@ -378,7 +378,7 @@
      },
    ],
  },
    //车型列表
  //车型列表
  {
    path: "/basic/gy/gyCartypelist",
    component: Layout,
@@ -572,6 +572,33 @@
      },
    ],
  },
  // 车辆模块
  {
    path: "/basic",
    component: Layout,
    hidden: true,
    redirect: "noredirect",
    meta: {
      breadcrumb: false, // 如果设置为false,则不会在breadcrumb面包屑中显示
      activeMenu: "/basic/gy", // 当路由设置了该属性,则会高亮相对应的侧边栏。
    },
    children: [
      {
        path: "/basic/gy/gyCarList",
        component: () => import("@/views/basic/gyCar/gyCarList.vue"),
        name: "GyCarList",
        meta: { title: "车辆列表", activeMenu: "/basic/gy" },
      },
      {
        path: "/basic/gy/gyCarEdit",
        component: () => import("@/views/basic/gyCar/gyCarEdit.vue"),
        name: "GyCarEdit",
        meta: { title: "车辆编辑", activeMenu: "/basic/gy" },
      },
    ],
  },
  // i节点页面
  {
    path: "/iframe",
@@ -628,6 +655,30 @@
        name: "IframeGyMaterial",
        meta: { title: "物料列表", noCache: true, noLoading: true },
      },
      {
        path: "GyCar",
        component: () => import("@/views/basic/gyCar/gyCarList"), // 车辆
        name: "IframeGyCar",
        meta: { title: "车辆", noCache: true, noLoading: true },
      },
      {
        path: "GyCarEdit",
        component: () => import("@/views/basic/gyCar/gyCarEdit"), // 车辆
        name: "IframeGyCarEdit",
        meta: { title: "车辆编辑", noCache: true, noLoading: true },
      },
      {
        path: "GyCarType",
        component: () => import("@/views/basic/gyCartypelist/gyCartypelist"), // 车型
        name: "IframeGyCarType",
        meta: { title: "车型", noCache: true, noLoading: true },
      },
      {
        path: "GySupplier",
        component: () => import("@/views/basic/gy/gySupplier"), // 供应商
        name: "IframeGySupplier",
        meta: { title: "供应商", noCache: true, noLoading: true },
      },
    ],
  }, // 客户
  {