From 3623a47546714572de439390f9adb07e326aa432 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E5=85=B4=E5=87=AF?= <2448379534@qq.com> Date: Tue, 14 Jul 2026 16:08:10 +0800 Subject: [PATCH] =?UTF-8?q?BUG=E6=9B=B4=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/api/home/index.ts | 10 + .../system/map/TiltPhotoManagement/index.ts | 8 +- frontend/src/components/BasicSearch/index.vue | 2 +- frontend/src/components/BasicTable/index.vue | 1 + .../carouselIntroduce/ArtsDetail.vue | 38 +- frontend/src/components/gis/map.ol.ts | 8 + .../components/gis/ol/point-layer-manager.ts | 2 +- .../components/gis/ol/region-mask-manager.ts | 2 +- .../EnvironmentalQualityTwoLayers.vue | 24 +- .../TwoLayers/HJMZDTwoLays.vue | 29 +- ...eixingzuchengjijieruqingkuangTwoLayers.vue | 3 + .../huanbaozidongjianceEJ/index.vue | 15 +- .../src/modules/liuyu/ai/spdzwaijc/AISPTK.vue | 2 +- .../ModeGaoJing.vue | 28 +- .../shuizhijiancegaojing/ModeGaoJing.vue | 21 +- .../shuizhijianceshuju.vue | 450 +++++----- .../modules/lushengshengtaijiance/index.vue | 2 +- frontend/src/modules/qixidijchuXx/index.vue | 4 +- .../modules/qixidiliuliangbianhua/index.vue | 5 +- .../modules/qixidishuiwenbianhua/index.vue | 7 +- .../TwoLayer/FenBuQingKuangTwoLayer.vue | 4 +- .../ShengTaiLiuLiangDaBQKTwoLayer.vue | 2 +- .../TwoLayer/HuanJingSJJRQK.vue | 23 +- .../TwoLayer/ShuiDianKaiFQKTwoLayer.vue | 28 +- .../shuiwenjiancegongzuoEJ.vue | 2 +- .../yanchengshuiwenChangeMod/index.vue | 30 +- frontend/src/store/modules/jidiSelectEvent.ts | 4 +- frontend/src/store/modules/shuJuTianBao.ts | 2 +- frontend/src/utils/popupHtmlGenerator.ts | 4 +- .../conventionalHydropower/Approval/index.vue | 17 + .../FishResource/index.vue | 17 + .../views/fish-survey/fishSurveyZhuanZhi.vue | 2 +- .../shiPinJianKong/shiPinJianKongZhuanTi.vue | 165 +++- .../src/views/shuJuFenXi/components/utils.ts | 16 +- .../ConfigManagement/ConfigManagementForm.vue | 828 ++++++++++++++++++ .../ConfigManagementSearch.vue | 83 ++ .../views/system/ConfigManagement/index.vue | 379 ++++++++ .../StationManagementForm.vue | 160 ++++ .../StationManagementSearch.vue | 67 ++ .../views/system/StationManagement/index.vue | 203 +++++ .../TiltPhotoManagementForm.vue | 249 ++++++ .../TiltPhotoManagementSearch.vue | 81 ++ .../system/TiltPhotoManagement/index.vue | 269 ++++++ .../LayerManagement/LayerManagementForm.vue | 1 + .../map/components/LayerManagement/index.vue | 5 +- .../map/components/LegendStructure/index.vue | 14 +- frontend/src/views/system/map/index.vue | 24 +- .../components/ConfigManagement/index.vue | 2 +- 48 files changed, 2962 insertions(+), 380 deletions(-) create mode 100644 frontend/src/views/system/ConfigManagement/ConfigManagementForm.vue create mode 100644 frontend/src/views/system/ConfigManagement/ConfigManagementSearch.vue create mode 100644 frontend/src/views/system/ConfigManagement/index.vue create mode 100644 frontend/src/views/system/StationManagement/StationManagementForm.vue create mode 100644 frontend/src/views/system/StationManagement/StationManagementSearch.vue create mode 100644 frontend/src/views/system/StationManagement/index.vue create mode 100644 frontend/src/views/system/TiltPhotoManagement/TiltPhotoManagementForm.vue create mode 100644 frontend/src/views/system/TiltPhotoManagement/TiltPhotoManagementSearch.vue create mode 100644 frontend/src/views/system/TiltPhotoManagement/index.vue diff --git a/frontend/src/api/home/index.ts b/frontend/src/api/home/index.ts index 1f2ac831..0c450a18 100644 --- a/frontend/src/api/home/index.ts +++ b/frontend/src/api/home/index.ts @@ -79,6 +79,16 @@ export function vmsstbprptGetKendoList(data: any) { data: data }); } +// 环保自动监测工作开展情弹窗 +export function overviewvmsstbprptGetKendoList(data: any) { + return request({ + url: '/overview/vmsstbprpt/GetKendoList', + method: 'post', + data: data + }); +} + + // 获取基本信息 export function baseMsstbprptGetKendoList(data: any) { diff --git a/frontend/src/api/system/map/TiltPhotoManagement/index.ts b/frontend/src/api/system/map/TiltPhotoManagement/index.ts index b6ee61fc..5b041a97 100644 --- a/frontend/src/api/system/map/TiltPhotoManagement/index.ts +++ b/frontend/src/api/system/map/TiltPhotoManagement/index.ts @@ -1,9 +1,9 @@ import request from '@/utils/request'; - + // 获取所有倾斜摄影 export function getAllTiltPhotoTree(data: any) { return request({ - url: '/api/wmp-sys-server/sys/oblique/GetKendoListCust', + url: '/sys/oblique/GetKendoListCust', method: 'post', data: data }); @@ -11,7 +11,7 @@ export function getAllTiltPhotoTree(data: any) { // 保存倾斜摄影 export function saveTiltPhoto(data: any) { return request({ - url: '/api/wmp-sys-server/sys/oblique/addOrUpdate', + url: '/sys/oblique/addOrUpdate', method: 'post', data: data }); @@ -19,7 +19,7 @@ export function saveTiltPhoto(data: any) { // 删除倾斜摄影 export function deleteTiltPhoto(data: any) { return request({ - url: '/api/wmp-sys-server/sys/oblique/delete', + url: '/sys/oblique/delete', method: 'get', params: data }); diff --git a/frontend/src/components/BasicSearch/index.vue b/frontend/src/components/BasicSearch/index.vue index 1a500565..1df4f7c2 100644 --- a/frontend/src/components/BasicSearch/index.vue +++ b/frontend/src/components/BasicSearch/index.vue @@ -468,7 +468,7 @@ const triggerManualValuesChange = (changedKey: string, newValue: any) => { emit('valuesChange', changedValues, { ...formData }); }; -const dataDimensionDataChange = (value: any, fieldName: string = 'baseId') => { +const dataDimensionDataChange = (value: any, fieldName = 'baseId') => { formData[fieldName] = value; formData.rstcd = ""; shuJuTianBaoStore.getEngOption(value,'baseId'); diff --git a/frontend/src/components/BasicTable/index.vue b/frontend/src/components/BasicTable/index.vue index 5f5d7990..716cc092 100644 --- a/frontend/src/components/BasicTable/index.vue +++ b/frontend/src/components/BasicTable/index.vue @@ -192,6 +192,7 @@ const getList = async (filter?: Record) => { total.value = 0; if (filter !== undefined) { lastFilter.value = filter; + page.value = 1; } try { // 合并排序参数:优先使用用户手动排序,否则使用 searchParams 中的默认排序 diff --git a/frontend/src/components/carouselIntroduce/ArtsDetail.vue b/frontend/src/components/carouselIntroduce/ArtsDetail.vue index b0d95b82..e2e1de19 100644 --- a/frontend/src/components/carouselIntroduce/ArtsDetail.vue +++ b/frontend/src/components/carouselIntroduce/ArtsDetail.vue @@ -5,7 +5,7 @@