| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- let menuData = [
- {
- icon: "el-icon-s-data",
- title: "航次管理",
- code: "VOYAGEMANAGE",
- items: [
- {
- path: "/voyage/voyageList",
- name: "航次列表",
- code: "VOYAGELIST",
- },
- {
- path: "/voyage/dailyList",
- name: "日报列表",
- code: "DAYREPORTLIST",
- },
- {
- path: "/voyage/billList",
- name: "单据列表",
- code: "BILLLIST",
- },
- {
- path: "/voyage/portDeclarationList",
- name: "报港",
- code: "DECLARELIST",
- },
- ],
- },
- {
- icon: "el-icon-s-data",
- title: "船东管理",
- code: "SHIPOWNERMANAGE",
- items: [
- {
- path: "/shipOwnerManage/shipOwnerList",
- name: "船东列表",
- code: "SHIPOWNERLIST",
- },
- ],
- },
- {
- icon: "el-icon-s-data",
- title: "代理管理",
- code: "PROXYMANAGE",
- items: [
- {
- path: "/agencyManage/agencyCompanyList",
- name: "代理公司列表",
- code: "PROXYLIST",
- },
- ],
- },
- {
- icon: "el-icon-s-data",
- title: "货种管理",
- code: "CARGOMANAGE",
- items: [
- {
- path: "/cargoManage/cargoList",
- name: "货种列表",
- code: "CARGOLIST",
- },
- ],
- },
- {
- icon: "el-icon-s-data",
- title: "账户管理",
- code: "ACCOUNTMANAGE",
- items: [
- {
- path: "/accountManage/subAccountList",
- name: "员工列表",
- code: "ACCOUNTLIST",
- },
- {
- path: "/accountManage/clientList",
- name: "客户列表",
- code: "CLIENTLIST",
- },
- ],
- },
- {
- icon: "el-icon-s-data",
- title: "权限管理",
- code: "PERMISSIONMANAGE",
- items: [
- {
- path: "/authManage/departmentList",
- name: "部门列表",
- code: "DEPTMANAGE",
- },
- {
- path: "/authManage/roleList",
- name: "职位列表",
- code: "ROLELIST",
- },
- ],
- },
- ];
- export default menuData;
|