This commit is contained in:
tdg930622 2025-01-13 11:07:40 +08:00
parent 8bad64efa2
commit 1fff3e544d
2 changed files with 10 additions and 15 deletions

View File

@ -5,7 +5,7 @@
<div class="layout-center-top-wrap flex-row justify-content-between"> <div class="layout-center-top-wrap flex-row justify-content-between">
<div class="top-wrap-title flex-row justify-content-between"></div> <div class="top-wrap-title flex-row justify-content-between"></div>
<div class="top-wrap-btn-left flex-row justify-content-between"> <div class="top-wrap-btn-left flex-row justify-content-between">
<div class="flex-row justify-content-between align-items-center"> <div class="flex-row justify-content-between align-items-center mr-16">
<el-button class="bg-F2F3F5" icon="el-icon-arrow-left" circle></el-button> <el-button class="bg-F2F3F5" icon="el-icon-arrow-left" circle></el-button>
<div class="ml-16 mr-16 flex-row justify-content-between align-items-center"> <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').name }}</div>
@ -20,7 +20,7 @@
<el-button type="warning" icon="el-icon-message" circle></el-button> <el-button type="warning" icon="el-icon-message" circle></el-button>
<div class="wrap-btn-left-dial pl-22 pr-24 f14 flex-row justify-content-between"> <div class="wrap-btn-left-dial pl-22 pr-24 f14 flex-row justify-content-between ml-16">
<div class="mr-24 flex-row justify-content-between align-items-center"> <div class="mr-24 flex-row justify-content-between align-items-center">
<div class="mr-8 f16 color-F53F3F"><i class="el-icon-video-pause"></i></div> <div class="mr-8 f16 color-F53F3F"><i class="el-icon-video-pause"></i></div>
<div class="mr-8">暂停拨打</div> <div class="mr-8">暂停拨打</div>
@ -572,10 +572,6 @@ export default {
let oh = document.documentElement.clientHeight; let oh = document.documentElement.clientHeight;
return oh - 57 - 48 - 38 -308 return oh - 57 - 48 - 38 -308
}, },
CommunicationcontentHeight() {
let oh = document.documentElement.clientHeight;
return oh - 57 - 48 - 38 -308
},
MediationrecordHeight() { MediationrecordHeight() {
let oh = document.documentElement.clientHeight; let oh = document.documentElement.clientHeight;
return oh - 57 - 128 return oh - 57 - 128
@ -712,7 +708,7 @@ export default {
} }
.top-wrap-btn-left{ .top-wrap-btn-left{
width: 55%; //width: 55%;
min-width: 1034px; min-width: 1034px;
.wrap-btn-left-dial{ .wrap-btn-left-dial{
background-color: #FFF2F0; background-color: #FFF2F0;

View File

@ -456,11 +456,9 @@ export default {
handler: function(newVal, oldVal) { handler: function(newVal, oldVal) {
// //
// console.log('Object changed!') // console.log('Object changed!')
if (this.portraitObj.id){ setTimeout(() => {
setTimeout(() => { this.handleSubmit()
this.handleSubmit() }, 800);
}, 500);
}
}, },
deep: true // deep: true //
} }
@ -608,10 +606,11 @@ export default {
// //
handleSubmit() { handleSubmit() {
// console.log(this.portraitObj,'this.mrObj') // console.log(this.portraitObj,'this.mrObj')
if(this.portraitObj.id == ''){return false} if(this.portraitObj.id){
api.debtorProfile_edit(this.portraitObj).then(res => { api.debtorProfile_edit(this.portraitObj).then(res => {
// this.getdebtorProfile() // this.getdebtorProfile()
}) })
}
} }
} }
}; };