|
@@ -0,0 +1,84 @@
|
|
|
+export default {
|
|
|
+ name: 'ResourceGuard',
|
|
|
+ path: '/resource-guard',
|
|
|
+ redirect: '/resource-guard/person-guard',
|
|
|
+ meta: {
|
|
|
+ title: '资源保障',
|
|
|
+ sort: 3,
|
|
|
+ isModule: true,
|
|
|
+ },
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ name: 'PersonGuard',
|
|
|
+ path: '/resource-guard/person-guard',
|
|
|
+ redirect: '/resource-guard/person-guard/person-files',
|
|
|
+ meta: {
|
|
|
+ title: '人资保障',
|
|
|
+ sort: 1,
|
|
|
+ icon: 'user-talk',
|
|
|
+ },
|
|
|
+ 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,
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ name: 'PersonAllocate',
|
|
|
+ path: '/resource-guard/person-guard/person-allocate',
|
|
|
+ component: () =>
|
|
|
+ import(
|
|
|
+ '@/views/resource-guard/person-guard/person-allocate/index.vue'
|
|
|
+ ),
|
|
|
+ meta: {
|
|
|
+ title: '人员调配',
|
|
|
+ sort: 2,
|
|
|
+ },
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ },
|
|
|
+ {
|
|
|
+ name: 'DeviceGuard',
|
|
|
+ path: '/resource-guard/device-guard',
|
|
|
+ redirect: '/resource-guard/device-guard/registration-query',
|
|
|
+ meta: {
|
|
|
+ title: '设备保障',
|
|
|
+ sort: 2,
|
|
|
+ icon: 'user-talk',
|
|
|
+ },
|
|
|
+ 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,
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ name: 'DeviceMonitor',
|
|
|
+ path: '/resource-guard/device-guard/device-monitor',
|
|
|
+ component: () =>
|
|
|
+ import(
|
|
|
+ '@/views/resource-guard/device-guard/device-monitor/index.vue'
|
|
|
+ ),
|
|
|
+ meta: {
|
|
|
+ title: '设备资源监控',
|
|
|
+ sort: 2,
|
|
|
+ },
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ },
|
|
|
+ ],
|
|
|
+};
|