Переглянути джерело

Merge branch 'feature-1.0.0' of http://101.43.248.184:3000/odc-front-end/web-quorum-pc into feature-1.0.0

WORK\arche 3 місяців тому
батько
коміт
9918686485

+ 16 - 0
src/menu/modules/action-items.ts

@@ -0,0 +1,16 @@
+const actionItems: Menu.MenuOptions = {
+  component: '/action-items/index',
+  name: 'actionItems',
+  path: '/action-items',
+  meta: {
+    icon: '',
+    isAffix: true,
+    isFull: false,
+    isHide: false,
+    isKeepAlive: true,
+    isLink: '',
+    title: 'Action Items',
+    index: 0
+  }
+};
+export default actionItems;

+ 0 - 32
src/menu/modules/actionItems.ts

@@ -1,32 +0,0 @@
-const home: Menu.MenuOptions = {
-  component: '/actionItems',
-  name: 'actionItems',
-  path: '/action-items',
-  meta: {
-    icon: '',
-    isAffix: true,
-    isFull: false,
-    isHide: false,
-    isKeepAlive: true,
-    isLink: '',
-    title: 'Action Items',
-    index: 0
-  },
-  children: [
-    {
-      component: '/actionItems/index',
-      name: 'actionItemsIndex',
-      path: '/action-items/index',
-      meta: {
-        icon: '',
-        isAffix: false,
-        isFull: false,
-        isHide: false,
-        isKeepAlive: true,
-        isLink: '',
-        title: 'Action Items'
-      }
-    }
-  ]
-};
-export default home;

+ 6 - 0
src/pages/action-items/index.vue

@@ -0,0 +1,6 @@
+<template>
+  <div>111</div>
+</template>
+<script lang="ts" setup>
+// 逻辑代码
+</script>