Newer
Older
XuZhouCallCenterFront / src / views / statistic / callStatistic / allStatistic.vue
StephanieGitHub on 25 Apr 2020 1 KB MOD: 话务统计完善
<!--
 * @Description: 话务综合统计
 * @Author: 王晓颖
 * @Date: 2020-04-24
 -->
<template>
  <app-container>
    <!--呼入呼出统计-->
    <div class="monitor-title">话务综合统计</div>
    <call-statics/>
    <el-row :gutter="10">
      <el-col :span="12">
        <border-frame title="满意度统计">
          <satisfied-pie/>
        </border-frame>
      </el-col>
      <el-col :span="12">
        <border-frame title="接通率统计">
          <call-rate-pie/>
        </border-frame>
      </el-col>
    </el-row>
  </app-container>
</template>

<script>
import CallStatics from '../../monitor/realtimeMonitor/components/callStatics'
import AppContainer from '../../../components/layout/AppContainer'
import SatisfiedPie from './components/satisfiedPie'
import BorderFrame from '../../../components/frame/borderFrame'
import CallRatePie from './components/callRatePie'
export default {
  name: 'AllStatistic',
  components: { CallRatePie, BorderFrame, SatisfiedPie, AppContainer, CallStatics }
}
</script>

<style rel="stylesheet/scss" lang="scss" scoped>
  .monitor-title{
    line-height: 2;
    font-size: 18px;
    font-weight: 700;
    padding: 5px;
    text-align: center;
  //background-color: #9accf3;
    background-color: #F5F7FA;
  }
</style>