config.js 7.25 KB
Newer Older
1
import { PageTemplateView, TabsTemplateView } from '@/pages/frame/view/template';
2
import { RouterView } from '@/layout';
wb-ct393452's avatar
wb-ct393452 committed
3

水落(YangLei)'s avatar
水落(YangLei) committed
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
export const globalRoutes = [
    {
        path: '/login',
        name: '登录页',
        component: () => import('@/pages/frame/view/login'),
    },
    {
        path: '/403',
        name: '403',
        component: () => import('@/pages/frame/view/exception/403'),
    },
    {
        path: '/500',
        name: '500',
        component: () => import('@/pages/frame/view/exception/500'),
    },
];

const hasAuthorityRoutes = [
    {
        path: '/',
        component: TabsTemplateView,
        redirect: '/home',
        children: [
            {
                path: 'home',
                name: '首页',
                meta: { icon: 'home' },
                component: () => import('@/pages/home/index.vue'),
            },
            {
                path: 'dashboard',
                name: 'Dashboard',
                meta: {
                    icon: 'dashboard',
水落(YangLei)'s avatar
水落(YangLei) committed
39
                },
水落(YangLei)'s avatar
水落(YangLei) committed
40 41 42 43 44 45 46
                children: [
                    {
                        path: 'workbench',
                        name: '工作台',
                        meta: {
                            page: {
                                closable: false,
wb-ct393452's avatar
wb-ct393452 committed
47 48
                            },
                        },
水落(YangLei)'s avatar
水落(YangLei) committed
49 50 51 52 53 54 55 56 57
                        component: () => import('@/pages/dashboard/workbench'),
                    },
                    {
                        path: 'analysis',
                        name: '分析页',
                        component: () => import('@/pages/dashboard/analysis'),
                    },
                ],
            },
水落(YangLei)'s avatar
水落(YangLei) committed
58 59 60 61 62 63 64 65 66 67 68 69 70
            {
                path: 'ranger',
                name: '巡检管理',
                component: PageTemplateView,
                children: [
                    {
                        path: 'task',
                        name: '任务管理',
                        component: RouterView,
                        children: [
                            {
                                path: 'center',
                                name: '任务中心',
71 72 73 74 75 76 77 78 79 80 81 82 83
                                component: () => import('@/pages/xunjian/task_managment/center'),
                            },
                        ],
                    },
                    {
                        path: 'report',
                        name: '报表中心',
                        component: RouterView,
                        children: [
                            {
                                path: 'week',
                                name: '巡检周报',
                                component: () => import('@/pages/xunjian/report/weekly'),
水落(YangLei)'s avatar
水落(YangLei) committed
84 85 86 87 88
                            },
                        ],
                    },
                ],
            },
水落(YangLei)'s avatar
水落(YangLei) committed
89 90 91 92 93 94 95 96
            {
                path: 'system',
                name: '系统管理',
                component: PageTemplateView,
                children: [
                    {
                        path: 'menu',
                        name: '菜单管理',
水落(YangLei)'s avatar
水落(YangLei) committed
97
                        component: () => import('@/pages/system/menu'),
水落(YangLei)'s avatar
水落(YangLei) committed
98 99 100 101
                    },
                    {
                        path: 'organization',
                        name: '组织管理',
102
                        component: RouterView,
水落(YangLei)'s avatar
水落(YangLei) committed
103 104 105 106 107
                        children: [
                            {
                                path: 'job',
                                name: '岗位管理',
                                component: () =>
水落(YangLei)'s avatar
水落(YangLei) committed
108
                                    import('@/pages/system/organization/jobsmanagement/Jobs.vue'),
水落(YangLei)'s avatar
水落(YangLei) committed
109 110 111 112 113
                            },
                            {
                                path: 'user',
                                name: '用户管理',
                                component: () =>
水落(YangLei)'s avatar
水落(YangLei) committed
114
                                    import('@/pages/system/organization/usermanagement/User.vue'),
水落(YangLei)'s avatar
水落(YangLei) committed
115 116 117 118
                            },
                            {
                                path: 'org',
                                name: '机构管理',
水落(YangLei)'s avatar
水落(YangLei) committed
119
                                component: () => import('@/pages/system/organization/orgmanagement/Org.vue'),
水落(YangLei)'s avatar
水落(YangLei) committed
120 121 122 123 124 125
                            },
                        ],
                    },
                    {
                        path: 'role',
                        name: '角色管理',
水落(YangLei)'s avatar
水落(YangLei) committed
126
                        component: () => import('@/pages/system/role'),
水落(YangLei)'s avatar
水落(YangLei) committed
127 128 129 130
                    },
                    {
                        path: 'parameter',
                        name: '参数管理',
131
                        component: RouterView,
水落(YangLei)'s avatar
水落(YangLei) committed
132 133 134 135
                        children: [
                            {
                                path: 'business',
                                name: '业务参数',
水落(YangLei)'s avatar
水落(YangLei) committed
136
                                component: () => import('@/pages/system/parameter/business/index.vue'),
水落(YangLei)'s avatar
水落(YangLei) committed
137 138 139 140
                            },
                            {
                                path: 'operation',
                                name: '运维参数',
水落(YangLei)'s avatar
水落(YangLei) committed
141
                                component: () => import('@/pages/system/parameter/operation/index.vue'),
水落(YangLei)'s avatar
水落(YangLei) committed
142 143 144 145 146 147
                            },
                        ],
                    },
                    {
                        path: 'log',
                        name: '日志管理',
148
                        component: RouterView,
水落(YangLei)'s avatar
水落(YangLei) committed
149 150 151 152
                        children: [
                            {
                                path: 'login',
                                name: '登录日志',
水落(YangLei)'s avatar
水落(YangLei) committed
153
                                component: () => import('@/pages/system/log/login_log'),
水落(YangLei)'s avatar
水落(YangLei) committed
154 155 156 157
                            },
                            {
                                path: 'operation',
                                name: '操作日志',
水落(YangLei)'s avatar
水落(YangLei) committed
158
                                component: () => import('@/pages/system/log/operation/index.vue'),
水落(YangLei)'s avatar
水落(YangLei) committed
159 160 161 162 163
                            },
                        ],
                    },
                    {
                        path: 'task',
水落(YangLei)'s avatar
水落(YangLei) committed
164
                        name: '任务',
水落(YangLei)'s avatar
水落(YangLei) committed
165
                        component: () => import('@/pages/system/task/index.vue'),
水落(YangLei)'s avatar
水落(YangLei) committed
166 167 168
                    },
                ],
            },
陈浩玮's avatar
设备  
陈浩玮 committed
169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188
            {
                path: 'oceanus',
                name: '设备管理',
                meta: {
                    icon: 'control',
                },
                component: PageTemplateView,
                children: [
                    {
                        path: 'category',
                        name: '分类配置',
                        component: () => import('@/pages/oceanus/category/index.vue'),
                    },
                    {
                        path: 'equipment',
                        name: '设备台账',
                        component: () => import('@/pages/oceanus/equipment/index.vue'),
                    },
                ],
            },
水落(YangLei)'s avatar
水落(YangLei) committed
189 190 191 192 193 194 195 196 197 198 199 200 201 202
            {
                path: 'user',
                name: '个人中心',
                meta: { icon: 'user' },
                component: () => import('@/pages/user/index.vue'),
            },
        ],
    },
];

// 路由配置
const options = {
    mode: 'history',
    routes: [...globalRoutes, ...hasAuthorityRoutes],
wb-ct393452's avatar
wb-ct393452 committed
203 204 205
};

export default options;