吉安感知网项目-前端
shuishen
2026-02-03 89380e6260a75d1d3b94de687ebcc2f50d50659d
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
/*
 * @Author       : yuan
 * @Date         : 2025-06-06 09:53:47
 * @LastEditors  : yuan
 * @LastEditTime : 2025-10-14 16:59:29
 * @FilePath     : \src\router\page\index.js
 * @Description  :
 * Copyright 2025 OBKoro1, All Rights Reserved.
 * 2025-06-06 09:53:47
 */
import Store from '@/store/'
 
export default [
    {
        path: '/login',
        name: '登录页',
        component: () => import('@/page/login/index.vue'),
        meta: {
            keepAlive: true,
            isTab: false,
            isAuth: false,
        },
    },
    {
        path: '/webViewWrapper',
        component: () => import('@/appLayout/webViewWrapper/index.vue'),
        meta: {
            keepAlive: true,
            isTab: false,
            isAuth: false,
        },
 
        children: [
            {
                path: 'DroneConsole',
                name: 'DroneConsole',
                component: () => import('@/appPages/inspectionTask/DroneConsole/DroneConsole.vue'),
                meta: { title: '任务详情'},
            },
            {
                path: 'TaskInProgress',
                name: 'TaskInProgress',
                component: () => import('@/appPages/inspectionTask/TaskInProgress/TaskInProgress.vue'),
                meta: { title: '任务详情'},
            },
            {
                path: 'defaultMap',
                name: 'app地图',
                component: () => import('@/appPages/Map/index.vue'),
                meta: {
                    keepAlive: true,
                    isTab: false,
                    isAuth: false,
                },
            },
            {
                path: 'airMap',
                name: '地图',
                component: () => import('@/appPages/AirMap/index.vue'),
                meta: { title: '地图'},
            },
            {
                path: 'QrCodeScanner',
                name: '扫码',
                component: () => import('@/appPages/QrCodeScanner/index.vue'),
                meta: { title: '扫码'},
            },
 
            {
                path: 'work',
                name: '事件工单',
                component: () => import('@/appPages/work/index.vue'),
                meta: { title: '事件工单'},
            },
            {
                path: 'workDetail',
                name: '工单详情',
                component: () => import('@/appPages/work/workDetail/index.vue'),
                meta: { title: '工单详情'},
            },
            {
                path: 'mapWork',
                name: '地图展示',
                component: () => import('@/appPages/work/workDetail/mapWork/index.vue'),
                meta: { title: '地图'},
            },
            {
                path: 'addWork',
                name: '新建工单',
                component: () => import('@/appPages/work/workDetail/addWork/index.vue'),
                meta: { title: '新建工单'},
            },
            {
                path: 'photoMagnify',
                name: '图片放大',
                component: () => import('@/appPages/work/workDetail/photoMagnify/index.vue'),
                meta: { title: '图片预览'},
            },
            {
                path: 'inspectionTask',
                name: '巡检列表',
                component: () => import('@/appPages/inspectionTask/index.vue'),
                meta: { title: '任务详情'},
            },
            {
                path: 'addTask',
                name: '新建任务',
                component: () => import('@/appPages/inspectionTask/addTask/index.vue'),
                meta: { title: '新建任务'},
            },
            {
                path: 'execution',
                name: '任务详情',
                component: () => import('@/appPages/inspectionTask/execution/index.vue'),
                meta: { title: '任务详情'},
            },
            {
                path: 'voiceCallDetail',
                name: '语音通话',
                component: () => import('@/appPages/voiceCallDetail/index.vue'),
                meta: {
                    keepAlive: true,
                    isTab: false,
                    isAuth: false,
                },
            },
        ],
    },
 
    {
        path: '/ssh',
        name: '免登录页',
        component: () => import('@/page/login/noLogin.vue'),
        meta: {
            keepAlive: true,
            isTab: false,
            isAuth: false,
        },
    },
 
    {
        path: '/oauth/redirect/:source',
        name: '第三方登录',
        component: () => import('@/page/login/index.vue'),
        meta: {
            keepAlive: true,
            isTab: false,
            isAuth: false,
        },
    },
    {
        path: '/lock',
        name: '锁屏页',
        component: () => import('@/page/lock/index.vue'),
        meta: {
            keepAlive: true,
            isTab: false,
            isAuth: false,
        },
    },
    {
        path: '/404',
        component: () => import(/* webpackChunkName: "page" */ '@/components/error-page/404.vue'),
        name: '404',
        meta: {
            keepAlive: true,
            isTab: false,
            isAuth: false,
        },
    },
    {
        path: '/403',
        component: () => import(/* webpackChunkName: "page" */ '@/components/error-page/403.vue'),
        name: '403',
        meta: {
            keepAlive: true,
            isTab: false,
            isAuth: false,
        },
    },
    {
        path: '/500',
        component: () => import(/* webpackChunkName: "page" */ '@/components/error-page/500.vue'),
        name: '500',
        meta: {
            keepAlive: true,
            isTab: false,
            isAuth: false,
        },
    },
    {
        path: '/',
        name: '主页',
        redirect: '/index',
    },
]