348 lines
8.4 KiB
Vue
348 lines
8.4 KiB
Vue
<template>
|
|
<div class="familyRisk">
|
|
<div class="form-group">
|
|
<div class="form-item">
|
|
<div class="form-item__wrapper">
|
|
<div class="left">
|
|
<i>*</i>
|
|
<span>监测对象类型</span>
|
|
</div>
|
|
<div class="right">
|
|
<AiSelect dict="fpType" v-model="form.objectType"></AiSelect>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="form-item">
|
|
<div class="form-item__wrapper">
|
|
<div class="left">
|
|
<i style="margin-right: 8px;"></i>
|
|
<span>脱贫年度</span>
|
|
</div>
|
|
<div class="right">
|
|
<AiSelect dict="fpYear" v-model="form.povertyYear"></AiSelect>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group" style="margin-top: 8px;">
|
|
<div class="form-item">
|
|
<div class="form-item__wrapper">
|
|
<div class="left">
|
|
<i>*</i>
|
|
<span>风险因素</span>
|
|
</div>
|
|
<div class="right">
|
|
<AiSelect dict="fpRiskType" v-model="form.riskType"></AiSelect>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="form-item">
|
|
<div class="form-item__wrapper">
|
|
<div class="left">
|
|
<i style="margin-right: 8px;"></i>
|
|
<span>因自然灾害事项</span>
|
|
</div>
|
|
<div class="right">
|
|
<AiSelect dict="fpNaturalDisaster" v-model="form.naturalDisasterType"></AiSelect>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group" style="margin-top: 8px;">
|
|
<div class="form-item">
|
|
<div class="form-item__wrapper">
|
|
<div class="left">
|
|
<i>*</i>
|
|
<span>是否军烈属</span>
|
|
</div>
|
|
<div class="right">
|
|
<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 == '02' ? 'check-active' : '' " @click="form.militaryMartyrs='02'">否<img src="./components/img/check-icon.png" alt=""></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="form-item">
|
|
<div class="form-item__wrapper">
|
|
<div class="left">
|
|
<i>*</i>
|
|
<span>是否义务阶段失学辍学</span>
|
|
</div>
|
|
<div class="right">
|
|
<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 == '02' ? 'check-active' : '' " @click="form.dropOutOfSchool='02'">否<img src="./components/img/check-icon.png" alt=""></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="form-item">
|
|
<div class="form-item__wrappers">
|
|
<div class="top">
|
|
<i style="margin-right: 8px;"></i>
|
|
<span>义务阶段未上学原因</span>
|
|
</div>
|
|
<div class="bottom">
|
|
<u-input v-model="form.dropOutOfSchoolReason" placeholder="请输入" placeholder-style="font-size: 15px;" :height="200" type="textarea" maxlength="500" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="btn" @click="submit">保存</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'familyRisk',
|
|
data() {
|
|
return {
|
|
form: {
|
|
objectType: '',
|
|
povertyYear: '',
|
|
riskType: '',
|
|
naturalDisasterType: '',
|
|
militaryMartyrs: '',
|
|
dropOutOfSchool: '',
|
|
dropOutOfSchoolReason: '',
|
|
},
|
|
value: '',
|
|
}
|
|
},
|
|
onLoad(query) {
|
|
this.$dict.load('fpYear','fpType','fpRiskType','fpNaturalDisaster').then(()=>{
|
|
this.getInfo(query.id)
|
|
})
|
|
this.id = query.id
|
|
this.girdId = query.girdId
|
|
this.girdName = query.girdName
|
|
},
|
|
onShow() {
|
|
document.title = '家庭风险情况'
|
|
},
|
|
methods: {
|
|
getInfo(id) {
|
|
this.$http.post(`/app/apppreventionreturntopoverty/queryDetailById?id=${id}`).then(res => {
|
|
if (res.code === 0) {
|
|
this.form = {
|
|
...this.form,
|
|
...res.data
|
|
}
|
|
}
|
|
uni.hideLoading()
|
|
})
|
|
},
|
|
|
|
submit() {
|
|
if (!this.form.objectType) {
|
|
return this.$u.toast('请选择监测对象类型')
|
|
}
|
|
if (!this.form.riskType) {
|
|
return this.$u.toast('请选择风险因素')
|
|
}
|
|
if (!this.form.militaryMartyrs) {
|
|
return this.$u.toast('是否军烈属')
|
|
}
|
|
if (!this.form.dropOutOfSchool) {
|
|
return this.$u.toast('是否义务阶段失学辍学')
|
|
}
|
|
|
|
this.form.girdId = this.girdId
|
|
this.form.girdName = this.girdName
|
|
this.$http.post('/app/apppreventionreturntopoverty/addByEwechat', {
|
|
...this.form,
|
|
id: this.id
|
|
}).then(res => {
|
|
if (res.code === 0) {
|
|
this.$u.toast('保存成功')
|
|
uni.$emit('reload')
|
|
uni.navigateBack({
|
|
delta: 1
|
|
})
|
|
}
|
|
})
|
|
},
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.familyRisk {
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
padding-bottom: 120px;
|
|
.form-group {
|
|
background: #fff;
|
|
p {
|
|
color: #333333;
|
|
font-size: 36px;
|
|
padding: 20px 32px;
|
|
// border-bottom: 1px solid #E4E5E6;
|
|
font-weight: 600;
|
|
}
|
|
.form-item {
|
|
padding: 0 32px;
|
|
|
|
::v-deep .AiSelect .display {
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.form-item__wrapper {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
height: 112px;
|
|
border-bottom: 1px solid #E4E5E6;
|
|
|
|
.left {
|
|
width: 300px;
|
|
}
|
|
|
|
.right {
|
|
width: calc(100% - 300px);
|
|
text-align: right !important;
|
|
::v-deep .u-input .u-input__input .uni-input-wrapper {
|
|
text-align: right;
|
|
}
|
|
|
|
span {
|
|
font-size: 30px;
|
|
color: #999999;
|
|
}
|
|
.check-item{
|
|
display: inline-block;
|
|
width: 160px;
|
|
height: 64px;
|
|
line-height: 64px;
|
|
text-align: center;
|
|
background: #F5F5F5;
|
|
border-radius: 4px;
|
|
font-size: 30px;
|
|
font-family: PingFangSC-Medium, PingFang SC;
|
|
font-weight: 500;
|
|
color: #333;
|
|
position: relative;
|
|
img{
|
|
display: none;
|
|
}
|
|
}
|
|
.check-item:nth-of-type(1) {
|
|
margin-right: 36px;
|
|
}
|
|
.check-active{
|
|
background: #E7F1FE;
|
|
color: #1174FE;
|
|
img{
|
|
display: block;
|
|
position: absolute;
|
|
bottom: 0;
|
|
right: 0;
|
|
width: 48px;
|
|
height: 48px;
|
|
}
|
|
}
|
|
}
|
|
|
|
input {
|
|
height: 100%;
|
|
text-align: right;
|
|
}
|
|
|
|
.left {
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
span {
|
|
color: #333333;
|
|
font-size: 32px;
|
|
}
|
|
|
|
i {
|
|
margin-right: 4px;
|
|
font-style: normal;
|
|
color: #FF4466;
|
|
font-size: 32px;
|
|
}
|
|
}
|
|
|
|
&:last-child {
|
|
.form-item__wrapper {
|
|
border: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
.form-item__wrappers {
|
|
font-size: 32px;
|
|
.top {
|
|
padding: 20px 0;
|
|
}
|
|
.bottom {
|
|
padding: 5px 20px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.form-item__imgs {
|
|
padding: 32px;
|
|
|
|
.form-item__title {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 34px;
|
|
|
|
h2 {
|
|
color: #333333;
|
|
font-weight: normal;
|
|
font-size: 32px;
|
|
}
|
|
|
|
i {
|
|
color: #999999;
|
|
font-size: 28px;
|
|
font-style: normal;
|
|
}
|
|
}
|
|
|
|
textarea {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
.form-type {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
height: 112px;
|
|
padding: 0 32px;
|
|
|
|
h2 {
|
|
font-weight: normal;
|
|
color: #333333;
|
|
font-size: 32px;
|
|
}
|
|
|
|
span {
|
|
color: #999999;
|
|
font-size: 28px;
|
|
}
|
|
}
|
|
.btn {
|
|
position: fixed;
|
|
left: 0;
|
|
bottom: 0;
|
|
z-index: 11;
|
|
width: 100%;
|
|
height: 112px;
|
|
line-height: 112px;
|
|
margin: 0;
|
|
text-align: center;
|
|
color: #FFFFFF;
|
|
font-size: 32px;
|
|
background: #3192F4;
|
|
}
|
|
}
|
|
</style>
|