menuData.js 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. let menuData = [
  2. {
  3. icon: "el-icon-s-data",
  4. title: "航次管理",
  5. code: "VOYAGEMANAGE",
  6. items: [
  7. {
  8. path: "/voyage/voyageList",
  9. name: "航次列表",
  10. code: "VOYAGELIST",
  11. },
  12. {
  13. path: "/voyage/dailyList",
  14. name: "日报列表",
  15. code: "DAYREPORTLIST",
  16. },
  17. {
  18. path: "/voyage/billList",
  19. name: "单据列表",
  20. code: "BILLLIST",
  21. },
  22. {
  23. path: "/voyage/portDeclarationList",
  24. name: "报港",
  25. code: "DECLARELIST",
  26. },
  27. ],
  28. },
  29. {
  30. icon: "el-icon-s-data",
  31. title: "船东管理",
  32. code: "SHIPOWNERMANAGE",
  33. items: [
  34. {
  35. path: "/shipOwnerManage/shipOwnerList",
  36. name: "船东列表",
  37. code: "SHIPOWNERLIST",
  38. },
  39. ],
  40. },
  41. {
  42. icon: "el-icon-s-data",
  43. title: "代理管理",
  44. code: "PROXYMANAGE",
  45. items: [
  46. {
  47. path: "/agencyManage/agencyCompanyList",
  48. name: "代理公司列表",
  49. code: "PROXYLIST",
  50. },
  51. ],
  52. },
  53. {
  54. icon: "el-icon-s-data",
  55. title: "货种管理",
  56. code: "CARGOMANAGE",
  57. items: [
  58. {
  59. path: "/cargoManage/cargoList",
  60. name: "货种列表",
  61. code: "CARGOLIST",
  62. },
  63. ],
  64. },
  65. {
  66. icon: "el-icon-s-data",
  67. title: "账户管理",
  68. code: "ACCOUNTMANAGE",
  69. items: [
  70. {
  71. path: "/accountManage/subAccountList",
  72. name: "员工列表",
  73. code: "ACCOUNTLIST",
  74. },
  75. {
  76. path: "/accountManage/clientList",
  77. name: "客户列表",
  78. code: "CLIENTLIST",
  79. },
  80. ],
  81. },
  82. {
  83. icon: "el-icon-s-data",
  84. title: "权限管理",
  85. code: "PERMISSIONMANAGE",
  86. items: [
  87. {
  88. path: "/authManage/departmentList",
  89. name: "部门列表",
  90. code: "DEPTMANAGE",
  91. },
  92. {
  93. path: "/authManage/roleList",
  94. name: "职位列表",
  95. code: "ROLELIST",
  96. },
  97. ],
  98. },
  99. ];
  100. export default menuData;