Browse Source

新分支

28169 1 year ago
parent
commit
b0dd265c45
1 changed files with 19 additions and 0 deletions
  1. 19 0
      src/router/modules/logIndex.js

+ 19 - 0
src/router/modules/logIndex.js View File

@@ -0,0 +1,19 @@
1
+import Layout from '@/views/layout/Layout'
2
+
3
+export default {
4
+ 
5
+  path: '/log_index',
6
+  component: Layout,
7
+  name:'log_index',
8
+  redirct: '/dialysis/dialysisLogIndex',
9
+  children: [{
10
+    path: '/dialysis/dialysisLogIndex',
11
+    component: () => import('@/xt_pages/log/index'),
12
+    name: '日志查询',
13
+    meta: {
14
+      title: '日志查询',
15
+      noCache: true
16
+    }
17
+  },]
18
+ 
19
+}