修改bug
This commit is contained in:
parent
ebd3742730
commit
fc1d5119bc
@ -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>
|
||||
|
||||
@ -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
|
||||
|
||||
|
||||
@ -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();
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user