This commit is contained in:
13713575202 2025-04-25 15:38:16 +08:00
commit bcbea002c7
2 changed files with 20 additions and 21 deletions

View File

@ -90,12 +90,12 @@ const inputSuppliesRoutes = [
component: () => import('@/views/inputSuppliesManage/knowledgeManage/index.vue'),
meta: { title: '知识库', icon: 'Document' },
},
{
path: '/sub-government-affairs-service/patrolCaseManage',
name: 'patrolCaseManage',
component: () => import('@/views/inputSuppliesManage/patrolCaseManage/index.vue'),
meta: { title: '巡查与案件管理', icon: 'Document' },
},
// {
// path: '/sub-government-affairs-service/patrolCaseManage',
// name: 'patrolCaseManage',
// component: () => import('@/views/inputSuppliesManage/patrolCaseManage/index.vue'),
// meta: { title: '巡查与案件管理', icon: 'Document' },
// },
],
},
];

View File

@ -24,24 +24,23 @@ import '@vuemap/vue-amap/dist/style.css';
// 初始化高德地图 API
initAMapApiLoader({
key: 'c843a50db7157faf295c6fa37c48719f',
securityJsCode: 'f09302d3ed65110614bdb26e44717ddf', // 新版key需要配合安全密钥使用
key: 'c843a50db7157faf295c6fa37c48719f',
securityJsCode: 'f09302d3ed65110614bdb26e44717ddf', // 新版key需要配合安全密钥使用
version: '2.0',
Loca: {
version: '2.0',
Loca: {
version: '2.0',
},
AMapUI: {
plugins: ['misc/PathSimplifier'],
},
plugins: ['AMap.MapType'],
},
AMapUI: {
lugins: ['misc/PathSimplifier'],
},
plugins: ['AMap.MapType'],
});
const app = createApp(App);
app.use(pinia).use(router).use(ElementPlus).use(Avue).use(VueAMap);
nextTick(() => {
registerGlobalComponents(app);
registerElIcons(app);
registerDirective(app);
registerMicroApps(app);
})
registerGlobalComponents(app);
registerElIcons(app);
registerDirective(app);
registerMicroApps(app);
});