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
| import { type ModuleConfig } from '/@/cool';
|
| export default (): ModuleConfig => {
| return {
| label: '地图监控',
| description: '站点、分拣员、车辆实时位置与历史轨迹',
| order: 8,
| views: [
| {
| path: '/maps/site',
| name: 'maps-site',
| meta: { label: '站点地图' },
| component: () => import('./views/site.vue')
| },
| {
| path: '/maps/sorter',
| name: 'maps-sorter',
| meta: { label: '分拣员位置' },
| component: () => import('./views/sorter.vue')
| },
| {
| path: '/maps/vehicle',
| name: 'maps-vehicle',
| meta: { label: '车辆位置' },
| component: () => import('./views/vehicle.vue')
| }
| ]
| };
| };
|
|