mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-25 01:22:53 +08:00
投被保人信息录入页面,是否是协同单位数据反显
This commit is contained in:
@@ -280,7 +280,7 @@
|
||||
/> -->
|
||||
<select-radio required :radios="Asyncs" label="是否协同工作单位" name="是否协同工作单位" v-validate="'required'" :value.sync="userInfo.isAsync"></select-radio>
|
||||
<SearchField
|
||||
:isAsync="userInfo.isAsync"
|
||||
:isAsync="userInfo.isAsync == 1"
|
||||
@workcompanys="workcompanys"
|
||||
v-model="userInfo.workcompany"
|
||||
label="工作单位"
|
||||
@@ -428,12 +428,12 @@ export default {
|
||||
Asyncs: [
|
||||
{
|
||||
label: '是',
|
||||
value: true,
|
||||
value: '1'
|
||||
},
|
||||
{
|
||||
label: '否',
|
||||
value: false,
|
||||
},
|
||||
value: '0'
|
||||
}
|
||||
],
|
||||
sexRadio: [
|
||||
{
|
||||
@@ -499,7 +499,7 @@ export default {
|
||||
taxResidentId: '', //税收居民身份
|
||||
averageAnnualIncome: '', //平均年收入
|
||||
workcompany: '', //工作单位
|
||||
isAsync: false, //是否协同工作单位
|
||||
isAsync: 0, //是否协同工作单位 0否 1是
|
||||
province: '',
|
||||
// jobStatus: '', //在职情况
|
||||
area: '',
|
||||
@@ -1214,7 +1214,7 @@ export default {
|
||||
return this.$toast('亲,国籍为外籍,证件类型必须为护照或外国人永久居留身份证投保')
|
||||
}
|
||||
}
|
||||
if (this.userInfo.isAsync) {
|
||||
if (this.userInfo.isAsync == 1) {
|
||||
if (
|
||||
!this.userWorkcompanys.some((item) => {
|
||||
return item.asscompanies == this.userInfo.workcompany
|
||||
|
||||
@@ -312,7 +312,7 @@
|
||||
<SearchField
|
||||
v-model="userInfo.workcompany"
|
||||
@workcompanys="workcompanys"
|
||||
:isAsync="userInfo.isAsync"
|
||||
:isAsync="userInfo.isAsync == 1"
|
||||
label="工作单位"
|
||||
placeholder="无工作单位,请输入无"
|
||||
v-validate="'required'"
|
||||
@@ -494,12 +494,12 @@ export default {
|
||||
Asyncs: [
|
||||
{
|
||||
label: '是',
|
||||
value: true,
|
||||
value: '1'
|
||||
},
|
||||
{
|
||||
label: '否',
|
||||
value: false,
|
||||
},
|
||||
value: '0'
|
||||
}
|
||||
],
|
||||
sexRadio: [
|
||||
{
|
||||
@@ -569,7 +569,7 @@ export default {
|
||||
averageAnnualIncome: '', //平均年收入
|
||||
liabilitiesMoney: '', //负债金额
|
||||
workcompany: '', //工作单位
|
||||
isAsync: false, //是否协同工作单位
|
||||
isAsync: 0, //是否协同工作单位 0否 1是
|
||||
// village: '',
|
||||
province: '',
|
||||
// city: '',
|
||||
@@ -1512,7 +1512,7 @@ export default {
|
||||
return this.$toast('亲,国籍为外籍,证件类型必须为护照或外国人永久居留身份证投保')
|
||||
}
|
||||
}
|
||||
if (this.userInfo.isAsync) {
|
||||
if (this.userInfo.isAsync == 1) {
|
||||
if (
|
||||
!this.userWorkcompanys.some((item) => {
|
||||
return item.asscompanies == this.userInfo.workcompany
|
||||
|
||||
Reference in New Issue
Block a user