index.js 13.1 KB
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 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531
import Vue from 'vue'
import Router from 'vue-router'

Vue.use(Router)

/* Layout */
import Layout from '@/layout'

/**
 * Note: 路由配置项
 *
 * hidden: true                     // 当设置 true 的时候该路由不会再侧边栏出现 如401,login等页面,或者如一些编辑页面/edit/1
 * alwaysShow: true                 // 当你一个路由下面的 children 声明的路由大于1个时,自动会变成嵌套的模式--如组件页面
 *                                  // 只有一个时,会将那个子路由当做根路由显示在侧边栏--如引导页面
 *                                  // 若你想不管路由下面的 children 声明的个数都显示你的根路由
 *                                  // 你可以设置 alwaysShow: true,这样它就会忽略之前定义的规则,一直显示根路由
 * redirect: noRedirect             // 当设置 noRedirect 的时候该路由在面包屑导航中不可被点击
 * name:'router-name'               // 设定路由的名字,一定要填写不然使用<keep-alive>时会出现各种问题
 * query: '{"id": 1, "name": "ry"}' // 访问路由的默认传递参数
 * roles: ['admin', 'common']       // 访问路由的角色权限
 * permissions: ['a:a:a', 'b:b:b']  // 访问路由的菜单权限
 * meta : {
    noCache: true                   // 如果设置为true,则不会被 <keep-alive> 缓存(默认 false)
    title: 'title'                  // 设置该路由在侧边栏和面包屑中展示的名字
    icon: 'svg-name'                // 设置该路由的图标,对应路径src/assets/icons/svg
    breadcrumb: false               // 如果设置为false,则不会在breadcrumb面包屑中显示
    activeMenu: '/system/user'      // 当路由设置了该属性,则会高亮相对应的侧边栏。
  }
 */

// 公共路由
export const constantRoutes = [
  {
    path: '/redirect',
    component: Layout,
    hidden: true,
    children: [
      {
        path: '/redirect/:path(.*)',
        component: () => import('@/views/redirect')
      }
    ]
  },
  {
    path: '/login',
    component: () => import('@/views/login'),
    hidden: true
  },
  {
    path: '/register',
    component: () => import('@/views/register'),
    hidden: true
  },
  {
    path: '/404',
    component: () => import('@/views/error/404'),
    hidden: true
  },
  {
    path: '/401',
    component: () => import('@/views/error/401'),
    hidden: true
  },
  {
    path: '',
    component: Layout,
    redirect: 'index',
    children: [
      {
        path: 'index',
        component: () => import('@/views/index'),
        name: 'Index',
        meta: { title: '首页', icon: 'dashboard', affix: true }
      }
    ]
  },
  {
    path: '/user',
    component: Layout,
    hidden: true,
    redirect: 'noredirect',
    children: [
      {
        path: 'profile',
        component: () => import('@/views/system/user/profile/index'),
        name: 'Profile',
        meta: { title: '个人中心', icon: 'user' }
      }
    ]
  },
  {
    path: '/resource/person/index',
    component: Layout,
    hidden: true,
    permissions: ['resource:person:list'],
    children: [
      {
        path: 'index',
        component: () => import('@/views/resource/person/index'),
        name: 'Person',
        meta: {
          title: '第三方人员管理',
          icon: 'peoples',
          permissions: ['resource:person:list']
        }
      }
    ]
  }
]

// 动态路由,基于用户权限动态去加载
export const dynamicRoutes = [
  {
    path: '/system/user-auth',
    component: Layout,
    hidden: true,
    permissions: ['system:user:edit'],
    children: [
      {
        path: 'role/:userId(\\d+)',
        component: () => import('@/views/system/user/authRole'),
        name: 'AuthRole',
        meta: { title: '分配角色', activeMenu: '/system/user' }
      }
    ]
  },
  {
    path: '/system/role-auth',
    component: Layout,
    hidden: true,
    permissions: ['system:role:edit'],
    children: [
      {
        path: 'user/:roleId(\\d+)',
        component: () => import('@/views/system/role/authUser'),
        name: 'AuthUser',
        meta: { title: '分配用户', activeMenu: '/system/role' }
      }
    ]
  },
  // 基础资源管理--单位分配用户
  {
    path: '/resource/companyBind',
    component: Layout,
    hidden: true,
    permissions: ['resource:company:edit'],
    children: [
      {
        path: 'bind/:id',
        component: () => import('@/views/resource/company/companyBind'),
        name: 'CompanyBind',
        meta: { title: '分配用户', activeMenu: '/resource/company' }
      }
    ]
  },
  // 基础资源管理--合同分配用户
  {
    path: '/resource/contractBind',
    component: Layout,
    hidden: true,
    permissions: ['resource:contract:edit'],
    children: [
      {
        path: 'bind/:id',
        component: () => import('@/views/resource/contract/contractBind'),
        name: 'ContractBind',
        meta: { title: '分配用户', activeMenu: '/resource/contract' }
      }
    ]
  },
  // 基础资源管理--办公地点分配用户
  {
    path: '/resource/officeBind',
    component: Layout,
    hidden: true,
    permissions: ['resource:office:edit'],
    children: [
      {
        path: 'bind/:id',
        component: () => import('@/views/resource/office/officeBind'),
        name: 'OfficeBind',
        meta: { title: '分配用户', activeMenu: '/resource/office' }
      }
    ]
  },
  // 基础资源管理--终端分配用户
  {
    path: '/resource/terminalBind',
    component: Layout,
    hidden: true,
    permissions: ['resource:terminal:edit'],
    children: [
      {
        path: 'bind/:id',
        component: () => import('@/views/resource/terminal/terminalBind'),
        name: 'TerminalBind',
        meta: { title: '分配用户', activeMenu: '/resource/terminal' }
      }
    ]
  },
  {
    path: '/system/dict-data',
    component: Layout,
    hidden: true,
    permissions: ['system:dict:list'],
    children: [
      {
        path: 'index/:dictId(\\d+)',
        component: () => import('@/views/system/dict/data'),
        name: 'Data',
        meta: { title: '字典数据', activeMenu: '/system/dict' }
      }
    ]
  },
  {
    path: '/monitor/job-log',
    component: Layout,
    hidden: true,
    permissions: ['monitor:job:list'],
    children: [
      {
        path: 'index/:jobId(\\d+)',
        component: () => import('@/views/monitor/job/log'),
        name: 'JobLog',
        meta: { title: '调度日志', activeMenu: '/monitor/job' }
      }
    ]
  },
  {
    path: '/tool/gen-edit',
    component: Layout,
    hidden: true,
    permissions: ['tool:gen:edit'],
    children: [
      {
        path: 'index/:tableId(\\d+)',
        component: () => import('@/views/tool/gen/editTable'),
        name: 'GenEdit',
        meta: { title: '修改生成配置', activeMenu: '/tool/gen' }
      }
    ]
  },
  {
    path: '/MyTodoTask',
    component: Layout,
    hidden: true,
    redirect: 'noredirect',
    children: [
      {
        path: 'profile',
        component: () => import('@/views/workflow/myTodoTask'),
        name: 'Profile',
        meta: { title: '我的待办', icon: 'user' }
      }
    ]
  },
  {
    path: '/NewTask',
    component: Layout,
    hidden: true,
    redirect: 'noredirect',
    children: [
      {
        path: 'profile',
        component: () => import('@/views/workflow/newTask'),
        name: 'Profile',
        meta: { title: '新建工单', icon: 'user' }
      }
    ]
  },
  {
    path: '/MyOrder',
    component: Layout,
    hidden: true,
    redirect: 'noredirect',
    children: [
      {
        path: 'profile',
        component: () => import('@/views/workflow/myOrder'),
        name: 'Profile',
        meta: { title: '我的工单', icon: 'user' }
      }
    ]
  },
  {
    path: '/MyDraftList',
    component: Layout,
    hidden: true,
    redirect: 'noredirect',
    children: [
      {
        path: 'profile',
        component: () => import('@/views/workflow/myDraftList'),
        name: 'Profile',
        meta: { title: '我的草稿', icon: 'user' }
      }
    ]
  },

  {
    path: '/actionList',
    component: Layout,
    hidden: true,
    redirect: 'noredirect',
    children: [
      {
        path: 'profile',
        component: () => import('@/views/workflow/actionList'),
        name: 'Profile',
        meta: { title: '动作配置', icon: 'user' }
      }
    ]
  },
  {
    path: '/colligationQuery',
    component: Layout,
    hidden: true,
    redirect: 'noredirect',
    children: [
      {
        path: 'profile',
        component: () => import('@/views/workflow/colligationQuery'),
        name: 'Profile',
        meta: { title: '检索工单', icon: 'user' }
      }
    ]
  },
  {
    path: '/commMsgFormConf',
    component: Layout,
    hidden: true,
    redirect: 'noredirect',
    children: [
      {
        path: 'profile',
        component: () => import('@/views/workflow/commMsgFormConf'),
        name: 'Profile',
        meta: { title: '通知格式', icon: 'user' }
      }
    ]
  },
  {
    path: '/commPersMsgRecConf',
    component: Layout,
    hidden: true,
    redirect: 'noredirect',
    children: [
      {
        path: 'profile',
        component: () => import('@/views/workflow/commPersMsgRecConf'),
        name: 'Profile',
        meta: { title: '通知配置', icon: 'user' }
      }
    ]
  },
  {
    path: '/deptLeader',
    component: Layout,
    hidden: true,
    redirect: 'noredirect',
    children: [
      {
        path: 'profile',
        component: () => import('@/views/workflow/deptLeader'),
        name: 'Profile',
        meta: { title: '部门领导', icon: 'user' }
      }
    ]
  },
  {
    path: '/jsFuncList',
    component: Layout,
    hidden: true,
    redirect: 'noredirect',
    children: [
      {
        path: 'profile',
        component: () => import('@/views/workflow/jsFuncList'),
        name: 'Profile',
        meta: { title: 'JS管理', icon: 'user' }
      }
    ]
  },
  {
    path: '/processConfig',
    component: Layout,
    hidden: true,
    redirect: 'noredirect',
    children: [
      {
        path: 'profile',
        component: () => import('@/views/workflow/processConfig'),
        name: 'Profile',
        meta: { title: '展示配置', icon: 'user' }
      }
    ]
  },
  {
    path: '/processInfo',
    component: Layout,
    hidden: true,
    redirect: 'noredirect',
    children: [
      {
        path: 'profile',
        component: () => import('@/views/workflow/processInfo'),
        name: 'Profile',
        meta: { title: '流程目录', icon: 'user' }
      }
    ]
  },
  {
    path: '/processRelate',
    component: Layout,
    hidden: true,
    redirect: 'noredirect',
    children: [
      {
        path: 'profile',
        component: () => import('@/views/workflow/processRelate'),
        name: 'Profile',
        meta: { title: '跟踪配置', icon: 'user' }
      }
    ]
  },
  {
    path: '/processTypeList',
    component: Layout,
    hidden: true,
    redirect: 'noredirect',
    children: [
      {
        path: 'profile',
        component: () => import('@/views/workflow/processTypeList'),
        name: 'Profile',
        meta: { title: '分类管理', icon: 'user' }
      }
    ]
  },
  {
    path: '/roleProcConf',
    component: Layout,
    hidden: true,
    redirect: 'noredirect',
    children: [
      {
        path: 'profile',
        component: () => import('@/views/workflow/roleProcConf'),
        name: 'Profile',
        meta: { title: '权限控制', icon: 'user' }
      }
    ]
  },
  {
    path: '/stopTask',
    component: Layout,
    hidden: true,
    redirect: 'noredirect',
    children: [
      {
        path: 'profile',
        component: () => import('@/views/workflow/stopTask'),
        name: 'Profile',
        meta: { title: '终止工单', icon: 'user' }
      }
    ]
  },
  {
    path: '/sWfFormTransfer',
    component: Layout,
    hidden: true,
    redirect: 'noredirect',
    children: [
      {
        path: 'profile',
        component: () => import('@/views/workflow/sWfFormTransfer'),
        name: 'Profile',
        meta: { title: '转义配置', icon: 'user' }
      }
    ]
  },
  {
    path: '/workGroup',
    component: Layout,
    hidden: true,
    redirect: 'noredirect',
    children: [
      {
        path: 'profile',
        component: () => import('@/views/workflow/workGroup'),
        name: 'Profile',
        meta: { title: '工作组', icon: 'user' }
      }
    ]
  },



  {
    path: '/voffice',
    component: Layout,
    hidden: true,
    redirect: 'noredirect',
    children: [
      {
        path: 'profile',
        component: () => import('@/views/voffice/index'),
        name: 'Voffice',
        meta: { title: '场地信息', icon: '' }
      }
    ]
  }
]

// 防止连续点击多次路由报错
let routerPush = Router.prototype.push;
let routerReplace = Router.prototype.replace;
// push
Router.prototype.push = function push(location) {
  return routerPush.call(this, location).catch(err => err)
}
// replace
Router.prototype.replace = function push(location) {
  return routerReplace.call(this, location).catch(err => err)
}

export default new Router({
  mode: 'history', // 去掉url中的#
  scrollBehavior: () => ({ y: 0 }),
  routes: constantRoutes
})