123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- import type { Menu } from "@/typings/global";
- /**
- * @argument name 床网报价
- */
- export const bednetQtuoteRouter: Menu.MenuOptions[] = [
- {
- path: "/bednetQuote",
- name: "bednetQuote",
- component: "/quote/bednetQuote/index",
- meta: {
- icon: "Common_Business.png",
- title: "床网报价",
- isLink: "",
- isHide: false,
- isFull: false,
- isAffix: false,
- isKeepAlive: true,
- funid: 61
- },
- // children: [
- // {
- // path: "/technology/material",
- // name: "material",
- // meta: {
- // icon: "iconpackage",
- // title: "产品物料",
- // isLink: "",
- // isHide: false,
- // isFull: false,
- // isAffix: false,
- // isKeepAlive: true,
- // isSubMenu: true,
- // activeMenu: "/technology",
- // funid: 6969
- // },
- // children: [
- // {
- // path: "/technology/material/mtrldef",
- // name: "productAndMtrlCrm",
- // component: "/technology/mtrldef/index",
- // meta: {
- // icon: "iconpackage",
- // title: "产品及物料",
- // isLink: "",
- // isHide: false,
- // isFull: false,
- // isAffix: false,
- // isKeepAlive: true,
- // activeMenu: "/technology/material/mtrldef",
- // funid: 367
- // },
- children: [
- {
- path: "/bednetQuote/detail",
- name: "bednetQuoteDetail",
- component: "/quote/bednetQuote/detail",
- meta: {
- icon: "iconpackage",
- title: "床网报价详情",
- isLink: "",
- isHide: true,
- isFull: false,
- isAffix: false,
- isKeepAlive: true,
- funid: 61,
- activeMenu: "/bednetQuote"
- }
- },
- {
- path: "/bednetQuote/new",
- name: "bednetQuoteAdd",
- component: "/quote/bednetQuote/detail",
- meta: {
- icon: "iconuser-01",
- title: "新增床网报价",
- isLink: "",
- isHide: true,
- isFull: false,
- isAffix: false,
- isKeepAlive: true,
- funid: 62,
- activeMenu: "/bednetQuote"
- }
- },
- {
- path: "/bednetQuote/edit",
- name: "bednetQuoteEdit",
- component: "/quote/bednetQuote/detail",
- meta: {
- icon: "iconuser-01",
- title: "修改床网报价",
- isLink: "",
- isHide: true,
- isFull: false,
- isAffix: false,
- isKeepAlive: true,
- funid: 62,
- activeMenu: "/bednetQuote"
- }
- },
- {
- path: "/bednetQuote/copy",
- name: "bednetQuoteEdit",
- component: "/quote/bednetQuote/detail",
- meta: {
- icon: "iconuser-01",
- title: "复制床网报价",
- isLink: "",
- isHide: true,
- isFull: false,
- isAffix: false,
- isKeepAlive: true,
- funid: 75,
- activeMenu: "/bednetQuote"
- }
- }
- ]
- // }
- // ]
- // }
- // ]
- }
- ];
|