12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- export default {
- name: 'ResourceGuard',
- path: '/resource-guard',
- redirect: '/resource-guard/person-guard',
- meta: {
- title: '资源保障',
- sort: 3,
- isModule: true,
- alias: 'resourceManage',
- icon: 'resource',
- },
- children: [
- {
- name: 'PersonGuard',
- path: '/resource-guard/person-guard',
- redirect: '/resource-guard/person-guard/person-files',
- meta: {
- title: '人资保障',
- sort: 1,
- alias: 'humanManage',
- },
- children: [
- {
- name: 'PersonFiles',
- path: '/resource-guard/person-guard/person-files',
- component: () =>
- import(
- '@/views/resource-guard/person-guard/person-files/index.vue'
- ),
- meta: {
- title: '人员档案管理',
- sort: 1,
- alias: 'userArchives',
- icon: 'service-crm',
- },
- },
- {
- name: 'PersonAllocate',
- path: '/resource-guard/person-guard/person-allocate',
- component: () =>
- import(
- '@/views/resource-guard/person-guard/person-allocate/index.vue'
- ),
- meta: {
- title: '人员调配',
- sort: 2,
- alias: 'userAllocate',
- icon: 'service-crm',
- },
- },
- ],
- },
- {
- name: 'DeviceGuard',
- path: '/resource-guard/device-guard',
- redirect: '/resource-guard/device-guard/registration-query',
- meta: {
- title: '设备保障',
- sort: 2,
- alias: 'deviceManage',
- },
- children: [
- {
- name: 'RegistrationQuery',
- path: '/resource-guard/device-guard/registration-query',
- component: () =>
- import(
- '@/views/resource-guard/device-guard/registration-query/index.vue'
- ),
- meta: {
- title: '出入库登记查询',
- sort: 1,
- alias: 'deviceInOut',
- icon: 'service-crm',
- },
- },
- {
- name: 'DeviceMonitor',
- path: '/resource-guard/device-guard/device-monitor',
- component: () =>
- import(
- '@/views/resource-guard/device-guard/device-monitor/index.vue'
- ),
- meta: {
- title: '设备资源监控',
- sort: 2,
- alias: 'deviceControl',
- icon: 'service-crm',
- },
- },
- ],
- },
- ],
- };
|