chenhaozhe
2025-11-13 c4b85acdfce7b6db334faaa4832418a0bcba1719
src/router/index.js
@@ -126,20 +126,39 @@
  //   hidden: true,
  // },
  {
    path: "/sales/salesOUt/sellOutBillEdit",
    path: "/sell/sellOut/sellOutBillEdit",
    component: Layout,
    hidden: true,
    redirect: "noredirect",
    meta: {
      breadcrumb: false, // 如果设置为false,则不会在breadcrumb面包屑中显示
      activeMenu: "/sales/salesOUt/sellOutBillEdit", // 当路由设置了该属性,则会高亮相对应的侧边栏。
      activeMenu: "/sell/sellOut", // 当路由设置了该属性,则会高亮相对应的侧边栏。
    },
    children: [
      {
        path: "/sales/salesOUt/sellOutBillEdit",
        path: "/sell/sellOut/sellOutBillEdit",
        component: () => import("@/views/sell/sellOutBill/edit"),
        name: "SellOutBillEdit",
        meta: { title: "销售出库单编辑", activeMenu: "sales/salesOUt" },
        meta: { title: "销售出库单编辑", activeMenu: "sell/sellOut" },
      },
    ],
  },
  //用户列表
  {
    path: "/system/user/xtUserList",
    component: Layout,
    hidden: true,
    redirect: "noredirect",
    meta: {
      breadcrumb: false, // 如果设置为false,则不会在breadcrumb面包屑中显示
      activeMenu: "/system/user", // 当路由设置了该属性,则会高亮相对应的侧边栏。
    },
    children: [
      {
        path: "/system/user/xtUserList",
        component: () => import("@/views/system/user/xtUserList.vue"),
        name: "XtUserList",
        meta: { title: "用户列表", activeMenu: "system/user" },
      },
    ],
  },