diff --git a/src/pages/case-management/detail/index.vue b/src/pages/case-management/detail/index.vue
index fef859b..38fecdf 100644
--- a/src/pages/case-management/detail/index.vue
+++ b/src/pages/case-management/detail/index.vue
@@ -368,7 +368,7 @@
- {{ scope.row.signStatus == 2 ? '是':'否' }}
+ {{ (scope.row.signStatus != null && scope.row.signStatus.code == 3) ? '是':'否' }}
diff --git a/src/pages/mediation-page/components/LayoutContentNew.vue b/src/pages/mediation-page/components/LayoutContentNew.vue
index 6f32b3d..8488ae0 100644
--- a/src/pages/mediation-page/components/LayoutContentNew.vue
+++ b/src/pages/mediation-page/components/LayoutContentNew.vue
@@ -192,8 +192,7 @@
-
-
+
@@ -455,6 +454,7 @@ export default {
},
},
async created() {
+
this.mediaterecordpm.caseId = this.caseId
this.eventDialog.caseId = this.caseId
diff --git a/src/pages/workbench/index.vue b/src/pages/workbench/index.vue
index 4bc2734..7b8e264 100644
--- a/src/pages/workbench/index.vue
+++ b/src/pages/workbench/index.vue
@@ -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();
}