hookehuyr

新增地图工具

...@@ -18,13 +18,13 @@ declare module '@vue/runtime-core' { ...@@ -18,13 +18,13 @@ declare module '@vue/runtime-core' {
18 RouterLink: typeof import('vue-router')['RouterLink'] 18 RouterLink: typeof import('vue-router')['RouterLink']
19 RouterView: typeof import('vue-router')['RouterView'] 19 RouterView: typeof import('vue-router')['RouterView']
20 SvgIcon: typeof import('./src/components/Floor/svgIcon.vue')['default'] 20 SvgIcon: typeof import('./src/components/Floor/svgIcon.vue')['default']
21 + VanButton: typeof import('vant/es')['Button']
21 VanCol: typeof import('vant/es')['Col'] 22 VanCol: typeof import('vant/es')['Col']
22 VanDialog: typeof import('vant/es')['Dialog'] 23 VanDialog: typeof import('vant/es')['Dialog']
23 VanField: typeof import('vant/es')['Field'] 24 VanField: typeof import('vant/es')['Field']
24 VanIcon: typeof import('vant/es')['Icon'] 25 VanIcon: typeof import('vant/es')['Icon']
25 VanImage: typeof import('vant/es')['Image'] 26 VanImage: typeof import('vant/es')['Image']
26 VanOverlay: typeof import('vant/es')['Overlay'] 27 VanOverlay: typeof import('vant/es')['Overlay']
27 - VanPopover: typeof import('vant/es')['Popover']
28 VanPopup: typeof import('vant/es')['Popup'] 28 VanPopup: typeof import('vant/es')['Popup']
29 VanRow: typeof import('vant/es')['Row'] 29 VanRow: typeof import('vant/es')['Row']
30 VRViewer: typeof import('./src/components/VRViewer/index.vue')['default'] 30 VRViewer: typeof import('./src/components/VRViewer/index.vue')['default']
......
1 /* 1 /*
2 * @Date: 2023-05-29 11:10:19 2 * @Date: 2023-05-29 11:10:19
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2023-12-29 16:44:30 4 + * @LastEditTime: 2024-03-21 17:19:14
5 * @FilePath: /map-demo/src/route.js 5 * @FilePath: /map-demo/src/route.js
6 * @Description: 文件描述 6 * @Description: 文件描述
7 */ 7 */
...@@ -34,4 +34,11 @@ export default [ ...@@ -34,4 +34,11 @@ export default [
34 title: '活动地图', 34 title: '活动地图',
35 }, 35 },
36 }, 36 },
37 + {
38 + path: '/tools',
39 + component: () => import('@/views/tools.vue'),
40 + meta: {
41 + title: '工具地图',
42 + },
43 + },
37 ]; 44 ];
......
This diff is collapsed. Click to expand it.