config.js 8.92 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

陈浩玮's avatar
陈浩玮 committed
85 86 87
                                path: 'item',
                                name: '项目配置',
                                component: () => import('@/pages/ranger/basic/item'),
88
                            },{
水落(YangLei)'s avatar
水落(YangLei) committed
89 90 91
                                path: 'exemption',
                                name: '免检配置',
                                component: () => import('@/pages/ranger/basic/exemption'),
92

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

export default options;