|
|
@ -74,7 +74,7 @@ |
|
|
|
</div> |
|
|
|
<div class="div_room"> |
|
|
|
<div style="width: 18%; display: flex; justify-content: center; flex-direction: column; align-items: center;"> |
|
|
|
<div style="font-size: 16px; margin-top: 20px">派件/派件</div> |
|
|
|
<div style="font-size: 16px; margin-top: 20px">收件/派件</div> |
|
|
|
<div class="item" @click="onEventNum()"> |
|
|
|
<div class="item_category"> |
|
|
|
<img src="./img/eventSumNum.png" alt /> |
|
|
@ -258,13 +258,25 @@ |
|
|
|
<el-table-column prop="sensitiveTotal" align="center" label="敏感渠道来源件数" |
|
|
|
:show-overflow-tooltip="true"></el-table-column> |
|
|
|
<el-table-column fixed="right" prop="total" align="center" label="响应率" :show-overflow-tooltip="true"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span >{{scope.row.total?scope.row.total+'%':0 }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column fixed="right" prop="responseRate" align="center" label="按时办结率" |
|
|
|
:show-overflow-tooltip="true"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span >{{scope.row.responseRate?scope.row.responseRate+'%':0 }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column fixed="right" prop="resolveRate" align="center" label="解决率" :show-overflow-tooltip="true"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span >{{scope.row.resolveRate?scope.row.resolveRate+'%':0 }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column fixed="right" prop="satisfiedRate" align="center" label="满意率" :show-overflow-tooltip="true"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span >{{scope.row.satisfiedRate?scope.row.satisfiedRate+'%':0 }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
</el-table> |
|
|
|
</div> |
|
|
@ -306,13 +318,25 @@ |
|
|
|
<el-table-column prop="sensitiveTotal" align="center" label="敏感渠道来源件数" |
|
|
|
:show-overflow-tooltip="true"></el-table-column> |
|
|
|
<el-table-column fixed="right" prop="total" align="center" label="响应率" :show-overflow-tooltip="true"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span >{{scope.row.total?scope.row.total+'%':0 }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column fixed="right" prop="responseRate" align="center" label="按时办结率" |
|
|
|
:show-overflow-tooltip="true"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span >{{scope.row.responseRate?scope.row.responseRate+'%':0 }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column fixed="right" prop="resolveRate" align="center" label="解决率" :show-overflow-tooltip="true"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span >{{scope.row.resolveRate?scope.row.resolveRate+'%':0 }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column fixed="right" prop="satisfiedRate" align="center" label="满意率" :show-overflow-tooltip="true"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span >{{scope.row.satisfiedRate?scope.row.satisfiedRate+'%':0 }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
</el-table> |
|
|
|
</div> |
|
|
|