乱占耕地建房详情页是否显示文字修改
parent
0ae93b6350
commit
5d96f01791
|
|
@ -80,7 +80,7 @@
|
|||
dataProcessing(props.showInfoData.sandiaogd_area)
|
||||
}}</a-descriptions-item>
|
||||
<a-descriptions-item label="是否占用生态红线">{{
|
||||
props.showInfoData.is_zhanyongsthx
|
||||
yesOrNoOptions(props.showInfoData.is_zhanyongsthx)
|
||||
}}</a-descriptions-item>
|
||||
<a-descriptions-item label="占用生态红线面积(亩)">{{
|
||||
dataProcessing(props.showInfoData.is_zhanyongsthx_area)
|
||||
|
|
@ -89,10 +89,10 @@
|
|||
props.showInfoData.is_zhanyongsthx_lx
|
||||
}}</a-descriptions-item>
|
||||
<a-descriptions-item label="是否办理占用手续">{{
|
||||
props.showInfoData.is_zhanyongsthx_shouxu
|
||||
yesOrNoOptions(props.showInfoData.is_zhanyongsthx_shouxu)
|
||||
}}</a-descriptions-item>
|
||||
<a-descriptions-item label="是否占用重点区域">{{
|
||||
props.showInfoData.is_zhanyongzdqy
|
||||
yesOrNoOptions(props.showInfoData.is_zhanyongzdqy)
|
||||
}}</a-descriptions-item>
|
||||
<a-descriptions-item label="占重点区域面积(亩)">{{
|
||||
dataProcessing(props.showInfoData.is_zhanyongzdqy_area)
|
||||
|
|
@ -121,7 +121,7 @@
|
|||
}"
|
||||
>
|
||||
<a-descriptions-item label="是否处罚完成">{{
|
||||
props.showInfoData.is_chufa
|
||||
yesOrNoOptions(props.showInfoData.is_chufa)
|
||||
}}</a-descriptions-item>
|
||||
<a-descriptions-item label="已处罚面积(亩)">{{
|
||||
dataProcessing(props.showInfoData.is_chufa_area)
|
||||
|
|
@ -130,17 +130,17 @@
|
|||
props.showInfoData.is_chuzhicuosi
|
||||
}}</a-descriptions-item>
|
||||
<a-descriptions-item label="是否处置完成">{{
|
||||
props.showInfoData.is_chuzhiwancheng
|
||||
yesOrNoOptions(props.showInfoData.is_chuzhiwancheng)
|
||||
}}</a-descriptions-item>
|
||||
<!-- ======= -->
|
||||
<a-descriptions-item label="是否位于城镇开发边界内">{{
|
||||
props.showInfoData.is_chzkfbj
|
||||
yesOrNoOptions(props.showInfoData.is_chzkfbj)
|
||||
}}</a-descriptions-item>
|
||||
<a-descriptions-item label="位于城镇开发边界内面积(亩)">{{
|
||||
dataProcessing(props.showInfoData.is_chzkfbj_area)
|
||||
}}</a-descriptions-item>
|
||||
<a-descriptions-item label="是否符合规划">{{
|
||||
props.showInfoData.is_fuheguihua
|
||||
yesOrNoOptions(props.showInfoData.is_fuheguihua)
|
||||
}}</a-descriptions-item>
|
||||
<a-descriptions-item label="符合规划面积(亩)">{{
|
||||
dataProcessing(props.showInfoData.is_fuheguihua_area)
|
||||
|
|
@ -149,22 +149,22 @@
|
|||
props.showInfoData.is_fuheguihua_lx
|
||||
}}</a-descriptions-item>
|
||||
<a-descriptions-item label="土地征收项目是否纳入成片开发方案">{{
|
||||
props.showInfoData.is_tdzsxmnrcpkffa
|
||||
yesOrNoOptions(props.showInfoData.is_tdzsxmnrcpkffa)
|
||||
}}</a-descriptions-item>
|
||||
<a-descriptions-item label="是否符合城镇开发边界外产业布局类型">{{
|
||||
props.showInfoData.is_chzkfbjwcybjlx
|
||||
yesOrNoOptions(props.showInfoData.is_chzkfbjwcybjlx)
|
||||
}}</a-descriptions-item>
|
||||
<a-descriptions-item label="具体产业类型">{{
|
||||
props.showInfoData.is_chzkfbjwcybjlx_shi
|
||||
}}</a-descriptions-item>
|
||||
<a-descriptions-item label="是否属于公益性项目">{{
|
||||
props.showInfoData.is_gongyixingxm
|
||||
yesOrNoOptions(props.showInfoData.is_gongyixingxm)
|
||||
}}</a-descriptions-item>
|
||||
<a-descriptions-item label="是否属于乡村振兴项目">{{
|
||||
props.showInfoData.is_xiangcunzhxxm
|
||||
yesOrNoOptions(props.showInfoData.is_xiangcunzhxxm)
|
||||
}}</a-descriptions-item>
|
||||
<a-descriptions-item label="项目是否符合产业政策、供地政策合节约集约用地标准要求">{{
|
||||
props.showInfoData.is_yongdibiaozhunyq
|
||||
yesOrNoOptions(props.showInfoData.is_yongdibiaozhunyq)
|
||||
}}</a-descriptions-item>
|
||||
<a-descriptions-item label="存在问题">{{
|
||||
props.showInfoData.is_yongdibiaozhunyq_wt
|
||||
|
|
@ -435,6 +435,12 @@ const handleCancelPreviewFile = ()=>{
|
|||
return false;
|
||||
}
|
||||
};
|
||||
const yesOrNoOptions = (value) => {
|
||||
if(value == null){
|
||||
return ''
|
||||
}
|
||||
return value == '1'? '是': '否'
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
|
|
|
|||
|
|
@ -94,7 +94,7 @@
|
|||
dataProcessing(props.showInfoData.sandiaogd_area)
|
||||
}}</a-descriptions-item>
|
||||
<a-descriptions-item label="是否占用生态红线">{{
|
||||
props.showInfoData.is_zhanyongsthx
|
||||
yesOrNoOptions(props.showInfoData.is_zhanyongsthx)
|
||||
}}</a-descriptions-item>
|
||||
<a-descriptions-item label="占用生态红线面积(亩)">{{
|
||||
dataProcessing(props.showInfoData.is_zhanyongsthx_area)
|
||||
|
|
@ -103,10 +103,10 @@
|
|||
props.showInfoData.is_zhanyongsthx_lx
|
||||
}}</a-descriptions-item>
|
||||
<a-descriptions-item label="是否办理占用手续">{{
|
||||
props.showInfoData.is_zhanyongsthx_shouxu
|
||||
yesOrNoOptions(props.showInfoData.is_zhanyongsthx_shouxu)
|
||||
}}</a-descriptions-item>
|
||||
<a-descriptions-item label="是否占用重点区域">{{
|
||||
props.showInfoData.is_zhanyongzdqy
|
||||
yesOrNoOptions(props.showInfoData.is_zhanyongzdqy)
|
||||
}}</a-descriptions-item>
|
||||
<a-descriptions-item label="占重点区域面积(亩)">{{
|
||||
dataProcessing(props.showInfoData.is_zhanyongzdqy_area)
|
||||
|
|
@ -135,7 +135,7 @@
|
|||
}"
|
||||
>
|
||||
<a-descriptions-item label="是否处罚完成">{{
|
||||
props.showInfoData.is_chufa
|
||||
yesOrNoOptions(props.showInfoData.is_chufa)
|
||||
}}</a-descriptions-item>
|
||||
<a-descriptions-item label="已处罚面积(亩)">{{
|
||||
dataProcessing(props.showInfoData.is_chufa_area)
|
||||
|
|
@ -144,17 +144,17 @@
|
|||
props.showInfoData.is_chuzhicuosi
|
||||
}}</a-descriptions-item>
|
||||
<a-descriptions-item label="是否处置完成">{{
|
||||
props.showInfoData.is_chuzhiwancheng
|
||||
yesOrNoOptions(props.showInfoData.is_chuzhiwancheng)
|
||||
}}</a-descriptions-item>
|
||||
<!-- ======= -->
|
||||
<a-descriptions-item label="是否位于城镇开发边界内">{{
|
||||
props.showInfoData.is_chzkfbj
|
||||
yesOrNoOptions(props.showInfoData.is_chzkfbj)
|
||||
}}</a-descriptions-item>
|
||||
<a-descriptions-item label="位于城镇开发边界内面积(亩)">{{
|
||||
dataProcessing(props.showInfoData.is_chzkfbj_area)
|
||||
}}</a-descriptions-item>
|
||||
<a-descriptions-item label="是否符合规划">{{
|
||||
props.showInfoData.is_fuheguihua
|
||||
yesOrNoOptions(props.showInfoData.is_fuheguihua)
|
||||
}}</a-descriptions-item>
|
||||
<a-descriptions-item label="符合规划面积(亩)">{{
|
||||
dataProcessing(props.showInfoData.is_fuheguihua_area)
|
||||
|
|
@ -163,22 +163,22 @@
|
|||
props.showInfoData.is_fuheguihua_lx
|
||||
}}</a-descriptions-item>
|
||||
<a-descriptions-item label="土地征收项目是否纳入成片开发方案">{{
|
||||
props.showInfoData.is_tdzsxmnrcpkffa
|
||||
yesOrNoOptions(props.showInfoData.is_tdzsxmnrcpkffa)
|
||||
}}</a-descriptions-item>
|
||||
<a-descriptions-item label="是否符合城镇开发边界外产业布局类型">{{
|
||||
props.showInfoData.is_chzkfbjwcybjlx
|
||||
yesOrNoOptions(props.showInfoData.is_chzkfbjwcybjlx)
|
||||
}}</a-descriptions-item>
|
||||
<a-descriptions-item label="具体产业类型">{{
|
||||
props.showInfoData.is_chzkfbjwcybjlx_shi
|
||||
}}</a-descriptions-item>
|
||||
<a-descriptions-item label="是否属于公益性项目">{{
|
||||
props.showInfoData.is_gongyixingxm
|
||||
yesOrNoOptions(props.showInfoData.is_gongyixingxm)
|
||||
}}</a-descriptions-item>
|
||||
<a-descriptions-item label="是否属于乡村振兴项目">{{
|
||||
props.showInfoData.is_xiangcunzhxxm
|
||||
yesOrNoOptions(props.showInfoData.is_xiangcunzhxxm)
|
||||
}}</a-descriptions-item>
|
||||
<a-descriptions-item label="项目是否符合产业政策、供地政策合节约集约用地标准要求">{{
|
||||
props.showInfoData.is_yongdibiaozhunyq
|
||||
yesOrNoOptions(props.showInfoData.is_yongdibiaozhunyq)
|
||||
}}</a-descriptions-item>
|
||||
<a-descriptions-item label="存在问题">{{
|
||||
props.showInfoData.is_yongdibiaozhunyq_wt
|
||||
|
|
@ -1157,6 +1157,12 @@ import { itemProps } from '@/components/Menu/src/props';
|
|||
}
|
||||
return true;
|
||||
};
|
||||
const yesOrNoOptions = (value) => {
|
||||
if(value == null){
|
||||
return ''
|
||||
}
|
||||
return value == '1'? '是': '否'
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
|
|
|
|||
Loading…
Reference in New Issue