mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-13 20:06:44 +08:00
【新增电子投保单模板和贵州联系地址的需求】投保人,被保人,还有再次投保,客户列表,贵州联系地址
This commit is contained in:
@@ -212,6 +212,7 @@ import getAreaName, { getCensusName } from '@/assets/js/utils/getAreaNameForSale
|
|||||||
import idNoCheck from '@/assets/js/utils/idNoCheck'
|
import idNoCheck from '@/assets/js/utils/idNoCheck'
|
||||||
import { idToData } from '@/views/ebiz/customer/js/verification'
|
import { idToData } from '@/views/ebiz/customer/js/verification'
|
||||||
import filter from '@/filters/index'
|
import filter from '@/filters/index'
|
||||||
|
import riskRules from '@/views/ebiz/common/risk-rules'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'formBlock',
|
name: 'formBlock',
|
||||||
@@ -272,7 +273,8 @@ export default {
|
|||||||
label: '无',
|
label: '无',
|
||||||
value: '1'
|
value: '1'
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
manageComCode:''//代理人管理机构 52贵州 45广西
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
@@ -301,7 +303,20 @@ export default {
|
|||||||
filters: {
|
filters: {
|
||||||
idToText: filter.idToText
|
idToText: filter.idToText
|
||||||
},
|
},
|
||||||
mounted() {},
|
async mounted() {
|
||||||
|
//获取代理人管理机构 52贵州 45广西
|
||||||
|
this.manageComCode = await riskRules.getAgentInfoFunc(this)
|
||||||
|
if(this.manageComCode == '52'){
|
||||||
|
areaLists.province_list = {
|
||||||
|
520000: '贵州省'
|
||||||
|
}
|
||||||
|
}else{
|
||||||
|
areaLists.province_list = {
|
||||||
|
450000: '广西壮族自治区'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
this.areaLists = areaLists
|
||||||
|
},
|
||||||
methods: {
|
methods: {
|
||||||
selectClick() {
|
selectClick() {
|
||||||
let title = ''
|
let title = ''
|
||||||
|
|||||||
@@ -354,6 +354,8 @@ import SelectBankName from '@/components/ebiz/account/SelectBankName'
|
|||||||
import areaList from '@/assets/js/utils/area'
|
import areaList from '@/assets/js/utils/area'
|
||||||
import occupationList from '@/components/ebiz/occipation/data/occupation'
|
import occupationList from '@/components/ebiz/occipation/data/occupation'
|
||||||
import { idToData } from './js/verification'
|
import { idToData } from './js/verification'
|
||||||
|
import riskRules from '@/views/ebiz/common/risk-rules'
|
||||||
|
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'InsureInformation',
|
name: 'InsureInformation',
|
||||||
@@ -452,19 +454,32 @@ export default {
|
|||||||
areaLists: areaLists, //地址信息
|
areaLists: areaLists, //地址信息
|
||||||
occupationShowPicker: false, //职业类别
|
occupationShowPicker: false, //职业类别
|
||||||
occupationName: '',
|
occupationName: '',
|
||||||
occupationCode: ''
|
occupationCode: '',
|
||||||
|
manageComCode:''//代理人管理机构 52贵州 45广西
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
this.getReAppntPolicy()
|
this.getReAppntPolicy()
|
||||||
},
|
},
|
||||||
mounted() {
|
async mounted() {
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
window.EWebBridge.webCallAppInJs('webview_left_button', {
|
window.EWebBridge.webCallAppInJs('webview_left_button', {
|
||||||
intercept: '1'
|
intercept: '1'
|
||||||
})
|
})
|
||||||
}, 100)
|
}, 100)
|
||||||
window.appCallBack = this.appCallBack
|
window.appCallBack = this.appCallBack
|
||||||
|
//获取代理人管理机构 52贵州 45广西
|
||||||
|
this.manageComCode = await riskRules.getAgentInfoFunc(this)
|
||||||
|
if(this.manageComCode == '52'){
|
||||||
|
areaLists.province_list = {
|
||||||
|
520000: '贵州省'
|
||||||
|
}
|
||||||
|
}else{
|
||||||
|
areaLists.province_list = {
|
||||||
|
450000: '广西壮族自治区'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
this.areaLists = areaLists
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
setBankArea(areaInfo) {
|
setBankArea(areaInfo) {
|
||||||
|
|||||||
@@ -397,8 +397,8 @@ import idNoCheck from '@/assets/js/utils/idNoCheck'
|
|||||||
import beforeDate from '@/assets/js/utils/getBeforeDate.js'
|
import beforeDate from '@/assets/js/utils/getBeforeDate.js'
|
||||||
import { idToData } from './js/verification'
|
import { idToData } from './js/verification'
|
||||||
import { selectComp, getIdentityInfo } from './js/methods'
|
import { selectComp, getIdentityInfo } from './js/methods'
|
||||||
|
|
||||||
import SearchField from '@/components/common/SearchField'
|
import SearchField from '@/components/common/SearchField'
|
||||||
|
import riskRules from '@/views/ebiz/common/risk-rules'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'insuredInfo',
|
name: 'insuredInfo',
|
||||||
@@ -534,6 +534,7 @@ export default {
|
|||||||
idLimit: false, //证件起止日期是否只读
|
idLimit: false, //证件起止日期是否只读
|
||||||
salePageFlag: '1',
|
salePageFlag: '1',
|
||||||
userWorkcompanys: [], //单位数据
|
userWorkcompanys: [], //单位数据
|
||||||
|
manageComCode:''//代理人管理机构 52贵州 45广西
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
@@ -601,7 +602,7 @@ export default {
|
|||||||
this.$CacheUtils.setLocItem('saleInsuredInfo', '')
|
this.$CacheUtils.setLocItem('saleInsuredInfo', '')
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
mounted() {
|
async mounted() {
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
// eslint-disable-next-line no-undef
|
// eslint-disable-next-line no-undef
|
||||||
EWebBridge.webCallAppInJs('webview_left_button', {
|
EWebBridge.webCallAppInJs('webview_left_button', {
|
||||||
@@ -611,6 +612,18 @@ export default {
|
|||||||
}, 100)
|
}, 100)
|
||||||
// 筛选按钮的点击事件
|
// 筛选按钮的点击事件
|
||||||
window.appCallBack = this.appCallBack
|
window.appCallBack = this.appCallBack
|
||||||
|
//获取代理人管理机构 52贵州 45广西
|
||||||
|
this.manageComCode = await riskRules.getAgentInfoFunc(this)
|
||||||
|
if(this.manageComCode == '52'){
|
||||||
|
areaLists.province_list = {
|
||||||
|
520000: '贵州省'
|
||||||
|
}
|
||||||
|
}else{
|
||||||
|
areaLists.province_list = {
|
||||||
|
450000: '广西壮族自治区'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
this.areaLists = areaLists
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
workcompanys(list) {
|
workcompanys(list) {
|
||||||
|
|||||||
@@ -462,6 +462,7 @@ import { idToData } from './js/verification'
|
|||||||
import { selectComp, getIdentityInfo } from './js/methods'
|
import { selectComp, getIdentityInfo } from './js/methods'
|
||||||
import IndexBar from '@/components/ebiz/sale/IndexBar'
|
import IndexBar from '@/components/ebiz/sale/IndexBar'
|
||||||
import SearchField from '@/components/common/SearchField'
|
import SearchField from '@/components/common/SearchField'
|
||||||
|
import riskRules from '@/views/ebiz/common/risk-rules'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'insuredInfo',
|
name: 'insuredInfo',
|
||||||
@@ -603,6 +604,7 @@ export default {
|
|||||||
idLimit: false, //证件起止日期是否只读
|
idLimit: false, //证件起止日期是否只读
|
||||||
salePageFlag: '2',
|
salePageFlag: '2',
|
||||||
userWorkcompanys:[],//单位数据
|
userWorkcompanys:[],//单位数据
|
||||||
|
manageComCode:''//代理人管理机构 52贵州 45广西
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
@@ -751,7 +753,7 @@ export default {
|
|||||||
localStorage.setItem('salePageFlag', this.salePageFlag)
|
localStorage.setItem('salePageFlag', this.salePageFlag)
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
mounted() {
|
async mounted() {
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
// eslint-disable-next-line no-undef
|
// eslint-disable-next-line no-undef
|
||||||
EWebBridge.webCallAppInJs('webview_left_button', {
|
EWebBridge.webCallAppInJs('webview_left_button', {
|
||||||
@@ -761,6 +763,18 @@ export default {
|
|||||||
}, 100)
|
}, 100)
|
||||||
window.appCallBack = this.appCallBack
|
window.appCallBack = this.appCallBack
|
||||||
// // document.body.style.backgroundColor = '#F5F5F5'
|
// // document.body.style.backgroundColor = '#F5F5F5'
|
||||||
|
//获取代理人管理机构 52贵州 45广西
|
||||||
|
this.manageComCode = await riskRules.getAgentInfoFunc(this)
|
||||||
|
if(this.manageComCode == '52'){
|
||||||
|
areaLists.province_list = {
|
||||||
|
520000: '贵州省'
|
||||||
|
}
|
||||||
|
}else{
|
||||||
|
areaLists.province_list = {
|
||||||
|
450000: '广西壮族自治区'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
this.areaLists = areaLists
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
workcompanys(list) {
|
workcompanys(list) {
|
||||||
|
|||||||
Reference in New Issue
Block a user