Browse Source

修改职员路由

zhaoke 3 years ago
parent
commit
9af127cbfa
1 changed files with 4 additions and 4 deletions
  1. 4 4
      src/router/routes/routes-file-two.js

+ 4 - 4
src/router/routes/routes-file-two.js

@@ -1,7 +1,7 @@
 /*
  * @Author: zk
  * @Date: 2022-01-06 13:45:09
- * @LastEditTime: 2022-02-28 21:33:09
+ * @LastEditTime: 2022-03-02 10:05:16
  * @LastEditors: Please set LastEditors
  * @Description: 组织管理路由
  * @FilePath: \Foshan4A3.0\src\router\routes\routes-file-two.js
@@ -43,18 +43,18 @@ const organizationRoutes = {
 }
 
 const staffRoutes = {
-  path: 'staff',
+  path: '/staff',
   component: Layout,
   meta: { roles: ['officer_menu'], title: '职员管理' },
   children: [
     {
-      path: 'staff',
+      path: '/staff',
       name: 'Staff',
       component: () => import('@/views/staffManagement/index'),
       meta: { title: '职员管理' },
       children: [
         {
-          path: 'staff',
+          path: '/staff',
           name: 'StaffHome',
           component: () => import('@/views/staffManagement/compontents/staffHome'),
           meta: { title: '职员管理', roles: ['officer_page'], icon: 'authority', imgstyle: 'ic_home_nav_defaul.png', imgstyleup: 'ic_home_nav_check.png' }