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('图片审核成功,持续监管中!'); + } + }); + };