修改bug

This commit is contained in:
liuxi 2025-01-21 11:30:31 +08:00
parent 8482ee426a
commit d799454a28
5 changed files with 7 additions and 4 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 390 KiB

After

Width:  |  Height:  |  Size: 325 KiB

View File

@ -283,7 +283,7 @@
</span>
<span class="cursor-pointer" @click="CaseTraceDialog = {activeName:'2',title:'电话呼叫记录',caseNo:scope.row.caseNo,caseId:scope.row.id}">
<p>外呼</p>
<p class="color-000"><a class="color-274ea4">接通{{scope.row.statistics.calling.success}}</a>/外呼{{scope.row.statistics.calling.calling}}</p>
<p class="color-000"><a class="color-274ea4">接通{{scope.row.statistics.calling.answered}}</a>/外呼{{scope.row.statistics.calling.total}}</p>
</span>
<span class="cursor-pointer" @click="CaseTraceDialog = {activeName:'3',title:'视频调解记录',caseNo:scope.row.caseNo,caseId:scope.row.id}">
<p>调解视频</p>

View File

@ -298,7 +298,7 @@
</span>
<span class="cursor-pointer" @click="CaseTraceDialog = {activeName:'2',title:'电话呼叫记录',caseNo:scope.row.caseNo,caseId:scope.row.id}">
<p>外呼</p>
<p class="color-000"><a class="color-274ea4">接通{{scope.row.statistics.calling.success}}</a>/外呼{{scope.row.statistics.calling.calling}}</p>
<p class="color-000"><a class="color-274ea4">接通{{scope.row.statistics.calling.answered}}</a>/外呼{{scope.row.statistics.calling.total}}</p>
</span>
<span class="cursor-pointer" @click="CaseTraceDialog = {activeName:'3',title:'视频调解记录',caseNo:scope.row.caseNo,caseId:scope.row.id}">
<p>调解视频</p>

View File

@ -404,8 +404,8 @@
show: false
},
data: [
{ value: this.mediation_success_rate.mediateFail, name: '调解失败' },
{ value: this.mediation_success_rate.mediateSuccess, name: '调解成功' },
{ value: this.mediation_success_rate.mediateFail, name: '调解失败',itemStyle:{color:'#FFE7E0'} },
{ value: this.mediation_success_rate.mediateSuccess, name: '调解成功' ,itemStyle:{color:'#E4F3CE'}},
]
}
]
@ -426,6 +426,7 @@
span{font-size:28px;color: #4E5969;}
}
.work-main{
height: 971px;
background-color: #f6f4f4;
border-radius: 15px;
margin-top: -10px;

View File

@ -289,6 +289,7 @@ import { color } from "echarts";
// drawer
leftContentHeight(){
let oh = document.documentElement.clientHeight;
if(oh > 971){oh = 971}
return oh-256
}
@ -487,6 +488,7 @@ import { color } from "echarts";
span{font-size:28px;color: #4E5969;}
}
.work-main{
height: 971px;
background-color: #f6f4f4;
border-radius: 15px;
margin-top: -10px;