mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-12 13:46:43 +08:00
Merge branch 'hotfix/【20210120】婚姻状况未保存问题' into release/20210120
This commit is contained in:
@@ -1454,6 +1454,13 @@ export default {
|
|||||||
if (!nVal) {
|
if (!nVal) {
|
||||||
this.userInfo.otherSalarySource = ''
|
this.userInfo.otherSalarySource = ''
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
'userInfo.marriageStatus'(nv) {
|
||||||
|
for (let status of DataDictionary.marriage) {
|
||||||
|
if (status.text === nv) {
|
||||||
|
this.userInfo.marriage = status.id
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
beforeDestroy() {
|
beforeDestroy() {
|
||||||
|
|||||||
@@ -1771,6 +1771,13 @@ export default {
|
|||||||
} else {
|
} else {
|
||||||
this.homeName = this.userInfo.homeAddress = ''
|
this.homeName = this.userInfo.homeAddress = ''
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
'userInfo.marriageStatus'(nv) {
|
||||||
|
for (let status of DataDictionary.marriage) {
|
||||||
|
if (status.text === nv) {
|
||||||
|
this.userInfo.marriage = status.id
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user