index.js 1.85 KB
Newer Older
fukai committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
const userManage = () => import('@/page/iscAdmin/iscOrganization/userManage.vue')
const userAdd = () => import('@/page/iscAdmin/iscOrganization/usersAdd.vue')
const userInfo = () => import('@/page/iscAdmin/iscOrganization/usersInfo.vue')
const userBatch = () => import('@/page/iscAdmin/iscOrganization/userBatchManage.vue')
const orgManage = () => import('@/page/iscAdmin/iscOrganization/orgManage.vue')
const departManage = () => import('@/page/iscAdmin/iscOrganization/departManage.vue')
const postManage = () => import('@/page/iscAdmin/iscOrganization/postManage.vue')
export default [
  {
    path: 'userManage',
    component: userManage,
    name: 'userManage',
    meta: {
      auth: 'true',
      title: '用户查询',
      isLeaf: 'true'
    },
    children: [
      {
        path: 'userAdd',
        component: userAdd,
        name: 'userAdd',
        meta: {
          auth: 'true',
          title: '用户增加/修改',
          isLeaf: 'true'
        }
      },
      {
        path: 'userInfo',
        component: userInfo,
        name: 'userInfo',
        meta: {
          auth: 'true',
          title: '用户查看',
          isLeaf: 'true'
        }
      }
    ],
  },
  {
    path: 'userBatch',
    component: userBatch,
    name: 'userBatch',
    meta: {
      auth: 'true',
      title: '用户批处理',
      isLeaf: 'true'
    }
  },
  {
    path: 'orgManage',
    component: orgManage,
    name: 'orgManage',
    meta: {
      auth: 'true',
      title: '机构管理',
      isLeaf: 'true'
    }
  },
  {
    path: 'departManage',
    component: departManage,
    name: 'deartManage',
    meta: {
      auth: 'true',
      title: '部门管理',
      isLeaf: 'true'
    }
  },
  {
    path: 'postManage',
    component: postManage,
    name: 'postManage',
    meta: {
      auth: 'true',
      title: '岗位管理',
      isLeaf: 'true'
    }
  }
]