【新增电子投保单模板和贵州联系地址的需求】投保人,被保人,还有再次投保,客户列表,配置areaValue

This commit is contained in:
li.yuetong
2022-03-25 11:33:18 +08:00
parent ad4027dc41
commit b285abd3ae
4 changed files with 20 additions and 8 deletions

View File

@@ -190,7 +190,7 @@
</van-popup>
<!-- 家庭地址选择 -->
<van-popup v-model="homeShow" position="bottom">
<van-area :area-list="areaLists" value="450000" @confirm="sureArea($event, '2')" @cancel="homeShow = false" />
<van-area :area-list="areaLists" :value="areaValue" @confirm="sureArea($event, '2')" @cancel="homeShow = false" />
</van-popup>
<!-- 户籍选择 -->
<van-popup v-model="censusShow" position="bottom">
@@ -274,7 +274,8 @@ export default {
value: '1'
}
],
manageComCode:''//代理人管理机构 52贵州 45广西
manageComCode:'',//代理人管理机构 52贵州 45广西
areaValue:'' //代理人管理机构--省级编号
}
},
watch: {
@@ -310,10 +311,12 @@ export default {
areaLists.province_list = {
520000: '贵州省'
}
this.areaValue = '520000'
}else{
areaLists.province_list = {
450000: '广西壮族自治区'
}
this.areaValue = '450000'
}
this.areaLists = areaLists
},