BUG 29463
This commit is contained in:
@@ -106,7 +106,8 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="right">
|
<div class="right">
|
||||||
<!-- :areaId="user.areaId" v-model="form.currentAreaId"-->
|
<!-- :areaId="user.areaId" v-model="form.currentAreaId"-->
|
||||||
<AiAreaPicker ref="address" class="aiArea" :fullName.sync="form.currentAreaName" v-model="form.currentAreaId" :root="user.areaId" @select="onAreaChange">
|
<AiAreaPicker ref="address" class="aiArea" :fullName.sync="form.currentAreaName" v-model="form.currentAreaId" :root="user.areaId"
|
||||||
|
@select="onAreaChange">
|
||||||
<div class="aiArea">
|
<div class="aiArea">
|
||||||
<span class="label" style="color: #333;" v-if="form.currentAreaName">{{ form.currentAreaName }}</span>
|
<span class="label" style="color: #333;" v-if="form.currentAreaName">{{ form.currentAreaName }}</span>
|
||||||
<i v-else>请选择</i>
|
<i v-else>请选择</i>
|
||||||
@@ -287,8 +288,10 @@
|
|||||||
<span>是否会讲普通话</span>
|
<span>是否会讲普通话</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="right">
|
<div class="right">
|
||||||
<div class="check-item" :class="form.mandarin == '01' ? 'check-active' : '' " @click="form.mandarin='01'">是<img src="./components/img/check-icon.png" alt=""></div>
|
<div class="check-item" :class="form.mandarin == '01' ? 'check-active' : '' " @click="form.mandarin='01'">是<img
|
||||||
<div class="check-item" :class="form.mandarin != '01' ? 'check-active' : '' " @click="form.mandarin='02'">否<img src="./components/img/check-icon.png" alt=""></div>
|
src="./components/img/check-icon.png" alt=""></div>
|
||||||
|
<div class="check-item" :class="form.mandarin != '01' ? 'check-active' : '' " @click="form.mandarin='02'">否<img
|
||||||
|
src="./components/img/check-icon.png" alt=""></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -362,8 +365,10 @@
|
|||||||
<span>是否国外务工</span>
|
<span>是否国外务工</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="right">
|
<div class="right">
|
||||||
<div class="check-item" :class="form.foreignWorkers == '01' ? 'check-active' : '' " @click="form.foreignWorkers='01'">是<img src="./components/img/check-icon.png" alt=""></div>
|
<div class="check-item" :class="form.foreignWorkers == '01' ? 'check-active' : '' " @click="form.foreignWorkers='01'">是<img
|
||||||
<div class="check-item" :class="form.foreignWorkers != '01' ? 'check-active' : '' " @click="form.foreignWorkers='02'">否<img src="./components/img/check-icon.png" alt=""></div>
|
src="./components/img/check-icon.png" alt=""></div>
|
||||||
|
<div class="check-item" :class="form.foreignWorkers != '01' ? 'check-active' : '' " @click="form.foreignWorkers='02'">否<img
|
||||||
|
src="./components/img/check-icon.png" alt=""></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -386,6 +391,7 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import {mapState} from 'vuex'
|
import {mapState} from 'vuex'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
@@ -473,13 +479,14 @@ export default {
|
|||||||
onLoad(query) {
|
onLoad(query) {
|
||||||
this.householdIdNumber = query.houseIdNumber
|
this.householdIdNumber = query.houseIdNumber
|
||||||
this.objectType = query.objectType
|
this.objectType = query.objectType
|
||||||
this.form.currentAreaId = this.user.areaId
|
|
||||||
this.$dict.load(['fpRelationship', 'riskEliminationMethod', 'fpRiskType', 'fpYesOrNo', 'fpNation', 'fpEducation', 'fpStudentsInSchool', 'fpHealth',
|
this.$dict.load(['fpRelationship', 'riskEliminationMethod', 'fpRiskType', 'fpYesOrNo', 'fpNation', 'fpEducation', 'fpStudentsInSchool', 'fpHealth',
|
||||||
'fpLaborSkills', 'fpPoliticalOutlook', 'sex', 'fpHealth']).then(() => {
|
'fpLaborSkills', 'fpPoliticalOutlook', 'sex', 'fpHealth']).then(() => {
|
||||||
if (query.id) {
|
if (query.id) {
|
||||||
this.id = query.id
|
this.id = query.id
|
||||||
this.getInfo(query.id)
|
this.getInfo(query.id)
|
||||||
this.isEdit = true
|
this.isEdit = true
|
||||||
|
} else {
|
||||||
|
this.form.currentAreaId = this.user.areaId
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
this.$dict.getDict('fpHealth').map((item) => {
|
this.$dict.getDict('fpHealth').map((item) => {
|
||||||
@@ -720,18 +727,22 @@ export default {
|
|||||||
.form-item__wrappers {
|
.form-item__wrappers {
|
||||||
padding-right: 30px;
|
padding-right: 30px;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
|
||||||
.top {
|
.top {
|
||||||
font-size: 32px;
|
font-size: 32px;
|
||||||
padding: 32px 0;
|
padding: 32px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.bottoms {
|
.bottoms {
|
||||||
padding-bottom: 20px;
|
padding-bottom: 20px;
|
||||||
|
|
||||||
.cards {
|
.cards {
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
border: 1px solid #CCCCCC;
|
border: 1px solid #CCCCCC;
|
||||||
border-radius: 16px;
|
border-radius: 16px;
|
||||||
margin-bottom: 16px;
|
margin-bottom: 16px;
|
||||||
|
|
||||||
.changeActive {
|
.changeActive {
|
||||||
color: #1174FE;
|
color: #1174FE;
|
||||||
border: 1px solid #1174FE;
|
border: 1px solid #1174FE;
|
||||||
@@ -750,6 +761,7 @@ export default {
|
|||||||
font-size: 30px;
|
font-size: 30px;
|
||||||
color: #999999;
|
color: #999999;
|
||||||
}
|
}
|
||||||
|
|
||||||
.check-item {
|
.check-item {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: 140px;
|
width: 140px;
|
||||||
@@ -763,16 +775,20 @@ export default {
|
|||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
color: #333;
|
color: #333;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
||||||
img {
|
img {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.check-item:nth-of-type(1) {
|
.check-item:nth-of-type(1) {
|
||||||
margin-right: 36px;
|
margin-right: 36px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.check-active {
|
.check-active {
|
||||||
background: #E7F1FE;
|
background: #E7F1FE;
|
||||||
color: #1174FE;
|
color: #1174FE;
|
||||||
|
|
||||||
img {
|
img {
|
||||||
display: block;
|
display: block;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
@@ -867,11 +883,13 @@ export default {
|
|||||||
font-size: 32px;
|
font-size: 32px;
|
||||||
background: #3192F4;
|
background: #3192F4;
|
||||||
}
|
}
|
||||||
|
|
||||||
.upload {
|
.upload {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
padding: 10px 32px 32px 32px;
|
padding: 10px 32px 32px 32px;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
.border-b0 {
|
.border-b0 {
|
||||||
border-bottom: 0 !important;
|
border-bottom: 0 !important;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user