diff --git a/src/views/demo/degraining/curbspotcity/MapList/ShowInfoModal/index.vue b/src/views/demo/degraining/curbspotcity/MapList/ShowInfoModal/index.vue index 0b573a42..83b4e413 100644 --- a/src/views/demo/degraining/curbspotcity/MapList/ShowInfoModal/index.vue +++ b/src/views/demo/degraining/curbspotcity/MapList/ShowInfoModal/index.vue @@ -22,41 +22,55 @@ 'word-break': 'break-all', }" > - {{ case_no }} - {{ typename }} - {{ countyname }} - {{ streetname }} - {{ communityname }} + {{ + props.showInfoData.case_no + }} + {{ + props.showInfoData.typename + }} + {{ + props.showInfoData.countyname + }} + {{ + props.showInfoData.streetname + }} + {{ + props.showInfoData.communityname + }} {{ - dataProcessing(area) + dataProcessing(props.showInfoData.area) }} {{ - dataProcessing(gengdi_area) + dataProcessing(props.showInfoData.gengdi_area) }} {{ - dataProcessing(yongjiujibennongtian_area) + dataProcessing(props.showInfoData.yongjiujibennongtian_area) }} - {{ case_description }} + {{ + props.showInfoData.case_description + }} - {{ remark }} - {{ lng }} - {{ lat }} - {{ synchronoustime }} + {{ props.showInfoData.remark }} + {{ props.showInfoData.lng }} + {{ props.showInfoData.lat }} + {{ + props.showInfoData.synchronoustime + }}
+ >