config.js 9.19 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
            {
                path: 'ranger',
                name: '巡检管理',
                component: PageTemplateView,
                children: [
63 64 65 66 67 68 69 70
                    {
                        path: 'basic',
                        name: '基础数据配置',
                        component: RouterView,
                        children: [
                            {
                                path: 'region',
                                name: '地区配置',
陈浩玮's avatar
陈浩玮 committed
71
                                component: () => import('@/pages/ranger/basic/region'),
72
                            },
陈浩玮's avatar
修改  
陈浩玮 committed
73 74
                            {
                                path: 'place',
水落(YangLei)'s avatar
水落(YangLei) committed
75
                                name: '地点配置',
陈浩玮's avatar
修改  
陈浩玮 committed
76 77
                                component: () => import('@/pages/ranger/basic/place'),
                            },
水落(YangLei)'s avatar
水落(YangLei) committed
78 79 80 81 82
                            {
                                path: 'unit',
                                name: '单元配置',
                                component: () => import('@/pages/ranger/basic/unit'),
                            },
陈浩玮's avatar
陈浩玮 committed
83 84 85 86
                            {
                                path: 'item',
                                name: '项目配置',
                                component: () => import('@/pages/ranger/basic/item'),
陈浩玮's avatar
调整  
陈浩玮 committed
87 88 89 90 91 92 93
                            },
                            {
                                path: 'line',
                                name: '线路配置',
                                component: () => import('@/pages/ranger/basic/line'),
                            },
                            {
水落(YangLei)'s avatar
水落(YangLei) committed
94 95 96
                                path: 'exemption',
                                name: '免检配置',
                                component: () => import('@/pages/ranger/basic/exemption'),
陈浩玮's avatar
陈浩玮 committed
97
                            },
98 99
                        ],
                    },
水落(YangLei)'s avatar
水落(YangLei) committed
100 101 102 103 104 105 106 107
                    {
                        path: 'task',
                        name: '任务管理',
                        component: RouterView,
                        children: [
                            {
                                path: 'center',
                                name: '任务中心',
陈浩玮's avatar
陈浩玮 committed
108
                                component: () => import('@/pages/ranger/task_managment/center'),
109 110 111 112 113 114 115 116 117 118 119
                            },
                        ],
                    },
                    {
                        path: 'report',
                        name: '报表中心',
                        component: RouterView,
                        children: [
                            {
                                path: 'week',
                                name: '巡检周报',
陈浩玮's avatar
陈浩玮 committed
120
                                component: () => import('@/pages/ranger/report/weekly'),
水落(YangLei)'s avatar
水落(YangLei) committed
121
                            },
122 123 124
                            {
                                path: 'month',
                                name: '巡检月报',
陈浩玮's avatar
陈浩玮 committed
125
                                component: () => import('@/pages/ranger/report/month'),
126
                            },
水落(YangLei)'s avatar
水落(YangLei) committed
127 128 129 130
                        ],
                    },
                ],
            },
水落(YangLei)'s avatar
水落(YangLei) committed
131 132 133 134 135 136 137 138
            {
                path: 'system',
                name: '系统管理',
                component: PageTemplateView,
                children: [
                    {
                        path: 'menu',
                        name: '菜单管理',
水落(YangLei)'s avatar
水落(YangLei) committed
139
                        component: () => import('@/pages/system/menu'),
水落(YangLei)'s avatar
水落(YangLei) committed
140 141 142 143
                    },
                    {
                        path: 'organization',
                        name: '组织管理',
144
                        component: RouterView,
水落(YangLei)'s avatar
水落(YangLei) committed
145 146 147 148 149
                        children: [
                            {
                                path: 'job',
                                name: '岗位管理',
                                component: () =>
水落(YangLei)'s avatar
水落(YangLei) committed
150
                                    import('@/pages/system/organization/jobsmanagement/Jobs.vue'),
水落(YangLei)'s avatar
水落(YangLei) committed
151 152 153 154 155
                            },
                            {
                                path: 'user',
                                name: '用户管理',
                                component: () =>
水落(YangLei)'s avatar
水落(YangLei) committed
156
                                    import('@/pages/system/organization/usermanagement/User.vue'),
水落(YangLei)'s avatar
水落(YangLei) committed
157 158 159 160
                            },
                            {
                                path: 'org',
                                name: '机构管理',
水落(YangLei)'s avatar
水落(YangLei) committed
161
                                component: () => import('@/pages/system/organization/orgmanagement/Org.vue'),
水落(YangLei)'s avatar
水落(YangLei) committed
162 163 164 165 166 167
                            },
                        ],
                    },
                    {
                        path: 'role',
                        name: '角色管理',
水落(YangLei)'s avatar
水落(YangLei) committed
168
                        component: () => import('@/pages/system/role'),
水落(YangLei)'s avatar
水落(YangLei) committed
169 170 171 172
                    },
                    {
                        path: 'parameter',
                        name: '参数管理',
173
                        component: RouterView,
水落(YangLei)'s avatar
水落(YangLei) committed
174 175 176 177
                        children: [
                            {
                                path: 'business',
                                name: '业务参数',
水落(YangLei)'s avatar
水落(YangLei) committed
178
                                component: () => import('@/pages/system/parameter/business/index.vue'),
水落(YangLei)'s avatar
水落(YangLei) committed
179 180 181 182
                            },
                            {
                                path: 'operation',
                                name: '运维参数',
水落(YangLei)'s avatar
水落(YangLei) committed
183
                                component: () => import('@/pages/system/parameter/operation/index.vue'),
水落(YangLei)'s avatar
水落(YangLei) committed
184 185 186 187 188 189
                            },
                        ],
                    },
                    {
                        path: 'log',
                        name: '日志管理',
190
                        component: RouterView,
水落(YangLei)'s avatar
水落(YangLei) committed
191 192 193 194
                        children: [
                            {
                                path: 'login',
                                name: '登录日志',
水落(YangLei)'s avatar
水落(YangLei) committed
195
                                component: () => import('@/pages/system/log/login_log'),
水落(YangLei)'s avatar
水落(YangLei) committed
196 197 198 199
                            },
                            {
                                path: 'operation',
                                name: '操作日志',
水落(YangLei)'s avatar
水落(YangLei) committed
200
                                component: () => import('@/pages/system/log/operation/index.vue'),
水落(YangLei)'s avatar
水落(YangLei) committed
201 202 203 204 205
                            },
                        ],
                    },
                    {
                        path: 'task',
水落(YangLei)'s avatar
水落(YangLei) committed
206
                        name: '任务',
水落(YangLei)'s avatar
水落(YangLei) committed
207
                        component: () => import('@/pages/system/task/index.vue'),
水落(YangLei)'s avatar
水落(YangLei) committed
208 209 210
                    },
                ],
            },
陈浩玮's avatar
设备  
陈浩玮 committed
211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230
            {
                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
231 232 233 234 235 236 237 238 239 240 241 242 243 244
            {
                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
245 246 247
};

export default options;