From 6d094e5aaf20300e197af3d1a8143df8d7cc5941 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BB=95=E5=B5=A9?= <17854119262@163.com> Date: Thu, 5 Jun 2025 15:21:34 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E8=BF=9D=E6=B3=95=E7=94=A8=E5=9C=B0-?= =?UTF-8?q?=E6=8C=81=E7=BB=AD=E7=9B=91=E7=AE=A1-=E6=8C=89=E9=92=AE?= =?UTF-8?q?=E5=8F=AA=E6=9C=89=E5=BE=85=E5=AE=A1=E6=A0=B8=E7=8A=B6=E6=80=81?= =?UTF-8?q?=E7=9A=84=E5=9B=BE=E6=96=91=E6=98=BE=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../curbspotcity/MapList/ShowInfoModal/index.vue | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/src/views/demo/tiankongdi/curbspotcity/MapList/ShowInfoModal/index.vue b/src/views/demo/tiankongdi/curbspotcity/MapList/ShowInfoModal/index.vue index 905dfe4d..5221aeff 100644 --- a/src/views/demo/tiankongdi/curbspotcity/MapList/ShowInfoModal/index.vue +++ b/src/views/demo/tiankongdi/curbspotcity/MapList/ShowInfoModal/index.vue @@ -95,16 +95,10 @@ }}
- - 继续持续监管 - + 继续持续监管 转入违法用地 From dd906887b39d3a0f846136347a1573a468a78300 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BB=95=E5=B5=A9?= <17854119262@163.com> Date: Thu, 5 Jun 2025 15:42:12 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E8=BF=9D=E6=B3=95=E7=94=A8=E5=9C=B0-?= =?UTF-8?q?=E6=8C=81=E7=BB=AD=E7=9B=91=E7=AE=A1-=E6=8C=89=E9=92=AE?= =?UTF-8?q?=E5=8F=AA=E6=9C=89=E5=BE=85=E5=AE=A1=E6=A0=B8=E7=8A=B6=E6=80=81?= =?UTF-8?q?=E7=9A=84=E5=9B=BE=E6=96=91=E6=98=BE=E7=A4=BA=EF=BC=88=E4=B8=8A?= =?UTF-8?q?=E4=B8=80=E9=A1=B5=EF=BC=8C=E4=B8=8B=E4=B8=80=E9=A1=B5=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/demo/tiankongdi/keepSupervision/index.vue | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/views/demo/tiankongdi/keepSupervision/index.vue b/src/views/demo/tiankongdi/keepSupervision/index.vue index 73a488d0..1ae54d44 100644 --- a/src/views/demo/tiankongdi/keepSupervision/index.vue +++ b/src/views/demo/tiankongdi/keepSupervision/index.vue @@ -324,10 +324,14 @@ await getTableData(searchParams.value); setTimeout(() => { showInfoId.value = tableData.value[tableData.value.length - 1].Id; + let index = tableData.value.findIndex((item) => item.Id == showInfoId.value); + showInfoRecord.value = tableData.value[index]; }, 10); return; } else { showInfoId.value = prevShowDataId.value; + let index = tableData.value.findIndex((item) => item.Id == showInfoId.value); + showInfoRecord.value = tableData.value[index]; } } async function nextData() { @@ -344,9 +348,13 @@ await getTableData(searchParams.value); setTimeout(() => { showInfoId.value = tableData.value[0].Id; + let index = tableData.value.findIndex((item) => item.Id == showInfoId.value); + showInfoRecord.value = tableData.value[index]; }, 10); } else { showInfoId.value = nextShowDataId.value; + let index = tableData.value.findIndex((item) => item.Id == showInfoId.value); + showInfoRecord.value = tableData.value[index]; } } // 上传