From 453a2757c15a85436c2e39cb656db81612c0437d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E7=8E=8B=E5=85=B4=E5=87=AF?= <2448379534@qq.com>
Date: Wed, 2 Sep 2026 10:44:17 +0800
Subject: [PATCH] =?UTF-8?q?=E6=95=B0=E6=8D=AE=E7=AE=A1=E7=90=86=E5=AD=90?=
=?UTF-8?q?=E7=B3=BB=E7=BB=9F=E9=A1=B5=E9=9D=A2bug=E6=9B=B4=E6=94=B9?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
frontend-sjgl/.env.development | 2 +-
.../src/api/DataQueryMenuModule/index.ts | 8 ++
.../src/components/ConfirmModal/index.vue | 5 ++
.../components/OperationLogModal/index.vue | 5 ++
.../BasicData/EditPowerModal.vue | 15 ++++
.../BasicData/index.vue | 2 +-
.../aiBox/EditAiBoxModal.vue | 2 +-
.../aquaEco/EditOtweModal.vue | 4 +-
.../fishSurvey/EditFishModal.vue | 4 +-
.../guoYuSheShi/EditFpModal.vue | 6 +-
.../guoYuSheShi/FpSearch.vue | 2 +-
.../luShengShengTaiDiaoCha/EditTeModal.vue | 4 +-
.../qiXiDi/EditFhModal.vue | 4 +
.../shengTaiLiuLiang/EditEqModal.vue | 4 +-
.../shengTaiLiuLiang/index.vue | 6 +-
.../shuiShengShengTaiDiaoCha/EditWeModal.vue | 2 +-
.../shuiWenJianCe/EditWtModal.vue | 4 +-
.../shuiZhiJianCe/EditWqModal.vue | 4 +
.../tempMit/EditDwModal.vue | 4 +-
.../terrEco/EditOtteModal.vue | 2 +-
.../zengZhiFangLiu/EditFbModal.vue | 4 +-
.../zhenXIZhiWuYuan/EditVpModal.vue | 4 +-
.../zhenXIZhiWuYuan/index.vue | 2 +-
.../src/views/monitorData/Export/index.vue | 84 ++++++-------------
.../src/views/monitorData/FishData/index.vue | 11 ++-
.../fishSurveyData/fishSurveyDataSearch.vue | 4 +-
.../monitorData/fishSurveyData/index.vue | 2 +-
frontend/.env.development | 2 +-
28 files changed, 110 insertions(+), 92 deletions(-)
diff --git a/frontend-sjgl/.env.development b/frontend-sjgl/.env.development
index baea33a7..ee0f859a 100644
--- a/frontend-sjgl/.env.development
+++ b/frontend-sjgl/.env.development
@@ -11,7 +11,7 @@ VITE_APP_BASE_URL = 'http://localhost:8093'
# 测试环境
# VITE_APP_BASE_URL = 'http://172.16.21.142:8093'
# 汤伟
-VITE_APP_BASE_URL = 'http://10.84.111.235:8093'
+VITE_APP_BASE_URL = 'http://10.84.216.252:8093'
# 李林
# VITE_APP_BASE_URL = 'http://10.84.111.25:8093'
diff --git a/frontend-sjgl/src/api/DataQueryMenuModule/index.ts b/frontend-sjgl/src/api/DataQueryMenuModule/index.ts
index fd50ef31..091e306d 100644
--- a/frontend-sjgl/src/api/DataQueryMenuModule/index.ts
+++ b/frontend-sjgl/src/api/DataQueryMenuModule/index.ts
@@ -286,6 +286,14 @@ export function getFishReleaseMonitorSectionList(data) {
data
});
}
+//过鱼设施名称新接口
+export function overviewvmsstbprptGetKendoList(data) {
+ return request({
+ url: '/overview/vmsstbprpt/GetKendoList',
+ method: 'post',
+ data
+ });
+}
// 过鱼监测数据
export function getFishReleaseMonitorList(data) {
return request({
diff --git a/frontend-sjgl/src/components/ConfirmModal/index.vue b/frontend-sjgl/src/components/ConfirmModal/index.vue
index 993f91ae..5ce1065a 100644
--- a/frontend-sjgl/src/components/ConfirmModal/index.vue
+++ b/frontend-sjgl/src/components/ConfirmModal/index.vue
@@ -81,3 +81,8 @@ watch(
}
);
+
\ No newline at end of file
diff --git a/frontend-sjgl/src/components/OperationLogModal/index.vue b/frontend-sjgl/src/components/OperationLogModal/index.vue
index 35ea0838..064249ec 100644
--- a/frontend-sjgl/src/components/OperationLogModal/index.vue
+++ b/frontend-sjgl/src/components/OperationLogModal/index.vue
@@ -147,6 +147,11 @@ const columns = computed(() => [
visible: true,
width: 120,
ellipsis: true,
+ customRender: ({ text, record }: any) => {
+ // 有值就显示,无值就用 recordId 兜底
+ if (text && text !== '-' && text !== 'null' && text !== 'undefined') return text;
+ return record.recordId || '-';
+ },
},
{
key: "operator",
diff --git a/frontend-sjgl/src/views/conventionalHydropower/BasicData/EditPowerModal.vue b/frontend-sjgl/src/views/conventionalHydropower/BasicData/EditPowerModal.vue
index ff32ac84..598f6b76 100644
--- a/frontend-sjgl/src/views/conventionalHydropower/BasicData/EditPowerModal.vue
+++ b/frontend-sjgl/src/views/conventionalHydropower/BasicData/EditPowerModal.vue
@@ -178,6 +178,7 @@
value-format="YYYY-MM-DD HH:mm:ss"
placeholder="请选择第一台机组投产时间"
style="width: 100%"
+ :disabled-date="disabledPiodtDate"
/>
@@ -189,6 +190,7 @@
value-format="YYYY-MM-DD HH:mm:ss"
placeholder="请选择全部机组投产时间"
style="width: 100%"
+ :disabled-date="disabledAiodtDate"
/>
@@ -900,6 +902,7 @@