bednetQtuoteRouter.ts 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. import type { Menu } from "@/typings/global";
  2. /**
  3. * @argument name 床网报价
  4. */
  5. export const bednetQtuoteRouter: Menu.MenuOptions[] = [
  6. {
  7. path: "/bednetQuote",
  8. name: "bednetQuote",
  9. component: "/quote/bednetQuote/index",
  10. meta: {
  11. icon: "Common_Business.png",
  12. title: "床网报价",
  13. isLink: "",
  14. isHide: false,
  15. isFull: false,
  16. isAffix: false,
  17. isKeepAlive: true,
  18. funid: 61
  19. },
  20. // children: [
  21. // {
  22. // path: "/technology/material",
  23. // name: "material",
  24. // meta: {
  25. // icon: "iconpackage",
  26. // title: "产品物料",
  27. // isLink: "",
  28. // isHide: false,
  29. // isFull: false,
  30. // isAffix: false,
  31. // isKeepAlive: true,
  32. // isSubMenu: true,
  33. // activeMenu: "/technology",
  34. // funid: 6969
  35. // },
  36. // children: [
  37. // {
  38. // path: "/technology/material/mtrldef",
  39. // name: "productAndMtrlCrm",
  40. // component: "/technology/mtrldef/index",
  41. // meta: {
  42. // icon: "iconpackage",
  43. // title: "产品及物料",
  44. // isLink: "",
  45. // isHide: false,
  46. // isFull: false,
  47. // isAffix: false,
  48. // isKeepAlive: true,
  49. // activeMenu: "/technology/material/mtrldef",
  50. // funid: 367
  51. // },
  52. children: [
  53. {
  54. path: "/bednetQuote/detail",
  55. name: "bednetQuoteDetail",
  56. component: "/quote/bednetQuote/detail",
  57. meta: {
  58. icon: "iconpackage",
  59. title: "床网报价详情",
  60. isLink: "",
  61. isHide: true,
  62. isFull: false,
  63. isAffix: false,
  64. isKeepAlive: true,
  65. funid: 61,
  66. activeMenu: "/bednetQuote"
  67. }
  68. },
  69. {
  70. path: "/bednetQuote/new",
  71. name: "bednetQuoteAdd",
  72. component: "/quote/bednetQuote/detail",
  73. meta: {
  74. icon: "iconuser-01",
  75. title: "新增床网报价",
  76. isLink: "",
  77. isHide: true,
  78. isFull: false,
  79. isAffix: false,
  80. isKeepAlive: true,
  81. funid: 62,
  82. activeMenu: "/bednetQuote"
  83. }
  84. },
  85. {
  86. path: "/bednetQuote/edit",
  87. name: "bednetQuoteEdit",
  88. component: "/quote/bednetQuote/detail",
  89. meta: {
  90. icon: "iconuser-01",
  91. title: "修改床网报价",
  92. isLink: "",
  93. isHide: true,
  94. isFull: false,
  95. isAffix: false,
  96. isKeepAlive: true,
  97. funid: 62,
  98. activeMenu: "/bednetQuote"
  99. }
  100. },
  101. {
  102. path: "/bednetQuote/copy",
  103. name: "bednetQuoteEdit",
  104. component: "/quote/bednetQuote/detail",
  105. meta: {
  106. icon: "iconuser-01",
  107. title: "复制床网报价",
  108. isLink: "",
  109. isHide: true,
  110. isFull: false,
  111. isAffix: false,
  112. isKeepAlive: true,
  113. funid: 75,
  114. activeMenu: "/bednetQuote"
  115. }
  116. }
  117. ]
  118. // }
  119. // ]
  120. // }
  121. // ]
  122. }
  123. ];