1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- import Vue from 'vue'
- import VueRouter from 'vue-router'
- Vue.use(VueRouter)
- const routes = [
- //洗选中心领导信箱首页
- {
- path:'/xixuanzhongxin/leader-mailbox/leader-home',
- name:'leader-home',
- component:()=>import('../views/xixuanzhongxin/leader-mailbox/leader-home.vue'),
- },
- //洗选中心领导信箱提交
- {
- path:'/xixuanzhongxin/leader-mailbox/leader-mailbox',
- name:'leader-mailbox',
- component:()=>import('../views/xixuanzhongxin/leader-mailbox/leader-mailbox.vue'),
- },
- //洗选中心领导信箱提交成功
- {
- path:'/xixuanzhongxin/leader-mailbox/leader-success',
- name:'leader-success',
- component:()=>import('../views/xixuanzhongxin/leader-mailbox/leader-success.vue'),
- },
- //洗选中心领导信箱列表
- {
- path:'/xixuanzhongxin/leader-mailbox/leader-mailbox-list',
- name:'leader-mailbox-list',
- component:()=>import('../views/xixuanzhongxin/leader-mailbox/leader-mailbox-list.vue')
- },
- //洗选中心领导信箱列表2
- {
- path:'/xixuanzhongxin/leader-mailbox/leader-mailbox-list2',
- name:'leader-mailbox-list2',
- component:()=>import('../views/xixuanzhongxin/leader-mailbox/leader-mailbox-list2.vue')
- },
- //洗选中心领导信箱领导回复
- {
- path:'/xixuanzhongxin/leader-mailbox/leader-mailbox-reply',
- name:'leader-mailbox-reply',
- component:()=>import('../views/xixuanzhongxin/leader-mailbox/leader-mailbox-reply.vue')
- },
- //枣泉矿井水系统
- {
- path:'/zaoquan/kuangjingshui/kuangjingshui',
- name:'kuangjingshui',
- component:()=>import('../views/zaoquan/kuangjingshui/kuangjingshui.vue'),
- meta:{
- title:'矿井水处理'
- }
- },
- //宁东运营部拼图游戏
- {
- path:"/ningdongyunying/puzzle/puzzle",
- name:'puzzle',
- component:()=>import('../views/ningdongyunying/puzzle/puzzle.vue'),
- meta:{
- title:'拼图游戏'
- }
- },
- //宁东运营部拼图游戏详情
- {
- path:"/ningdongyunying/puzzle/puzzle-infos",
- name:'puzzle-infos',
- component:()=>import('../views/ningdongyunying/puzzle/puzzle-infos.vue'),
- meta:{
- title:'拼图游戏'
- }
- },
- //路由重定向
- {
- path:'/',
- redirect:{"name":"puzzle"}
- }
- ]
- const router = new VueRouter({
- routes
- })
- export default router
|