修改工作台
This commit is contained in:
parent
13833e215c
commit
7b65210885
@ -103,7 +103,7 @@
|
|||||||
|
|
||||||
</div>
|
</div>
|
||||||
<span class="resultplan" v-if="mediation_success_rate.caseTotal > 0 ">{{ (mediation_success_rate.mediateSuccess/mediation_success_rate.caseTotal).toFixed(2) }} %</span>
|
<span class="resultplan" v-if="mediation_success_rate.caseTotal > 0 ">{{ (mediation_success_rate.mediateSuccess/mediation_success_rate.caseTotal).toFixed(2) }} %</span>
|
||||||
<span class="resultplan">0 %</span>
|
<span class="resultplan" v-else>0 %</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="flex-row justify-content-between">
|
<div class="flex-row justify-content-between">
|
||||||
<span class="flex-column align-items-center color-86909C"><a class="color-000 f16">{{mediation_success_rate.caseTotal}}</a><a>总案件数</a></span>
|
<span class="flex-column align-items-center color-86909C"><a class="color-000 f16">{{mediation_success_rate.caseTotal}}</a><a>总案件数</a></span>
|
||||||
@ -263,10 +263,9 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
this.getCaseapkList()
|
this.getCaseapkList()
|
||||||
this.drawCharts()
|
|
||||||
this.getstatisticcases()
|
this.getstatisticcases()
|
||||||
this.getstatistic_trace()
|
this.getstatistic_trace()
|
||||||
this.getCaseapkStatistics()
|
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
jumpUrl (url) {
|
jumpUrl (url) {
|
||||||
@ -288,7 +287,14 @@
|
|||||||
workApi.getmy_case_pkg({size:100,current:1}).then(res => {
|
workApi.getmy_case_pkg({size:100,current:1}).then(res => {
|
||||||
if (!res.code) {
|
if (!res.code) {
|
||||||
this.casePkOptions = res;
|
this.casePkOptions = res;
|
||||||
|
if(this.casePkOptions.length > 0 )
|
||||||
|
{
|
||||||
|
this.queryParamJZ.id = this.casePkOptions[0].id
|
||||||
|
this.queryParamCGL.id = this.casePkOptions[0].id
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
this.getCaseapkStatistics()
|
||||||
|
this.drawCharts()
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
// 待办汇总
|
// 待办汇总
|
||||||
|
|||||||
@ -77,7 +77,7 @@
|
|||||||
</el-select>
|
</el-select>
|
||||||
</span>
|
</span>
|
||||||
<span class="case-pk-btn ml-16" @click="handleImport"><i class="el-icon-upload2"></i>批量导入</span>
|
<span class="case-pk-btn ml-16" @click="handleImport"><i class="el-icon-upload2"></i>批量导入</span>
|
||||||
<span class="case-pk-btn"><i class="el-icon-plus"></i>添加案件</span>
|
<!-- <span class="case-pk-btn"><i class="el-icon-plus"></i>添加案件</span> -->
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
@ -144,7 +144,7 @@
|
|||||||
|
|
||||||
</div>
|
</div>
|
||||||
<span class="resultplan" v-if="mediation_success_rate.caseTotal > 0 ">{{ (mediation_success_rate.mediateSuccess/mediation_success_rate.caseTotal).toFixed(2) }} %</span>
|
<span class="resultplan" v-if="mediation_success_rate.caseTotal > 0 ">{{ (mediation_success_rate.mediateSuccess/mediation_success_rate.caseTotal).toFixed(2) }} %</span>
|
||||||
<span class="resultplan">0 %</span>
|
<span class="resultplan" v-else>0 %</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="flex-row justify-content-between">
|
<div class="flex-row justify-content-between">
|
||||||
<span class="flex-column align-items-center color-86909C"><a class="color-000 f16">{{mediation_success_rate.caseTotal}}</a><a>总案件数</a></span>
|
<span class="flex-column align-items-center color-86909C"><a class="color-000 f16">{{mediation_success_rate.caseTotal}}</a><a>总案件数</a></span>
|
||||||
@ -312,10 +312,8 @@ import { color } from "echarts";
|
|||||||
|
|
||||||
this.getCaseapkList()
|
this.getCaseapkList()
|
||||||
this.getCaseInfoList()
|
this.getCaseInfoList()
|
||||||
this.drawCharts()
|
|
||||||
this.getstatisticcases()
|
this.getstatisticcases()
|
||||||
this.getstatistic_trace()
|
this.getstatistic_trace()
|
||||||
this.getCaseapkStatistics()
|
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
jumpUrl (url) {
|
jumpUrl (url) {
|
||||||
@ -341,7 +339,15 @@ import { color } from "echarts";
|
|||||||
workApi.getmy_case_pkg({size:100,current:1}).then(res => {
|
workApi.getmy_case_pkg({size:100,current:1}).then(res => {
|
||||||
if (!res.code) {
|
if (!res.code) {
|
||||||
this.casePkOptions = res;
|
this.casePkOptions = res;
|
||||||
|
|
||||||
|
if(this.casePkOptions.length > 0 )
|
||||||
|
{
|
||||||
|
this.queryParamJZ.id = this.casePkOptions[0].id
|
||||||
|
this.queryParamCGL.id = this.casePkOptions[0].id
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
this.getCaseapkStatistics()
|
||||||
|
this.drawCharts()
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
// 列表数据
|
// 列表数据
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user