|
|
|
@ -146,10 +146,14 @@ |
|
|
|
label="同级占比" |
|
|
|
sortable |
|
|
|
> |
|
|
|
<template slot-scope="scope"> |
|
|
|
{{ scope.row.proportion }}% |
|
|
|
</template> |
|
|
|
|
|
|
|
</el-table-column> |
|
|
|
</el-table> |
|
|
|
|
|
|
|
<div style="display: flex;justify-content: space-between;flex-direction:row;"> |
|
|
|
<div style="display: flex;justify-content: space-between;flex-direction:row; height:500px"> |
|
|
|
<div style="display: flex;justify-content: space-between;flex-direction:column;"> |
|
|
|
<h1 style="font-size: 24px; font-weight: bold;"> 部门科室工单量统计 </h1> |
|
|
|
<el-table :data="departmentList" height="250" border class="m-table-item" style="width: 100%"> |
|
|
|
@ -214,7 +218,7 @@ |
|
|
|
<div> |
|
|
|
<h2 style="font-size: 20px; font-weight: bold;"> ➤ 同一人员重复投诉</h2> |
|
|
|
</div> |
|
|
|
|
|
|
|
<el-table> |
|
|
|
<el-table-column label="序号" fixed="left" type="index" align="center" width="50" /> |
|
|
|
<el-table-column prop="mobile" align="center" label="联系方式" :show-overflow-tooltip="true"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
@ -667,16 +671,16 @@ export default { |
|
|
|
...mapGetters(["clientHeight", "iframeHeight"]), |
|
|
|
}, |
|
|
|
watch: {}, |
|
|
|
async mounted() { |
|
|
|
mounted() { |
|
|
|
this.user = this.$store.state.user; |
|
|
|
this.agencyId = this.user.agencyId; |
|
|
|
await this.getOrgData(); |
|
|
|
this.getOrgData(); |
|
|
|
this.agencyLevel = localStorage.getItem("level", this.orgData.level); |
|
|
|
await this.getTableData(); |
|
|
|
await this.initEcharts(); |
|
|
|
await this.EventCategoryAnalysis(); |
|
|
|
await this.EventCate(); |
|
|
|
await this.getCategoryTree() |
|
|
|
this.getTableData(); |
|
|
|
// this.initEcharts(); |
|
|
|
this.EventCategoryAnalysis(); |
|
|
|
this.EventCate(); |
|
|
|
this.getCategoryTree() |
|
|
|
}, |
|
|
|
methods: { |
|
|
|
calculateRowspan(item) { |
|
|
|
@ -827,15 +831,15 @@ export default { |
|
|
|
}, |
|
|
|
|
|
|
|
// 搜索事件 |
|
|
|
async handleSearch(val) { |
|
|
|
handleSearch(val) { |
|
|
|
console.log(this.formData); |
|
|
|
// 清空数据 |
|
|
|
this.cleanReportData(); |
|
|
|
await this.getTableData(); |
|
|
|
await this.initEcharts(); |
|
|
|
await this.EventCategoryAnalysis(); |
|
|
|
await this.EventCate(); |
|
|
|
await this.getCategoryTree() |
|
|
|
this.getTableData(); |
|
|
|
// await this.initEcharts(); |
|
|
|
this.EventCategoryAnalysis(); |
|
|
|
this.EventCate(); |
|
|
|
this.getCategoryTree() |
|
|
|
}, |
|
|
|
//事件类型统计 |
|
|
|
async getCategoryTree(){ |
|
|
|
|