From 665c6ed554df8780989340d8592d81cf1ef88540 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BB=95=E5=B5=A9?= <17854119262@163.com> Date: Wed, 4 Jun 2025 15:49:15 +0800 Subject: [PATCH] =?UTF-8?q?=E8=BF=9D=E6=B3=95=E7=94=A8=E5=9C=B0-=E6=8C=81?= =?UTF-8?q?=E7=BB=AD=E7=9B=91=E7=AE=A1-=E5=AE=A1=E6=A0=B8=E6=8C=89?= =?UTF-8?q?=E9=92=AE=E7=8B=AC=E7=AB=8B=E5=87=BA=E6=9D=A5=E2=86=92=E7=BB=A7?= =?UTF-8?q?=E7=BB=AD=E6=8C=81=E7=BB=AD=E7=9B=91=E7=AE=A1=E6=8C=89=E9=92=AE?= =?UTF-8?q?=EF=BC=8C=E5=9B=BE=E7=89=87=E6=8F=92=E5=85=A5=E6=89=B9=E9=87=8F?= =?UTF-8?q?=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../MapList/ShowInfoModal/index.vue | 17 +- .../keepSupervision/keepSupervision.data.ts | 96 ++++++----- .../keepSupervision/uploadModal.vue | 150 ++++++++---------- 3 files changed, 133 insertions(+), 130 deletions(-) diff --git a/src/views/demo/tiankongdi/curbspotcity/MapList/ShowInfoModal/index.vue b/src/views/demo/tiankongdi/curbspotcity/MapList/ShowInfoModal/index.vue index db3f386a..bd4022ef 100644 --- a/src/views/demo/tiankongdi/curbspotcity/MapList/ShowInfoModal/index.vue +++ b/src/views/demo/tiankongdi/curbspotcity/MapList/ShowInfoModal/index.vue @@ -95,9 +95,10 @@ }}
+ 继续持续监管 转入违法用地 @@ -509,7 +510,7 @@ import { defineProps, ref, computed, onBeforeMount, watch } from 'vue'; import MapboxMap from '@/components/MapboxMaps/MapComponent.vue'; import { getConfig, getGeom } from '@/api/sys/layerManagement'; - import { MoveInIllegalSubject } from '@/api/demo/system'; + import { MoveInIllegalSubject, CheckCxjgPic } from '@/api/demo/system'; import { getLoadCaseImgList } from '@/api/tiankongdi'; import { useMessage } from '@/hooks/web/useMessage'; import axios from 'axios'; @@ -809,6 +810,18 @@ } }); }; + + // 继续持续监管 + const funCheckCxjgPic = async () => { + let querys = { + id: props.showInfoData.case_no, + }; + await CheckCxjgPic(querys).then((res) => { + if (res) { + createMessage.success('图片审核成功,持续监管中!'); + } + }); + };