字段
This commit is contained in:
@@ -111,30 +111,15 @@
|
||||
<span>{{ info.income9 }}元</span>
|
||||
</div>
|
||||
</div>
|
||||
<!-- <div class="item-wrapper">
|
||||
<div class="item-header">
|
||||
<div class="left">
|
||||
<h2>人员变更</h2>
|
||||
<i :style="{color: isPoorStatus ? '#2EA222' : '#FF4466'}">({{ isPoorStatus ? '已填写' : '未填写' }})</i>
|
||||
</div>
|
||||
<span @click="linkTo(`./MonitorPoorStatus?id=${info.id}&girdId=${girdInfo.girdId}&girdName=${girdInfo.girdName}`)" v-if="info.status == 1">编辑</span>
|
||||
</div>
|
||||
<div class="item-info">
|
||||
<label>信息采集人</label>
|
||||
<span>{{ $dict.getLabel('fpIndustrialAssistance', info.industrialAssistance) || '-' }}</span>
|
||||
</div>
|
||||
<div class="item-info">
|
||||
<label>信息采集人电话</label>
|
||||
<span>{{ $dict.getLabel('fpHealthAssistance', info.healthAssistance) || '-' }}</span>
|
||||
</div>
|
||||
</div> -->
|
||||
<!-- 风险解除 -->
|
||||
<!-- v-if="info.status == 3" -->
|
||||
<div class="item-wrapper">
|
||||
<div class="item-header">
|
||||
<div class="left">
|
||||
<h2>风险解除跟踪</h2>
|
||||
<i :style="{color: isPoorStatus ? '#2EA222' : '#FF4466'}">({{ isPoorStatus ? '已填写' : '未填写' }})</i>
|
||||
</div>
|
||||
<span @click="linkTo(`./MonitorPoorStatus?id=${info.id}&girdId=${girdInfo.girdId}&girdName=${girdInfo.girdName}`)" v-if="info.status == 1">编辑</span>
|
||||
<span @click="linkTo(`./MonitorPoorStatus?id=${info.id}&girdId=${girdInfo.girdId}&girdName=${girdInfo.girdName}`)">编辑</span>
|
||||
</div>
|
||||
<div class="item-info">
|
||||
<label>信息采集人</label>
|
||||
|
||||
@@ -54,45 +54,18 @@ export default {
|
||||
},
|
||||
methods: {
|
||||
submit() {
|
||||
var url = ''
|
||||
var params = {
|
||||
pass: this.pass,
|
||||
opinion: this.opinion,
|
||||
files: this.filesList,
|
||||
id: this.id,
|
||||
}
|
||||
if(this.pass == 1) {
|
||||
if(this.status == 1) { // 解除
|
||||
this.$http.post(`/app/apppreventionreturntopoverty/relieve`,null,{
|
||||
params: {
|
||||
pass: this.pass,
|
||||
opinion: this.opinion,
|
||||
files: this.filesList,
|
||||
id: this.id,
|
||||
}
|
||||
}).then(res => {
|
||||
if (res.code == 0) {
|
||||
this.$u.toast('提交成功')
|
||||
uni.$emit('reload')
|
||||
setTimeout(() =>{
|
||||
uni.navigateBack({
|
||||
delta: 2
|
||||
})
|
||||
},600)
|
||||
}
|
||||
})
|
||||
url = '/app/apppreventionreturntopoverty/relieve'
|
||||
} else if (this.status == 4 || this.status == 3 || this.status == 0) { // 纳入监测
|
||||
this.$http.post(`/app/apppreventionreturntopoverty/examine`,null,{
|
||||
params: {
|
||||
pass: this.pass,
|
||||
opinion: this.opinion,
|
||||
files: this.filesList,
|
||||
id: this.id,
|
||||
}
|
||||
}).then(res => {
|
||||
if (res.code == 0) {
|
||||
this.$u.toast('提交成功')
|
||||
uni.$emit('reload')
|
||||
setTimeout(() =>{
|
||||
uni.navigateBack({
|
||||
delta: 2
|
||||
})
|
||||
},600)
|
||||
}
|
||||
})
|
||||
url = `/app/apppreventionreturntopoverty/examine`
|
||||
}
|
||||
} else {
|
||||
if(this.status == '0') {
|
||||
@@ -114,15 +87,17 @@ export default {
|
||||
}
|
||||
|
||||
if(this.status == 0) { // 纳入监测
|
||||
this.$http.post(`/app/apppreventionreturntopoverty/examine`, null,{
|
||||
params: {
|
||||
// pass: this.pass,
|
||||
id: this.id,
|
||||
riskType: this.riskType,
|
||||
opinion: this.opinion,
|
||||
files: this.filesList,
|
||||
url = `/app/apppreventionreturntopoverty/examine`
|
||||
} else {
|
||||
url = `/app/apppreventionreturntopoverty/relieve` // 驳回
|
||||
}
|
||||
}).then(res => {
|
||||
}
|
||||
|
||||
let fromData = new FormData()
|
||||
for (let key in params) {
|
||||
fromData.append(key, params[key])
|
||||
}
|
||||
this.$http.post(url , formData).then(res => {
|
||||
if (res.code === 0) {
|
||||
this.$u.toast('提交成功')
|
||||
uni.$emit('reload')
|
||||
@@ -133,28 +108,6 @@ export default {
|
||||
},600)
|
||||
}
|
||||
})
|
||||
} else { // 驳回
|
||||
this.$http.post(`/app/apppreventionreturntopoverty/relieve`, null,{
|
||||
params: {
|
||||
// pass: this.pass,
|
||||
id: this.id,
|
||||
riskEliminationMethod: this.riskEliminationMethod,
|
||||
opinion: this.opinion,
|
||||
files: this.filesList,
|
||||
}
|
||||
}).then(res => {
|
||||
if (res.code === 0) {
|
||||
this.$u.toast('提交成功')
|
||||
uni.$emit('reload')
|
||||
setTimeout(() => {
|
||||
uni.navigateBack({
|
||||
delta: 2
|
||||
})
|
||||
},600)
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
}
|
||||
|
||||
@@ -20,7 +20,7 @@
|
||||
<span>住房面积(m²)</span>
|
||||
</div>
|
||||
<div class="right">
|
||||
<u-input v-model="value" placeholder="请输入" placeholder-style="font-size: 15px;" type="text" />
|
||||
<u-input v-model="form.houseArea" placeholder="请输入" placeholder-style="font-size: 15px;" type="number"/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -31,7 +31,7 @@
|
||||
<span>与村主干路距离(公里)</span>
|
||||
</div>
|
||||
<div class="right">
|
||||
<u-input v-model="value" placeholder="请输入" placeholder-style="font-size: 15px;" type="text" />
|
||||
<u-input v-model="form.trunkRoadDistance" placeholder="请输入" placeholder-style="font-size: 15px;" type="number" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -42,7 +42,7 @@
|
||||
<span>入户路类型</span>
|
||||
</div>
|
||||
<div class="right">
|
||||
<AiSelect dict="fpType" v-model="form.objectType"></AiSelect>
|
||||
<AiSelect dict="fpHouseRoadType" v-model="form.houseRoadType"></AiSelect>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -53,7 +53,7 @@
|
||||
<span>主要燃料类型</span>
|
||||
</div>
|
||||
<div class="right">
|
||||
<AiSelect dict="fpType" v-model="form.objectType"></AiSelect>
|
||||
<AiSelect dict="fpFuelType" v-model="form.fuelType"></AiSelect>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -91,8 +91,8 @@
|
||||
<span>是否住房损坏</span>
|
||||
</div>
|
||||
<div class="right">
|
||||
<div class="check-item" :class="form.move == '01' ? 'check-active' : '' " @click="form.move='01'">是<img src="./components/img/check-icon.png" alt=""></div>
|
||||
<div class="check-item" :class="form.move !='01' ? 'check-active' : '' " @click="form.move='02'">否<img src="./components/img/check-icon.png" alt=""></div>
|
||||
<div class="check-item" :class="form.houseDamage == '01' ? 'check-active' : '' " @click="form.houseDamage='01'">是<img src="./components/img/check-icon.png" alt=""></div>
|
||||
<div class="check-item" :class="form.houseDamage !='01' ? 'check-active' : '' " @click="form.houseDamage='02'">否<img src="./components/img/check-icon.png" alt=""></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -103,8 +103,8 @@
|
||||
<span>是否饮水设施损坏</span>
|
||||
</div>
|
||||
<div class="right">
|
||||
<div class="check-item" :class="form.move == '01' ? 'check-active' : '' " @click="form.move='01'">是<img src="./components/img/check-icon.png" alt=""></div>
|
||||
<div class="check-item" :class="form.move !='01' ? 'check-active' : '' " @click="form.move='02'">否<img src="./components/img/check-icon.png" alt=""></div>
|
||||
<div class="check-item" :class="form.drinkingWaterDamage == '01' ? 'check-active' : '' " @click="form.drinkingWaterDamage='01'">是<img src="./components/img/check-icon.png" alt=""></div>
|
||||
<div class="check-item" :class="form.drinkingWaterDamage !='01' ? 'check-active' : '' " @click="form.drinkingWaterDamage='02'">否<img src="./components/img/check-icon.png" alt=""></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -115,8 +115,8 @@
|
||||
<span>是否有卫生厕所</span>
|
||||
</div>
|
||||
<div class="right">
|
||||
<div class="check-item" :class="form.move == '01' ? 'check-active' : '' " @click="form.move='01'">是<img src="./components/img/check-icon.png" alt=""></div>
|
||||
<div class="check-item" :class="form.move !='01' ? 'check-active' : '' " @click="form.move='02'">否<img src="./components/img/check-icon.png" alt=""></div>
|
||||
<div class="check-item" :class="form.toilet == '01' ? 'check-active' : '' " @click="form.toilet='01'">是<img src="./components/img/check-icon.png" alt=""></div>
|
||||
<div class="check-item" :class="form.toilet !='01' ? 'check-active' : '' " @click="form.toilet='02'">否<img src="./components/img/check-icon.png" alt=""></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -127,8 +127,8 @@
|
||||
<span>是否通生活用电</span>
|
||||
</div>
|
||||
<div class="right">
|
||||
<div class="check-item" :class="form.move == '01' ? 'check-active' : '' " @click="form.move='01'">是<img src="./components/img/check-icon.png" alt=""></div>
|
||||
<div class="check-item" :class="form.move !='01' ? 'check-active' : '' " @click="form.move='02'">否<img src="./components/img/check-icon.png" alt=""></div>
|
||||
<div class="check-item" :class="form.electric == '01' ? 'check-active' : '' " @click="form.electric='01'">是<img src="./components/img/check-icon.png" alt=""></div>
|
||||
<div class="check-item" :class="form.electric !='01' ? 'check-active' : '' " @click="form.electric='02'">否<img src="./components/img/check-icon.png" alt=""></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -139,8 +139,8 @@
|
||||
<span>是否通广播电视</span>
|
||||
</div>
|
||||
<div class="right">
|
||||
<div class="check-item" :class="form.move == '01' ? 'check-active' : '' " @click="form.move='01'">是<img src="./components/img/check-icon.png" alt=""></div>
|
||||
<div class="check-item" :class="form.move !='01' ? 'check-active' : '' " @click="form.move='02'">否<img src="./components/img/check-icon.png" alt=""></div>
|
||||
<div class="check-item" :class="form.television == '01' ? 'check-active' : '' " @click="form.television='01'">是<img src="./components/img/check-icon.png" alt=""></div>
|
||||
<div class="check-item" :class="form.television !='01' ? 'check-active' : '' " @click="form.television='02'">否<img src="./components/img/check-icon.png" alt=""></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -155,7 +155,7 @@
|
||||
<span>耕地面积(亩)</span>
|
||||
</div>
|
||||
<div class="right">
|
||||
<u-input v-model="value" placeholder="请输入" placeholder-style="font-size: 15px;" type="text" />
|
||||
<u-input v-model="form.cultivatedLandArea" placeholder="请输入" placeholder-style="font-size: 15px;" type="number" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -167,7 +167,7 @@
|
||||
<span>林果面积(亩)</span>
|
||||
</div>
|
||||
<div class="right">
|
||||
<u-input v-model="value" placeholder="请输入" placeholder-style="font-size: 15px;" type="text" />
|
||||
<u-input v-model="form.orchardArea" placeholder="请输入" placeholder-style="font-size: 15px;" type="number" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -179,7 +179,7 @@
|
||||
<span>林地面积(亩)</span>
|
||||
</div>
|
||||
<div class="right">
|
||||
<u-input v-model="value" placeholder="请输入" placeholder-style="font-size: 15px;" type="text" />
|
||||
<u-input v-model="form.woodlandArea" placeholder="请输入" placeholder-style="font-size: 15px;" type="number" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -191,7 +191,7 @@
|
||||
<span>退耕还林面积(亩)</span>
|
||||
</div>
|
||||
<div class="right">
|
||||
<u-input v-model="value" placeholder="请输入" placeholder-style="font-size: 15px;" type="text" />
|
||||
<u-input v-model="form.grainForGreenArea" placeholder="请输入" placeholder-style="font-size: 15px;" type="number" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -202,7 +202,7 @@
|
||||
<span>牧草地面积(亩)</span>
|
||||
</div>
|
||||
<div class="right">
|
||||
<u-input v-model="value" placeholder="请输入" placeholder-style="font-size: 15px;" type="text" />
|
||||
<u-input v-model="form.grazingGrasslandArea" placeholder="请输入" placeholder-style="font-size: 15px;" type="number" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -213,7 +213,7 @@
|
||||
<span>水面面积(亩)</span>
|
||||
</div>
|
||||
<div class="right">
|
||||
<u-input v-model="value" placeholder="请输入" placeholder-style="font-size: 15px;" type="text" />
|
||||
<u-input v-model="form.watersArea" placeholder="请输入" placeholder-style="font-size: 15px;" type="number" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -227,8 +227,8 @@
|
||||
<span>是否有龙头企业带动</span>
|
||||
</div>
|
||||
<div class="right">
|
||||
<div class="check-item" :class="form.dilapidatedHousehold == '01' ? 'check-active' : '' " @click="form.dilapidatedHousehold='01'">是<img src="./components/img/check-icon.png" alt=""></div>
|
||||
<div class="check-item" :class="form.dilapidatedHousehold != '01' ? 'check-active' : '' " @click="form.dilapidatedHousehold='02'">否<img src="./components/img/check-icon.png" alt=""></div>
|
||||
<div class="check-item" :class="form.longtouqiye == '01' ? 'check-active' : '' " @click="form.longtouqiye='01'">是<img src="./components/img/check-icon.png" alt=""></div>
|
||||
<div class="check-item" :class="form.longtouqiye != '01' ? 'check-active' : '' " @click="form.longtouqiye='02'">否<img src="./components/img/check-icon.png" alt=""></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -239,8 +239,8 @@
|
||||
<span>是否通生产用电</span>
|
||||
</div>
|
||||
<div class="right">
|
||||
<div class="check-item" :class="form.drinkingWaterSafety == '01' ? 'check-active' : '' " @click="form.drinkingWaterSafety='01'">是<img src="./components/img/check-icon.png" alt=""></div>
|
||||
<div class="check-item" :class="form.drinkingWaterSafety != '01' ? 'check-active' : '' " @click="form.drinkingWaterSafety='02'">否<img src="./components/img/check-icon.png" alt=""></div>
|
||||
<div class="check-item" :class="form.produceElectric == '01' ? 'check-active' : '' " @click="form.produceElectric='01'">是<img src="./components/img/check-icon.png" alt=""></div>
|
||||
<div class="check-item" :class="form.produceElectric != '01' ? 'check-active' : '' " @click="form.produceElectric='02'">否<img src="./components/img/check-icon.png" alt=""></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -251,8 +251,8 @@
|
||||
<span>是否加入农民专业合作社</span>
|
||||
</div>
|
||||
<div class="right">
|
||||
<div class="check-item" :class="form.move == '01' ? 'check-active' : '' " @click="form.move='01'">是<img src="./components/img/check-icon.png" alt=""></div>
|
||||
<div class="check-item" :class="form.move !='01' ? 'check-active' : '' " @click="form.move='02'">否<img src="./components/img/check-icon.png" alt=""></div>
|
||||
<div class="check-item" :class="form.nongheshe == '01' ? 'check-active' : '' " @click="form.nongheshe='01'">是<img src="./components/img/check-icon.png" alt=""></div>
|
||||
<div class="check-item" :class="form.nongheshe !='01' ? 'check-active' : '' " @click="form.nongheshe='02'">否<img src="./components/img/check-icon.png" alt=""></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -263,8 +263,8 @@
|
||||
<span>是否有创业致富带头人带动</span>
|
||||
</div>
|
||||
<div class="right">
|
||||
<div class="check-item" :class="form.move == '01' ? 'check-active' : '' " @click="form.move='01'">是<img src="./components/img/check-icon.png" alt=""></div>
|
||||
<div class="check-item" :class="form.move !='01' ? 'check-active' : '' " @click="form.move='02'">否<img src="./components/img/check-icon.png" alt=""></div>
|
||||
<div class="check-item" :class="form.cyzfdtr == '01' ? 'check-active' : '' " @click="form.cyzfdtr='01'">是<img src="./components/img/check-icon.png" alt=""></div>
|
||||
<div class="check-item" :class="form.cyzfdtr !='01' ? 'check-active' : '' " @click="form.cyzfdtr='02'">否<img src="./components/img/check-icon.png" alt=""></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -281,9 +281,27 @@ export default {
|
||||
return {
|
||||
form: {
|
||||
objectType: '',
|
||||
dilapidatedHousehold: '02',
|
||||
drinkingWaterSafety: '02',
|
||||
move: '02'
|
||||
dilapidatedHousehold: '',
|
||||
drinkingWaterSafety: '',
|
||||
move: '02',
|
||||
houseArea: '',
|
||||
trunkRoadDistance: '',
|
||||
houseRoadType: '',
|
||||
fuelType:'',
|
||||
houseDamage: '',
|
||||
drinkingWaterDamage: '',
|
||||
toilet: '',
|
||||
electric: '',
|
||||
television: '',
|
||||
cultivatedLandArea: '', // 耕地面积
|
||||
orchardArea: '',
|
||||
woodlandArea: '',
|
||||
grainForGreenArea: '',
|
||||
grazingGrasslandArea: '',
|
||||
longtouqiye: '',
|
||||
produceElectric: '',
|
||||
nongheshe: '',
|
||||
cyzfdtr: '',
|
||||
},
|
||||
id: '',
|
||||
girdId: '',
|
||||
@@ -294,7 +312,7 @@ export default {
|
||||
|
||||
|
||||
onLoad(query) {
|
||||
this.$dict.load(['fpYesOrNo', 'fpRiskType']).then(() => {
|
||||
this.$dict.load(['fpYesOrNo', 'fpRiskType','fpHouseRoadType','fpFuelType']).then(() => {
|
||||
this.getInfo(query.id)
|
||||
})
|
||||
this.id = query.id
|
||||
@@ -374,6 +392,9 @@ export default {
|
||||
}
|
||||
}
|
||||
}
|
||||
::v-deep .AiSelect .display {
|
||||
justify-content: flex-end;
|
||||
}
|
||||
|
||||
.form-group {
|
||||
background: #fff;
|
||||
|
||||
@@ -6,28 +6,6 @@
|
||||
<div class="left">
|
||||
<span>工资性收入(元)</span>
|
||||
</div>
|
||||
<div class="right">
|
||||
<input placeholder="请输入" v-model="form.income1" type="number"
|
||||
placeholder-style="color: #999; font-size: 30rpx;"/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-item">
|
||||
<div class="form-item__wrapper">
|
||||
<div class="left">
|
||||
<span>生产经营收入(元)</span>
|
||||
</div>
|
||||
<div class="right">
|
||||
<input placeholder="请输入" v-model="form.income2" type="number"
|
||||
placeholder-style="color: #999; font-size: 30rpx;"/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-item">
|
||||
<div class="form-item__wrapper">
|
||||
<div class="left">
|
||||
<span>计划生育金(元)</span>
|
||||
</div>
|
||||
<div class="right">
|
||||
<input placeholder="请输入" v-model="form.income3" type="number"
|
||||
placeholder-style="color: #999; font-size: 30rpx;"/>
|
||||
@@ -37,7 +15,7 @@
|
||||
<div class="form-item">
|
||||
<div class="form-item__wrapper">
|
||||
<div class="left">
|
||||
<span>资产收益扶贫分红收入</span>
|
||||
<span>生产经营收入(元)</span>
|
||||
</div>
|
||||
<div class="right">
|
||||
<input placeholder="请输入" v-model="form.income4" type="number"
|
||||
@@ -45,13 +23,35 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-item">
|
||||
<div class="form-item__wrapper">
|
||||
<div class="left">
|
||||
<span>计划生育金(元)</span>
|
||||
</div>
|
||||
<div class="right">
|
||||
<input placeholder="请输入" v-model="form.income5" type="number"
|
||||
placeholder-style="color: #999; font-size: 30rpx;"/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-item">
|
||||
<div class="form-item__wrapper">
|
||||
<div class="left">
|
||||
<span>资产收益扶贫分红收入</span>
|
||||
</div>
|
||||
<div class="right">
|
||||
<input placeholder="请输入" v-model="form.income6" type="number"
|
||||
placeholder-style="color: #999; font-size: 30rpx;"/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-item">
|
||||
<div class="form-item__wrapper">
|
||||
<div class="left">
|
||||
<span>养老保险金(元)</span>
|
||||
</div>
|
||||
<div class="right">
|
||||
<input placeholder="请输入" v-model="form.income8" type="number"
|
||||
<input placeholder="请输入" v-model="form.income9" type="number"
|
||||
placeholder-style="color: #999; font-size: 30rpx;"/>
|
||||
</div>
|
||||
</div>
|
||||
@@ -64,7 +64,7 @@
|
||||
<span>低保金(元)</span>
|
||||
</div>
|
||||
<div class="right">
|
||||
<input placeholder="请输入" v-model="form.income5" type="number"
|
||||
<input placeholder="请输入" v-model="form.income7" type="number"
|
||||
placeholder-style="color: #999; font-size: 30rpx;"/>
|
||||
</div>
|
||||
</div>
|
||||
@@ -75,7 +75,7 @@
|
||||
<span>特困供养金(元)</span>
|
||||
</div>
|
||||
<div class="right">
|
||||
<input placeholder="请输入" v-model="form.income7" type="number"
|
||||
<input placeholder="请输入" v-model="form.income8" type="number"
|
||||
placeholder-style="color: #999; font-size: 30rpx;"/>
|
||||
</div>
|
||||
</div>
|
||||
@@ -86,7 +86,7 @@
|
||||
<span>生态补偿金(元)</span>
|
||||
</div>
|
||||
<div class="right">
|
||||
<input placeholder="请输入" v-model="form.income7" type="number"
|
||||
<input placeholder="请输入" v-model="form.income10" type="number"
|
||||
placeholder-style="color: #999; font-size: 30rpx;"/>
|
||||
</div>
|
||||
</div>
|
||||
@@ -97,7 +97,7 @@
|
||||
<span>财产性收入(元)</span>
|
||||
</div>
|
||||
<div class="right">
|
||||
<input placeholder="请输入" v-model="form.income7" type="number"
|
||||
<input placeholder="请输入" v-model="form.income13" type="number"
|
||||
placeholder-style="color: #999; font-size: 30rpx;"/>
|
||||
</div>
|
||||
</div>
|
||||
@@ -108,7 +108,7 @@
|
||||
<span>其他财产性收入</span>
|
||||
</div>
|
||||
<div class="right">
|
||||
<input placeholder="请输入" v-model="form.income7" type="number"
|
||||
<input placeholder="请输入" v-model="form.income14" type="number"
|
||||
placeholder-style="color: #999; font-size: 30rpx;"/>
|
||||
</div>
|
||||
</div>
|
||||
@@ -119,7 +119,7 @@
|
||||
<span>转移性收入(元)</span>
|
||||
</div>
|
||||
<div class="right">
|
||||
<input placeholder="请输入" v-model="form.income7" type="number"
|
||||
<input placeholder="请输入" v-model="form.income11" type="number"
|
||||
placeholder-style="color: #999; font-size: 30rpx;"/>
|
||||
</div>
|
||||
</div>
|
||||
@@ -130,7 +130,7 @@
|
||||
<span>其他转移性收入(元)</span>
|
||||
</div>
|
||||
<div class="right">
|
||||
<input placeholder="请输入" v-model="form.income7" type="number"
|
||||
<input placeholder="请输入" v-model="form.income12" type="number"
|
||||
placeholder-style="color: #999; font-size: 30rpx;"/>
|
||||
</div>
|
||||
</div>
|
||||
@@ -141,7 +141,7 @@
|
||||
<span>生产经营性支出(元)</span>
|
||||
</div>
|
||||
<div class="right">
|
||||
<input placeholder="请输入" v-model="form.income7" type="number"
|
||||
<input placeholder="请输入" v-model="form.income15" type="number"
|
||||
placeholder-style="color: #999; font-size: 30rpx;"/>
|
||||
</div>
|
||||
</div>
|
||||
@@ -152,7 +152,7 @@
|
||||
<span>纳入监测对象的收入参考范围</span>
|
||||
</div>
|
||||
<div class="right">
|
||||
<input placeholder="请输入" v-model="form.income7" type="number"
|
||||
<input placeholder="请输入" v-model="form.income1" type="number"
|
||||
placeholder-style="color: #999; font-size: 30rpx;"/>
|
||||
</div>
|
||||
</div>
|
||||
@@ -163,7 +163,7 @@
|
||||
<span>纳入监测对象的人均收入参考范围</span>
|
||||
</div>
|
||||
<div class="right">
|
||||
<input placeholder="请输入" v-model="form.income7" type="number"
|
||||
<input placeholder="请输入" v-model="form.income2" type="number"
|
||||
placeholder-style="color: #999; font-size: 30rpx;"/>
|
||||
</div>
|
||||
</div>
|
||||
@@ -186,7 +186,14 @@ export default {
|
||||
income4: '',
|
||||
income5: '',
|
||||
income6: '',
|
||||
income7: ''
|
||||
income8: '',
|
||||
income9: '',
|
||||
income10: '',
|
||||
income11: '',
|
||||
income12: '',
|
||||
income13: '',
|
||||
income14: '',
|
||||
income15: '',
|
||||
},
|
||||
id: '',
|
||||
girdId: '',
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
<span>工资性收入情况</span>
|
||||
</div>
|
||||
<div class="right">
|
||||
<u-input v-model="value" placeholder="请输入" placeholder-style="font-size: 15px;" type="text" />
|
||||
<u-input v-model="form.fxxcIncome1" placeholder="请输入" placeholder-style="font-size: 15px;" type="text" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -19,7 +19,7 @@
|
||||
<span>生产经营性收入情况</span>
|
||||
</div>
|
||||
<div class="right">
|
||||
<u-input v-model="value" placeholder="请输入" placeholder-style="font-size: 15px;" type="text" />
|
||||
<u-input v-model="form.fxxcIncome2" placeholder="请输入" placeholder-style="font-size: 15px;" type="text" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -30,7 +30,7 @@
|
||||
<span>财产性收入情况</span>
|
||||
</div>
|
||||
<div class="right">
|
||||
<u-input v-model="value" placeholder="请输入" placeholder-style="font-size: 15px;" type="text" />
|
||||
<u-input v-model="form.fxxcIncome3" placeholder="请输入" placeholder-style="font-size: 15px;" type="text" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -38,10 +38,10 @@
|
||||
<div class="form-item__wrapper">
|
||||
<div class="left">
|
||||
<i style="opacity: 0;">*</i>
|
||||
<span>理财收入情况</span>
|
||||
<span>理赔收入情况</span>
|
||||
</div>
|
||||
<div class="right">
|
||||
<u-input v-model="value" placeholder="请输入" placeholder-style="font-size: 15px;" type="text" />
|
||||
<u-input v-model="form.fxxcIncome5" placeholder="请输入" placeholder-style="font-size: 15px;" type="text" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -52,7 +52,7 @@
|
||||
<span>转移性收入情况</span>
|
||||
</div>
|
||||
<div class="right">
|
||||
<u-input v-model="value" placeholder="请输入" placeholder-style="font-size: 15px;" type="text" />
|
||||
<u-input v-model="form.fxxcIncome4" placeholder="请输入" placeholder-style="font-size: 15px;" type="text" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -63,7 +63,7 @@
|
||||
<span>生产经营支出情况</span>
|
||||
</div>
|
||||
<div class="right">
|
||||
<u-input v-model="value" placeholder="请输入" placeholder-style="font-size: 15px;" type="text" />
|
||||
<u-input v-model="form.fxxcIncome6" placeholder="请输入" placeholder-style="font-size: 15px;" type="text" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -74,7 +74,7 @@
|
||||
<span>合规自然支出情况</span>
|
||||
</div>
|
||||
<div class="right">
|
||||
<u-input v-model="value" placeholder="请输入" placeholder-style="font-size: 15px;" type="text" />
|
||||
<u-input v-model="form.fxxcIncome7" placeholder="请输入" placeholder-style="font-size: 15px;" type="text" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -92,16 +92,13 @@ export default {
|
||||
return {
|
||||
result: '',
|
||||
form: {
|
||||
isRisk: '02',
|
||||
riskEliminationMethod: '',
|
||||
riskEliminationDate: '',
|
||||
industrialAssistance: '',
|
||||
healthAssistance: '',
|
||||
employmentAssistance: '',
|
||||
educationalAssistance: '',
|
||||
financialAssistance: '',
|
||||
socialAssistance: '',
|
||||
publicWelfarePostAssistance: '',
|
||||
fxxcIncome1: '',
|
||||
fxxcIncome2: '',
|
||||
fxxcIncome3: '',
|
||||
fxxcIncome4: '',
|
||||
fxxcIncome5: '',
|
||||
fxxcIncome6: '',
|
||||
fxxcIncome7: '',
|
||||
},
|
||||
id: '',
|
||||
girdId: '',
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
<span>脱贫年度</span>
|
||||
</div>
|
||||
<div class="right">
|
||||
<u-input v-model="value" placeholder="请输入" placeholder-style="font-size: 15px;" type="text" />
|
||||
<AiSelect dict="fpYera" v-model="form.povertyYear"></AiSelect>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -33,7 +33,7 @@
|
||||
<span>风险因素</span>
|
||||
</div>
|
||||
<div class="right">
|
||||
<u-input v-model="value" placeholder="请输入" placeholder-style="font-size: 15px;" type="text" />
|
||||
<AiSelect dict="fpRiskType" v-model="form.riskType"></AiSelect>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -44,7 +44,7 @@
|
||||
<span>因自然灾害事项</span>
|
||||
</div>
|
||||
<div class="right">
|
||||
<AiSelect dict="fpType" v-model="form.objectType"></AiSelect>
|
||||
<AiSelect dict="fpNaturalDisaster" v-model="form.naturalDisasterType"></AiSelect>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -58,8 +58,8 @@
|
||||
<span>是否军烈属</span>
|
||||
</div>
|
||||
<div class="right">
|
||||
<div class="check-item" :class="form.dilapidatedHousehold == '01' ? 'check-active' : '' " @click="form.dilapidatedHousehold='01'">是<img src="./components/img/check-icon.png" alt=""></div>
|
||||
<div class="check-item" :class="form.dilapidatedHousehold != '01' ? 'check-active' : '' " @click="form.dilapidatedHousehold='02'">否<img src="./components/img/check-icon.png" alt=""></div>
|
||||
<div class="check-item" :class="form.militaryMartyrs == '01' ? 'check-active' : '' " @click="form.militaryMartyrs='01'">是<img src="./components/img/check-icon.png" alt=""></div>
|
||||
<div class="check-item" :class="form.militaryMartyrs != '01' ? 'check-active' : '' " @click="form.militaryMartyrs='02'">否<img src="./components/img/check-icon.png" alt=""></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -70,8 +70,8 @@
|
||||
<span>是否义务阶段失学辍学</span>
|
||||
</div>
|
||||
<div class="right">
|
||||
<div class="check-item" :class="form.dilapidatedHousehold == '01' ? 'check-active' : '' " @click="form.dilapidatedHousehold='01'">是<img src="./components/img/check-icon.png" alt=""></div>
|
||||
<div class="check-item" :class="form.dilapidatedHousehold != '01' ? 'check-active' : '' " @click="form.dilapidatedHousehold='02'">否<img src="./components/img/check-icon.png" alt=""></div>
|
||||
<div class="check-item" :class="form.dropOutOfSchool == '01' ? 'check-active' : '' " @click="form.dropOutOfSchool='01'">是<img src="./components/img/check-icon.png" alt=""></div>
|
||||
<div class="check-item" :class="form.dropOutOfSchool != '01' ? 'check-active' : '' " @click="form.dropOutOfSchool='02'">否<img src="./components/img/check-icon.png" alt=""></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -82,7 +82,7 @@
|
||||
<span>义务阶段未上学原因</span>
|
||||
</div>
|
||||
<div class="bottom">
|
||||
<u-input v-model="value" placeholder="请输入" placeholder-style="font-size: 15px;" :height="200" type="textarea" maxlength="500" />
|
||||
<u-input v-model="form.dropOutOfSchoolReason" placeholder="请输入" placeholder-style="font-size: 15px;" :height="200" type="textarea" maxlength="500" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -97,15 +97,27 @@ export default {
|
||||
name: 'familyRisk',
|
||||
data() {
|
||||
return {
|
||||
form: {},
|
||||
form: {
|
||||
objectType: '',
|
||||
povertyYear: '',
|
||||
riskType: '',
|
||||
naturalDisasterType: '',
|
||||
militaryMartyrs: '',
|
||||
dropOutOfSchool: '',
|
||||
dropOutOfSchoolReason: '',
|
||||
},
|
||||
value: '',
|
||||
}
|
||||
},
|
||||
onLoad() {
|
||||
this.$dict.load('fpYera','fpType','fpRiskType','fpNaturalDisaster')
|
||||
},
|
||||
onShow() {
|
||||
document.title = '家庭风险情况'
|
||||
},
|
||||
onLoad() {},
|
||||
methods: {}
|
||||
methods: {
|
||||
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user