caidanpeiquan

This commit is contained in:
2309368887@qq.com 2022-07-18 08:57:58 +08:00
parent 90f9fcc2ca
commit 72b64fcddd
1 changed files with 42 additions and 12 deletions

View File

@ -43,6 +43,7 @@ const routes = [
"title": "控制台",
"icon": "el-icon-monitor",
"affix": true,
"perms": ["dashboard"]
},
"component": "home"
},
@ -52,7 +53,8 @@ const routes = [
"meta": {
"title": "驾驶舱",
"icon": "el-icon-position",
"fullpage": true
"fullpage": true,
"perms": ["bigScreen"]
},
"component": "bigScreen"
},
@ -61,7 +63,8 @@ const routes = [
"path": "/usercenter",
"meta": {
"title": "帐号信息",
"icon": "el-icon-user"
"icon": "el-icon-user",
"perms": ["userCenter"]
},
"component": "userCenter"
}
@ -114,6 +117,7 @@ const routes = [
"meta": {
"title": "我的事件",
"icon": "el-icon-document-remove",
"perms": ["myevent"]
},
"component": "ecm/myevent"
},
@ -123,6 +127,7 @@ const routes = [
"meta": {
"title": "提醒配置",
"icon": "el-icon-setting",
"perms": ["notify_setting"]
},
"component": "ecm/notify_setting"
},
@ -133,6 +138,7 @@ const routes = [
"meta": {
"title": "算法配置",
"icon": "el-icon-setting",
"perms": ["algo"]
},
"component": "ecm/algo"
}
@ -153,6 +159,7 @@ const routes = [
"meta": {
"title": "工作流",
"icon": "el-icon-guide",
"perms": ["workflow"]
},
"component": "wf/workflow"
},
@ -173,6 +180,7 @@ const routes = [
"meta": {
"title": "全部工单",
"icon": "el-icon-folder",
"perms": ["allwork"]
},
"component": "wf/allwork"
@ -183,7 +191,7 @@ const routes = [
"meta": {
"title": "我创建的",
"icon": "el-icon-folder-add",
"perms": ["ownerwork"]
},
"component": "wf/ownerwork"
}
@ -195,7 +203,7 @@ const routes = [
"meta": {
"title": "待办工单",
"icon": "el-icon-folder-opened",
"perms": ["duyt"]
},
"component": "wf/dutywork"
},
@ -205,7 +213,7 @@ const routes = [
"meta": {
"title": "我处理的",
"icon": "el-icon-expand",
"perms": ["worked"]
},
"component": "wf/worked"
},
@ -215,7 +223,7 @@ const routes = [
"meta": {
"title": "抄送我的",
"icon": "el-icon-edit-pen",
"perms": ["ccwork"]
},
"component": "wf/ccwork"
},
@ -249,6 +257,7 @@ const routes = [
"meta": {
"title": "作业列表",
"icon": "el-icon-tickets",
"perms": ["operation"]
},
"component": "opm/operation"
},
@ -258,6 +267,7 @@ const routes = [
"meta": {
"title": "许可证分类",
"icon": "el-icon-ticket",
"perms": ["oplcate"]
},
"component": "opm/oplcate"
},
@ -378,6 +388,7 @@ const routes = [
"meta": {
"title": "相关方列表",
"icon": "el-icon-tickets",
"perms": ["rparty"]
},
"component": "rpm/rparty"
},
@ -387,6 +398,7 @@ const routes = [
"meta": {
"title": "相关方人员",
"icon": "el-icon-user",
"perms": ["remployee"]
},
"component": "rpm/remployee"
},
@ -396,6 +408,7 @@ const routes = [
"meta": {
"title": "人员证书",
"icon": "el-icon-postcard",
"perms": ["rcertificate"]
},
"component": "rpm/rcertificate"
},
@ -405,6 +418,7 @@ const routes = [
"meta": {
"title": "资料库",
"icon": "el-icon-shopping-bag",
"perms": ["rfile"]
},
"component": "rpm/rfile"
},
@ -414,6 +428,7 @@ const routes = [
"meta": {
"title": "入厂项目",
"icon": "el-icon-calendar",
"perms": ["rpj"]
},
"component": "rpm/rpj"
},
@ -445,6 +460,7 @@ const routes = [
"meta": {
"title": "来访项目",
"icon": "el-icon-tickets",
"perms": ["visit"]
},
"component": "vm/visit"
},
@ -454,6 +470,7 @@ const routes = [
"meta": {
"title": "来访人员",
"icon": "el-icon-user",
"perms": ["visitor"]
},
"component": "vm/visitor"
},{
@ -495,6 +512,7 @@ const routes = [
"meta": {
"title": "区域列表",
"icon": "el-icon-tickets",
"perms": ["area"]
},
"component": "am/area"
},
@ -504,6 +522,7 @@ const routes = [
"meta": {
"title": "门禁通道",
"icon": "el-icon-phone",
"perms": ["eqm"]
},
"component": "am/em1"
},
@ -513,6 +532,7 @@ const routes = [
"meta": {
"title": "视频通道",
"icon": "el-icon-video-camera",
"perms": ["monitor"]
},
"component": "am/monitor"
},
@ -522,6 +542,7 @@ const routes = [
"meta": {
"title": "喇叭通道",
"icon": "el-icon-mic",
"perms": ["audio"]
},
"component": "am/audio"
},{
@ -530,6 +551,7 @@ const routes = [
"meta": {
"title": "定位标签",
"icon": "el-icon-map-location",
"perms": ["blt"]
},
"component": "am/blt"
},
@ -551,6 +573,7 @@ const routes = [
"meta": {
"title": "企业员工",
"icon": "el-icon-user",
"perms": ["employee"]
},
"component": "hrm/employee"
}
@ -561,6 +584,7 @@ const routes = [
"meta": {
"title": "证书列表",
"icon": "el-icon-tickets",
"perms": ["certificates"]
},
"component": "hrm/certificates"
}
@ -593,7 +617,8 @@ const routes = [
"meta": {
"title": "账户管理",
"icon": "el-icon-user-filled",
"type": "menu"
"type": "menu",
"perms": ["user"]
},
"component": "sys/user"
},
@ -603,7 +628,8 @@ const routes = [
"meta": {
"title": "部门管理",
"icon": "sc-icon-organization",
"type": "menu"
"type": "menu",
"perms": ["dept"]
},
"component": "sys/dept"
},
@ -613,7 +639,8 @@ const routes = [
"meta": {
"title": "岗位管理",
"icon": "sc-icon-organization",
"type": "menu"
"type": "menu",
"perms": ["post"]
},
"component": "sys/post"
},
@ -623,7 +650,8 @@ const routes = [
"meta": {
"title": "角色管理",
"icon": "el-icon-notebook",
"type": "menu"
"type": "menu",
"perms": ["role"]
},
"component": "sys/role"
},
@ -633,7 +661,8 @@ const routes = [
"meta": {
"title": "字典管理",
"icon": "el-icon-document",
"type": "menu"
"type": "menu",
"perms": ["dict"]
},
"component": "sys/dict"
},
@ -643,7 +672,8 @@ const routes = [
"meta": {
"title": "计划任务",
"icon": "el-icon-alarm-clock",
"type": "menu"
"type": "menu",
"perms": ["task"]
},
"component": "sys/task"
}