Browse Source

HIS 系统提交

XMLWAN 4 years ago
parent
commit
d98a7ad71b
1 changed files with 18 additions and 0 deletions
  1. 18 0
      src/router/modules/DepartManage.js

+ 18 - 0
src/router/modules/DepartManage.js View File

1
+import Layout from '@/views/layout/Layout'
2
+
3
+export default {
4
+    path: '/depart/manage',
5
+    component: Layout,
6
+    name:'DepartManage',
7
+    redirct: '/depart/manage',
8
+    children: [{
9
+        path: '/depart/manage',
10
+        component: () => import('@/xt_pages/role/departManage'),
11
+        name: 'DepartManage',
12
+        meta: {
13
+          title: 'DepartManage',
14
+          noCache: true,
15
+    
16
+        }
17
+    },]
18
+}