修改bug

This commit is contained in:
liuxi 2025-02-25 11:50:43 +08:00
parent ebd3742730
commit fc1d5119bc
3 changed files with 7 additions and 5 deletions

View File

@ -368,7 +368,7 @@
<el-table-column label="是否完成签字" show-overflow-tooltip>
<template slot-scope="scope">
<div class="flex-row align-items-center">
<span>{{ scope.row.signStatus == 2 ? '是':'否' }}</span>
<span>{{ (scope.row.signStatus != null && scope.row.signStatus.code == 3) ? '是':'否' }}</span>
</div>
</template>
</el-table-column>

View File

@ -192,8 +192,7 @@
<!-- 案件材料 -->
<div v-if="leftActive == 3" class="case-materials-person">
<caseMaterialLeft :caseId="caseId" />
<caseMaterialLeft :caseId="thisCaseInfo.id" />
</div>
<!-- 案件文书 -->
@ -455,6 +454,7 @@ export default {
},
},
async created() {
this.mediaterecordpm.caseId = this.caseId
this.eventDialog.caseId = this.caseId

View File

@ -251,6 +251,8 @@
queryParamJZ: {
pkgName:'',//
id:'',
allCase:true
},
caseprogressObj:{},
queryParamFP: {
@ -363,7 +365,7 @@
},
//
getCaseapkStatistics(){
workApi.getmy_case_pkg_statistics({id:this.queryParamJZ.id}).then(res => {
workApi.getmy_case_pkg_statistics({id:this.queryParamJZ.id,allCase:true}).then(res => {
if (!res.code) {
this.caseprogressObj = res;
}
@ -449,7 +451,7 @@
},
//
async drawCharts () {
this.mediation_success_rate = await workApi.getmy_case_pkg_statistics({id:this.queryParamCGL.id})
this.mediation_success_rate = await workApi.getmy_case_pkg_statistics({id:this.queryParamCGL.id,allCase:true})
if (this.myEcharts) {
this.myEcharts.clear();
}