根据对接文档修改投保流程的投保人 被保人的新市民字段

根据对接文档修改客户管理的新增 修改基本信息关于新市民字段
This commit is contained in:
liu.xiaofeng@ebiz-digits.com
2023-09-20 16:25:12 +08:00
parent ad3ab17b6b
commit 2caaa20c66
6 changed files with 51 additions and 51 deletions

View File

@@ -85,8 +85,8 @@
<!-- 工作信息 -->
<van-cell-group>
<p class="title pl10 pv12 mt10">工作信息</p>
<div class="p15 pl8 fs14" style="border-bottom: 1px solid #eee;display: flex;justify-content: space-between;align-items: center;">
<van-radio-group v-model="userInfo.newCitizen" class="flex">
<div class="p15 pl8 fs14" style="border-bottom: 1px solid #eee;display: flex;justify-content: space-between;align-items: center;" v-if="manageComCode == '45'">
<van-radio-group v-model="userInfo.isNewPeopleFlag" class="flex">
<label>
<i class="pr5"></i>
新市民身份
@@ -94,11 +94,11 @@
<van-radio name="1" class="ml30"></van-radio>
<van-radio name="2" class="ml20"></van-radio>
</van-radio-group>
<van-icon name="question-o" size="20" @click="newCitizenTip"/>
<van-icon name="question-o" size="20" @click="isNewPeopleFlagTip"/>
</div>
<van-field
v-if="userInfo.newCitizen == 1"
:value="userInfo.newCitizenType | idToText('newCitizenType')"
v-if="userInfo.isNewPeopleFlag == 1 && manageComCode == '45'"
:value="userInfo.npType | idToText('npType')"
readonly
label="新市民类型"
name="新市民类型"
@@ -217,8 +217,8 @@
<van-popup v-model="censusShow" position="bottom">
<van-area :area-list="areaList" value="110101" :columns-num="2" @confirm="sureArea($event, '3')" @cancel="areaShow = false" />
</van-popup>
<van-popup v-model:show="newCitizenTipshow" closeable position="bottom" round :style="{ height: '30%' }">
<div class="newCitizenTipClass">
<van-popup v-model:show="isNewPeopleFlagTipshow" closeable position="bottom" round :style="{ height: '30%' }">
<div class="isNewPeopleFlagTipClass">
新市民是指因本人创业就业子女上学投靠子女等原因来到城镇常住未获得当地户籍或获得当地户籍不满三年的各类群体包括但不限于进城务工人员新就业大中专毕业生等
</div>
</van-popup>
@@ -259,7 +259,7 @@ export default {
props: ['userInfo'],
data() {
return {
newCitizenTipshow: false,
isNewPeopleFlagTipshow: false,
popupShow: false,
areaShow: false, //省级联动
homeShow: false,
@@ -281,8 +281,8 @@ export default {
customerType: '',
customerSource: '',
age: '',
newCitizen: '', //新市民身份
newCitizenType: '', //新市民类型
isNewPeopleFlag: '', //新市民身份
npType: '', //新市民类型
effectiveDateTypeAble: false, //长期按钮是否禁用
occupationShowPicker: false,
sexRadio: [
@@ -353,8 +353,8 @@ export default {
this.areaLists = areaLists
},
methods: {
newCitizenTip(){
this.newCitizenTipshow = true
isNewPeopleFlagTip(){
this.isNewPeopleFlagTipshow = true
},
selectClick() {
let title = ''
@@ -601,7 +601,7 @@ export default {
} else if (pickerType == '9') {
this.columns = DataDictionary.workCondition
} else if (pickerType == '11') {
this.columns = DataDictionary.newCitizenType
this.columns = DataDictionary.npType
}
},
//确认选择字段
@@ -639,7 +639,7 @@ export default {
} else if (this.pickerType == '9') {
;[this.userInfo.workCondition, this.workCondition] = [value.id, value.text]
} else if (this.pickerType == '11') {
;[this.userInfo.newCitizenType, this.newCitizenType] = [value.id, value.text]
;[this.userInfo.npType, this.npType] = [value.id, value.text]
}
},
//区域选择
@@ -777,7 +777,7 @@ export default {
.van-checkbox {
margin-left: auto;
}
.newCitizenTipClass{
.isNewPeopleFlagTipClass{
margin-top: 45px;line-height: 24px;text-indent: 2em;letter-spacing: 1px;padding: 2px 10px;
}
</style>