diff --git a/src/api/bootstraps/index.ts b/src/api/bootstraps/index.ts
index a72b0f86..587d8b32 100644
--- a/src/api/bootstraps/index.ts
+++ b/src/api/bootstraps/index.ts
@@ -29,6 +29,8 @@ enum Api {
UpdateDroneCaseInfo = '/api/DroneCaseInfoSingle/UpdateDroneCaseInfo',
// 督办流程
Supervise = '/api/WFProcess/Supervise',
+ // 获取部门父级
+ LoadParents = '/api/Orgs/LoadParents',
}
/**
@@ -76,3 +78,6 @@ export const updateDroneCaseInfo = (params: updateCaseInfoParams) =>
export const updateSupervise = (params: {id:string,supervise: number}) =>
defHttp.post({ url: `${Api.Supervise}?id=${params.id}&supervise=${params.supervise}`, params });
+
+export const getLoadParents = (params: {childId:Number}) =>
+ defHttp.get({ url: `${Api.LoadParents}?childId=${params.childId}`,});
diff --git a/src/views/demo/bootstraps/curbspotcity/AuditProgress/index.vue b/src/views/demo/bootstraps/curbspotcity/AuditProgress/index.vue
index bbebbe72..7f50e5e8 100644
--- a/src/views/demo/bootstraps/curbspotcity/AuditProgress/index.vue
+++ b/src/views/demo/bootstraps/curbspotcity/AuditProgress/index.vue
@@ -11,7 +11,7 @@
@change="(value) => {emits('auditProgressScreenChange', value,'year')}"
/>
-
diff --git a/src/views/demo/bootstraps/curbspotcity/MapList/ShowInfoModal/index.vue b/src/views/demo/bootstraps/curbspotcity/MapList/ShowInfoModal/index.vue
index d9da7cd2..345eb3bc 100644
--- a/src/views/demo/bootstraps/curbspotcity/MapList/ShowInfoModal/index.vue
+++ b/src/views/demo/bootstraps/curbspotcity/MapList/ShowInfoModal/index.vue
@@ -54,20 +54,102 @@ const props = defineProps(["showInfoData"])
console.log("showInfoData123",props.showInfoData);
const {
- address,
- area,
- case_description,
- case_name,
- case_no,
- createtime,
- gengdi_area,
- guotukongjianguihua_area,
id,
+ case_no,
+ case_name,
+ case_description,
+ start_time,
+ end_time,
+ address,
+ lng,
+ lat,
+ typeid,
+ typename,
+ handle_status_id,
+ handle_status_name,
+ case_status_i,
+ case_status_name,
+ createtime,
+ createuser, drone_no,
+ deal_userid,
+ deal_username,
+ createusername,
+ is_delete,
+ countyid,
+ countyname,
+ streetid,
+ streetname,
+ communityid,
+ communityname,
+ remark,
+ is_closed,
+ area,
+ is_illegal,
+ close_user,
+ close_time,
+ identification_user,
+ identification_time,
+ is_intact,
+ close_userid,
+ identification_userid,
+ verifyuserid,
+ verifyuser,
+ verifytime,
+ is_improve,
+ improve_reason,
+ is_dispense,
+ dispense_userid,
+ dispense_time,
+ dispense_username,
+ verifystatus,
+ verifystatusname,
+ is_checked,
+ deal_time,
+ is_drawback,
+ examiner_id,
+ examiner_name,
+ examine_time,
+ measure_name,
+ casepic,
+ opinion,
+ result,
+ result_name,
+ opinion_name,
+ handletime,
+ handleuser,
+ handleusername,
+ is_assist,
+ measure_name_deal,
+ qita_use_to,
+ illegal_contact,
+ illegal_shenfenzhenghao,
+ investigation_type,
+ investigation_result,
+ registr_number,
+ is_build_complete,
+ actual_use_to,
+ transactor_id,
+ transactor_name,
+ transact_time,
geomid,
nongyongdi_area,
- shengtaibaohuhongxian_area,
+ gengdi_area,
yongjiujibennongtian_area,
- zhongdianquyu_area
+ zhongdianquyu_area,
+ shengtaibaohuhongxian_area,
+ guotukongjianguihua_area,
+ fujian,
+ jieshou_people,
+ jieshou_time,
+ pandingyijushuoming,
+ xiangmumc,
+ xiangmuzhuti,
+ weifaleixing,
+ yanshoubiao,
+ zhenggaifujian,
+ chaichufugenghoupic,
+ is_jieshou,
+ anjianzhaopian
} = props.showInfoData
function onMapboxLoad(){
diff --git a/src/views/demo/bootstraps/curbspotcity/MapList/index.vue b/src/views/demo/bootstraps/curbspotcity/MapList/index.vue
index 91b2d14d..bf790564 100644
--- a/src/views/demo/bootstraps/curbspotcity/MapList/index.vue
+++ b/src/views/demo/bootstraps/curbspotcity/MapList/index.vue
@@ -1,5 +1,5 @@
-
+
emits('mapListScreenChange',value,'year')"
/>
-
+
图斑号
emits('mapListScreenChange',value.target.value,'mapNo')"/>
-
+
+
+
+
县级区划
emits('mapListScreenChange',value,'countyId')"
/>
-
+
镇级区划
emits('mapListScreenChange',value,'streetId')"
/>
+
+
街道区划
+
emits('mapListScreenChange',value,'communityId')"
+ />
+
图斑类型
{
emits('infoDataListSort', type, order.value)
}
const showInfo = (item) => {
- console.log(item)
- showInfoData.value = item
- showInfoOpen.value = true
+ getCaseInfoById({id:item.id}).then(res => {
+ showInfoData.value = res
+ showInfoOpen.value = true
+ })
}