修改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> <el-table-column label="是否完成签字" show-overflow-tooltip>
<template slot-scope="scope"> <template slot-scope="scope">
<div class="flex-row align-items-center"> <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> </div>
</template> </template>
</el-table-column> </el-table-column>

View File

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

View File

@ -251,6 +251,8 @@
queryParamJZ: { queryParamJZ: {
pkgName:'',// pkgName:'',//
id:'', id:'',
allCase:true
}, },
caseprogressObj:{}, caseprogressObj:{},
queryParamFP: { queryParamFP: {
@ -363,7 +365,7 @@
}, },
// //
getCaseapkStatistics(){ 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) { if (!res.code) {
this.caseprogressObj = res; this.caseprogressObj = res;
} }
@ -449,7 +451,7 @@
}, },
// //
async drawCharts () { 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) { if (this.myEcharts) {
this.myEcharts.clear(); this.myEcharts.clear();
} }