缓存担保人

This commit is contained in:
nimengmeng_1990
2019-12-04 10:41:47 +08:00
parent e4911da8ba
commit 19c70b9927
2 changed files with 5 additions and 6 deletions

View File

@@ -132,8 +132,6 @@ export default {
agentAll(data).then(res => { agentAll(data).then(res => {
that.$toast.clear() that.$toast.clear()
that.userInfo = res.content.ebizGuarantorDto that.userInfo = res.content.ebizGuarantorDto
localStorage.idNoD = res.content.ebizGuarantorDto.idNo
localStorage.idNameD = res.content.ebizGuarantorDto.name
}) })
}, },
toSelect(pickerType, index, valueKey) { toSelect(pickerType, index, valueKey) {
@@ -185,9 +183,6 @@ export default {
saveOrUpdateInfo(params).then(res => { saveOrUpdateInfo(params).then(res => {
that.$toast.clear() that.$toast.clear()
if (res.result == '0') { if (res.result == '0') {
console.log('res', res)
localStorage.idNoD = this.userInfo.idNo
localStorage.idNameD = this.userInfo.name
this.$jump({ this.$jump({
flag: 'h5', flag: 'h5',
extra: { extra: {

View File

@@ -43,7 +43,8 @@ export default {
// { name: '《个险营销员营销告知书》', signState: '0' }, // { name: '《个险营销员营销告知书》', signState: '0' },
// { name: '《个险销售人员代理合同》', signState: '1' } // { name: '《个险销售人员代理合同》', signState: '1' }
], ],
isSubmit: false isSubmit: false,
ebizGuarantor:{}
} }
}, },
created() { created() {
@@ -71,6 +72,9 @@ export default {
this.agentInfo = res.content.ebizEnterCustomerDto this.agentInfo = res.content.ebizEnterCustomerDto
this.referrerInfo = res.content.ebizReferrerDto this.referrerInfo = res.content.ebizReferrerDto
this.signList = res.content.ebizAgreementDtoList this.signList = res.content.ebizAgreementDtoList
this.ebizGuarantor = res.content.ebizGuarantorDto
localStorage.idNoD = this.ebizGuarantor.idNo
localStorage.idNameD = this.ebizGuarantor.name
this.agentInfo.createdDate = this.agentInfo.createdDate.substring(0, 10) this.agentInfo.createdDate = this.agentInfo.createdDate.substring(0, 10)
this.signList.map(item => { this.signList.map(item => {
this.addKey(item) this.addKey(item)