-
线索地点:{{ `${clueInfo.lng}°E` }}, {{ `${clueInfo.lat}°N` }}
+
线索地点:{{ `${clueInfo.lng.toFixed(6)}°E` }}, {{ `${clueInfo.lat.toFixed(6)}°N` }}
diff --git a/src/packages/components/Zhigan/Zhigan/ZhiGan_DroneList/config.ts b/src/packages/components/Zhigan/Zhigan/ZhiGan_DroneList/config.ts
index 28006b8..603ecf8 100644
--- a/src/packages/components/Zhigan/Zhigan/ZhiGan_DroneList/config.ts
+++ b/src/packages/components/Zhigan/Zhigan/ZhiGan_DroneList/config.ts
@@ -24,18 +24,6 @@ export const option = {
export default class Config extends PublicConfigClass implements CreateComponentType {
public key = ZhiGan_DroneListConfig.key
public attr = { ...chartInitConfig, w: 506, h: 378, zIndex: -1 }
- public request = {
- ...requestSqlConfig,
- requestHttpType: "get",
- requestContentType: 0,
- requestUrl: VITE_GLOB_API_URL_SITUATION+"/api/Manage/GetUavPageList",
- requestParams: {
- Params: {
- page: "1",
- limit: "999"
- }
- }
- }
public filter = "return res.result.items;"
public chartConfig = cloneDeep(ZhiGan_DroneListConfig)
public option = cloneDeep(option)
diff --git a/src/packages/components/Zhigan/Zhigan/ZhiGan_DroneList/index.vue b/src/packages/components/Zhigan/Zhigan/ZhiGan_DroneList/index.vue
index 8af452c..65d5c94 100644
--- a/src/packages/components/Zhigan/Zhigan/ZhiGan_DroneList/index.vue
+++ b/src/packages/components/Zhigan/Zhigan/ZhiGan_DroneList/index.vue
@@ -67,7 +67,6 @@
if (!getClient() || !getClient().connected) {
// createConnection();
}
- // 获取eventBus传过来的值
GetUavPageList().then(resData => {
option.dataset = resData.items;
resData.items.forEach(item => {
@@ -99,9 +98,9 @@
}, 1000);
});
- // 数据callback处理(预览时触发)
- useChartDataFetch(props.chartConfig, useChartEditStore, (resData: any[]) => {
- });
+ // // 数据callback处理(预览时触发)
+ // useChartDataFetch(props.chartConfig, useChartEditStore, (resData: any[]) => {
+ // });
const flyControl = (item) => {
activeDrone.value = item.id
airPortStoreVal.setAirPort('sn', item.psn);
diff --git a/src/router/routes/modules/bigscreen.ts b/src/router/routes/modules/bigscreen.ts
index ff946bd..0bd584a 100644
--- a/src/router/routes/modules/bigscreen.ts
+++ b/src/router/routes/modules/bigscreen.ts
@@ -26,4 +26,4 @@ const bigscreen: AppRouteModule = {
],
};
-export default bigscreen;
+// export default bigscreen;
diff --git a/src/router/routes/modules/dashboard.ts b/src/router/routes/modules/dashboard.ts
index e28e9b3..de9e6e2 100644
--- a/src/router/routes/modules/dashboard.ts
+++ b/src/router/routes/modules/dashboard.ts
@@ -11,13 +11,14 @@ const dashboard: AppRouteModule = {
meta: {
orderNo: 10,
icon: 'ion:grid-outline',
- title: t('routes.dashboard.dashboard'),
+ title: '首页',
},
children: [
{
path: '/dashboard/analysis',
name: 'Analysis',
meta: {
+ icon: 'material-symbols:house-outline-rounded',
title: t('routes.dashboard.analysis'),
},
component: () => import('@/views/home/index.vue'),