Blame view

src/router/userRouter.js 758 Bytes
6c157c6e   wuxw   优化完成员工认证 员工小区功能
1
2
3
4
5
6
7
  export default [
      {
          path: '/pages/staff/staffCommunity',
          name: '/pages/staff/staffCommunity',
          component: () => import('@/views/staff/staffCommunityList.vue')
      },
      {
8592fee7   wuxw   开发排版功能
8
9
          path: '/pages/property/staffAppAuthManage',
          name: '/pages/property/staffAppAuthManage',
6c157c6e   wuxw   优化完成员工认证 员工小区功能
10
          component: () => import('@/views/staff/staffAppAuthManageList.vue')
8592fee7   wuxw   开发排版功能
11
12
13
14
15
16
17
18
19
20
      },
      {
          path: '/pages/property/dataPrivilegeManage',
          name: '/pages/property/dataPrivilegeManage',
          component: () => import('@/views/org/dataPrivilegeManageList.vue')
      },
      {
          path:'/pages/property/classesManage',
          name:'/pages/property/classesManage',
          component: () => import('@/views/org/classesManageList.vue')
6c157c6e   wuxw   优化完成员工认证 员工小区功能
21
22
          },
  ]