监测对象

This commit is contained in:
liuye
2022-03-25 18:02:48 +08:00
parent ee46d7ef18
commit 81f7f0afe1
2 changed files with 5 additions and 5 deletions

View File

@@ -32,7 +32,7 @@
</div> </div>
<div class="item-info"> <div class="item-info">
<label>政治面貌</label> <label>政治面貌</label>
<span>{{ info.politicsStatus }}</span> <span>{{ $dict.getLabel('fpPoliticalOutlook', info.politicsStatus) }}</span>
</div> </div>
<div class="item-info"> <div class="item-info">
<label>文化程度</label> <label>文化程度</label>
@@ -161,7 +161,7 @@
<span>{{ info.income7 }}</span> <span>{{ info.income7 }}</span>
</div> </div>
</div> </div>
<div class="item-wrapper"> <!-- <div class="item-wrapper">
<div class="item-header"> <div class="item-header">
<div class="left"> <div class="left">
<h2>结对帮扶</h2> <h2>结对帮扶</h2>
@@ -177,7 +177,7 @@
<label>消除风险</label> <label>消除风险</label>
<span>{{ info.riskEliminationMethod ? '是' : '-' }}</span> <span>{{ info.riskEliminationMethod ? '是' : '-' }}</span>
</div> </div>
</div> </div> -->
</div> </div>
<div class="tab-content__item" v-show="currIndex === 1"> <div class="tab-content__item" v-show="currIndex === 1">
<div class="log-item" v-for="(item, index) in list" :key="index"> <div class="log-item" v-for="(item, index) in list" :key="index">
@@ -277,7 +277,7 @@ export default {
this.isFrom = true this.isFrom = true
} }
this.$dict.load(['fpType', 'riskEliminationMethod', 'fpRiskType', 'fpYesOrNo', 'fpNation', 'fpEducation', 'fpStudentsInSchool', 'fpHealth', this.$dict.load(['fpType', 'riskEliminationMethod', 'fpRiskType', 'fpYesOrNo', 'fpNation', 'fpEducation', 'fpStudentsInSchool', 'fpHealth',
'fpLaborSkills', ]).then(() => { 'fpLaborSkills', 'fpPoliticalOutlook']).then(() => {
this.isGirdUser() this.isGirdUser()
this.getInfo() this.getInfo()
}) })

View File

@@ -116,7 +116,7 @@ export default {
params: { params: {
current: this.current, current: this.current,
size: 15, size: 15,
status: this.currIndex == 1 ? '3' : '1', status: this.currentTabs == 1 ? '3' : '1',
// addressAreaId: this.areaId, // addressAreaId: this.areaId,
name: this.keyword name: this.keyword
}, },