Merge branch 'main' into 'stg'
修改bug See merge request cloud-mediate/mediate-manage-web!46
This commit is contained in:
commit
124e9f2e5c
@ -8,9 +8,9 @@
|
||||
<div class="flex-row justify-content-between align-items-center mr-16">
|
||||
<el-button icon="el-icon-arrow-left" circle :disabled="queue || index ===0" @click="getFrontCaseById"></el-button>
|
||||
<div class="ml-16 mr-16 flex-row justify-content-between align-items-center">
|
||||
<div class="mr-8 f16">{{ baseInfo.debtorEntityList.find(item => item.role == 'DEBTOR').name }}</div>
|
||||
<div class="mr-8 f16">{{ baseInfo.debtorEntityList.find(item => (item.role == 'DEBTOR' && item.type == '本人')).name }}</div>
|
||||
<div class="mr-8">
|
||||
<el-tag size="small" type="warning">{{ baseInfo.debtorEntityList.find(item => item.role == 'DEBTOR').addr }}</el-tag>
|
||||
<el-tag size="small" type="warning">{{ baseInfo.debtorEntityList.find(item => (item.role == 'DEBTOR' && item.type == '本人')).addr }}</el-tag>
|
||||
</div>
|
||||
<div class="mr-8 f16 color-FF7D00"><i class="el-icon-warning"></i></div>
|
||||
<div class="f16 color-165DFF"><i class="el-icon-success"></i></div>
|
||||
|
||||
@ -105,7 +105,7 @@
|
||||
</div>
|
||||
<div class="character-info-details flex-row">
|
||||
<div class="character-info-details-label">居住地</div>
|
||||
<div class="character-info-details-text">{{ getAddress(portraitInfo.domicilePlace) }} {{portraitInfo.domicileAddress}} </div>
|
||||
<div class="character-info-details-text"> {{ (portraitInfo.domicilePlace != null && portraitInfo.domicilePlace !='') ? getAddress(portraitInfo.domicilePlace):'' }} {{portraitInfo.domicileAddress}} </div>
|
||||
</div>
|
||||
<div class="character-info-details flex-row">
|
||||
<div class="character-info-details-label">经济状况</div>
|
||||
@ -584,7 +584,7 @@ export default {
|
||||
})
|
||||
// 查询当前债务人画像
|
||||
let debtorId = ''
|
||||
let debtors = this.debtorEntityList.find(item =>{ return item.role == 'DEBTOR'})
|
||||
let debtors = this.debtorEntityList.find(item =>{ return (item.role == 'DEBTOR' && item.type == '本人')})
|
||||
if(debtors != undefined)
|
||||
{
|
||||
debtorId = debtors.id
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user