ZaiZai 1 year ago
parent
commit
0555a80809

+ 63 - 0
src/router/modules/base.js

@@ -54,6 +54,69 @@ export default [
             },
         ],
     },
+    {
+        path: '/desk',
+        name: 'desk',
+        redirect: '/desk/wbs',
+        meta: { title: '系统配置' },
+        component: Layout,
+        children: [
+            {
+                path: '/desk/wbs',
+                name: 'wbsinfo',
+                meta: { title: 'WBS动态库' },
+                component: () => import('~src/views/desk/wbs.vue'),
+            },
+            {
+                path: '/desk/meta-data',
+                name: 'metadata',
+                meta: { title: '元数据管理' },
+                component: () => import('~src/views/desk/meta.vue'),
+            },
+            {
+                path: '/desk/image',
+                name: 'imageconfig',
+                meta: { title: '影像分类配置' },
+                component: () => import('~src/views/desk/image.vue'),
+            },
+            {
+                path: '/desk/archive',
+                name: 'archivetree',
+                meta: { title: '归档树管理' },
+                component: () => import('~src/views/desk/archive.vue'),
+            },
+            {
+                path: '/desk/test-classify',
+                name: 'testclassify',
+                meta: { title: '试验分类配置' },
+                component: () => import('~src/views/desk/test-classify.vue'),
+            },
+            {
+                path: '/desk/test-collect',
+                name: 'testcollect',
+                meta: { title: '试验汇总分类' },
+                component: () => import('~src/views/desk/test-collect.vue'),
+            },
+            {
+                path: '/desk/test-param',
+                name: 'parameter',
+                meta: { title: '试验参数配置' },
+                component: () => import('~src/views/desk/test-param.vue'),
+            },
+            {
+                path: '/desk/system-unit',
+                name: 'systemUnit',
+                meta: { title: '系统计量单元' },
+                component: () => import('~src/views/desk/system-unit.vue'),
+            },
+            {
+                path: '/desk/interim-pay',
+                name: 'interimPay',
+                meta: { title: '系统中期支付项' },
+                component: () => import('~src/views/desk/interim-pay.vue'),
+            },
+        ],
+    },
     {
         path: '/excel',
         name: 'excel',

+ 10 - 0
src/views/desk/archive.vue

@@ -0,0 +1,10 @@
+<template>
+</template>
+
+<script setup>
+
+</script>
+
+<style scoped lang="scss">
+
+</style>

+ 10 - 0
src/views/desk/image.vue

@@ -0,0 +1,10 @@
+<template>
+</template>
+
+<script setup>
+
+</script>
+
+<style scoped lang="scss">
+
+</style>

+ 10 - 0
src/views/desk/interim-pay.vue

@@ -0,0 +1,10 @@
+<template>
+</template>
+
+<script setup>
+
+</script>
+
+<style scoped lang="scss">
+
+</style>

+ 10 - 0
src/views/desk/meta.vue

@@ -0,0 +1,10 @@
+<template>
+</template>
+
+<script setup>
+
+</script>
+
+<style scoped lang="scss">
+
+</style>

+ 10 - 0
src/views/desk/system-unit.vue

@@ -0,0 +1,10 @@
+<template>
+</template>
+
+<script setup>
+
+</script>
+
+<style scoped lang="scss">
+
+</style>

+ 10 - 0
src/views/desk/test-classify.vue

@@ -0,0 +1,10 @@
+<template>
+</template>
+
+<script setup>
+
+</script>
+
+<style scoped lang="scss">
+
+</style>

+ 10 - 0
src/views/desk/test-collect.vue

@@ -0,0 +1,10 @@
+<template>
+</template>
+
+<script setup>
+
+</script>
+
+<style scoped lang="scss">
+
+</style>

+ 10 - 0
src/views/desk/test-param.vue

@@ -0,0 +1,10 @@
+<template>
+</template>
+
+<script setup>
+
+</script>
+
+<style scoped lang="scss">
+
+</style>

+ 10 - 0
src/views/desk/wbs.vue

@@ -0,0 +1,10 @@
+<template>
+</template>
+
+<script setup>
+
+</script>
+
+<style scoped lang="scss">
+
+</style>