| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <script src="Script/Common/huayi.load.js"></script>
- <script src="Script/Common/huayi.config.js"></script>
- <title>接通率和呼损率统计</title>
- <link rel="stylesheet" href="./css/init.css" />
- <style>
- .clearfix:after {
- content: "";
- display: block;
- clear: both;
- }
-
- .husun {
- font-size: 12px;
- }
-
- .th-top {
- background: #f3f3f4;
- height: 60px;
- padding: 10px 20px;
- }
-
- .topCon {
- float: right;
- margin-right: 45px;
- }
-
- .th-content h2 {
- font-size: 18px;
- margin-bottom: 20px;
- }
-
- .topCon input {
- width: 128px;
- padding: 2px 2PX 2PX 10PX;
- height: 28px;
- border: 1px solid #ebebeb;
- color: #1ab394;
- outline: none;
- vertical-align: middle;
- }
-
- .th-content {
- width: 90%;
- margin: 0 auto;
- }
-
- .th-table table thead tr td {
- background: #1ab394;
- color: #fff;
- }
-
- .th-table {
- display: none;
- }
- </style>
- </head>
- <body class="gray-bg" style="background: #fefefe;">
- <div class="husun">
- <div class="daoHang clearfix">
- <div class="dhLeft">
- <sapn><i class="syIcon"></i>位置:
- <a id="ReIndex" href="javaScript:;">首页</a>>
- <a href="javaScript:;">报表分析</a>>
- <a href="javaScript:;">话务运营分析</a>>
- <a href="" style="color: #000;">接通呼损统计</a>
- </sapn>
- </div>
- </div>
- <div class="th-top clearfix">
- <div class="topCon">
- 开始时间:
- <input type="text" class="laydate-icon" id="startTime" /> 结束时间:
- <input type="text" class="laydate-icon" id="endTime" />
- <button class="btns sear">搜索</button>
- <a class="btns export">导出</a>
- </div>
- </div>
- <ul class="nav nav-tabs th-tab">
- <li role="presentation" class="active">
- <a href="javascript:;">图形</a>
- </li>
- <li role="presentation">
- <a href="javascript:;">表格</a>
- </li>
- </ul>
- <div class="th-content">
- <div class="th-tu">
- <h2 style="text-align: center;">服务热线-接通率和呼损率统计</h2>
- <div id="tabtu" style="width: 100%; height: 600px;"></div>
- </div>
- <div class="th-table">
- <h2 style="text-align: center;">服务热线-接通率和呼损率统计</h2>
- <table class="table table-bordered text-center table-hover thTable" style="width: 100%;">
- <thead>
- <tr>
- </tr>
- </thead>
- <tbody class="tbody">
- </tbody>
- </table>
- </div>
- </div>
- </div>
- <script src="./js/jquery.min.js?v=2.1.4"></script>
- <script src="./js/bootstrap.min.js?v=3.3.6"></script>
- <script src="./js/jquery.cookie.js"></script>
- <script src="./js/laydate/laydate.js"></script>
- <script src="./js/echarts.common.min.js"></script>
- <script>
- $(function() {
- var token = $.cookie("token"),
- stime = helper.DateFormat.getNowDate(), //初始化当前年份
- endtime = stime, //结束年份
- tabtu,
- xzhou,
- jtCount, //接通次数
- hsCount, //呼损次数
- jtPercent, //接通率
- hsPercent; //呼损率
- laydate.render({
- elem: '#startTime',
- calendar: true,
- theme: '#1ab394',
- value: stime,
- });
- laydate.render({
- elem: '#endTime',
- calendar: true,
- theme: '#1ab394',
- value: endtime,
- });
- //tab切换
- $('.th-tab li').click(function() {
- $(this).addClass('active')
- .siblings().removeClass('active');
- var index = $(this).index();
- $('.th-content >div').eq(index).show()
- .siblings().hide();
- })
- $(document).ready(function() {
- //图形
- tabtu = echarts.init(document.getElementById('tabtu'));
- option = {
- tooltip: {
- trigger: 'axis',
- },
- legend: {
- data: ['接通次数', '呼损次数', '接通率', '呼损率'],
- bottom: 0
- },
- xAxis: [{
- type: 'category',
- data: xzhou,
- axisPointer: {
- type: ''
- },
- axisLabel: {
- rotate: 30,
- interval: 0
- }
- }],
- yAxis: [{
- type: 'value',
- name: '通话次数(通)',
- nameLocation: 'middle',
- nameGap: 40,
- // min: 0,
- // max:300,
- interval: 50,
- axisLabel: {
- formatter: '{value} '
- }
- },
- {
- type: 'value',
- name: '百分比(%)',
- nameLocation: 'middle',
- nameGap: 35,
- min: 0,
- max: 100,
- interval: 10,
- axisLabel: {
- formatter: '{value} '
- }
- }
- ],
- series: [{
- type: 'bar',
- name: '接通次数',
- data: jtCount
- },
- {
- type: 'bar',
- name: '呼损次数',
- data: hsCount
- },
- {
- type: 'line',
- name: '接通率',
- data: jtPercent,
- yAxisIndex: 1,
- },
- {
- type: 'line',
- name: '呼损率',
- data: hsPercent,
- yAxisIndex: 1,
- }
- ],
- color: ['#1ab394', '#fbbe5b', '#88ebc4', '#fa957f']
- };
- Ajax(stime, endtime);
- tabtu.setOption(option);
- })
- //表头数据
- $.ajax({
- type: "get",
- url: huayi.config.callcenter_url + "SwitchedlossCall/GetColumnList",
- async: true,
- dataType: 'json',
- data: {
- token: token
- },
- success: function(res) {
- var con = res.data;
- console.log(con);
- for(var i = 0; i < con.length; i++) {
- $('<td>' + con[i] + '</td>').appendTo('.thTable thead tr')
- }
- }
- });
- //搜索事件
- $(".sear").click(function() {
- $('.thTable tbody').html('');
- stime = $("#startTime").val();
- endtime = $("#endTime").val();
- Ajax(stime, endtime);
- tabtu.setOption(option);
- });
- //导出
- $('.export').click(function() {
- dcexcel(this);
- })
- function dcexcel(obj) {
- var url = huayi.config.callcenter_url + "SwitchedlossCall/ExptList?token=" + $.cookie("token");
- url += "&stime=" + $("#startTime").val() + "&endtime=" + $("#endTime").val();
- obj.href = url;
- }
- //表格数据
- function Ajax(stime, endtime) {
- var jtshu = [],
- hsshu = [],
- jtlv = [],
- hslv = [],
- riqi = [];
- $.ajax({
- type: 'get',
- url: huayi.config.callcenter_url + 'SwitchedlossCall/GetDataList',
- async: false,
- dataType: 'json',
- data: {
- token: token,
- stime: stime,
- endtime: endtime
- },
- success: function(data) {
- var tbodyCon = data.data;
- $('.thTable tbody').html('');
- console.log(tbodyCon);
- for(var j = 0; j < tbodyCon.length; j++) {
- $('<tr><td>' + tbodyCon[j].日期 + '</td><td>' + tbodyCon[j].接通次数 + '</td><td>' + tbodyCon[j].呼损次数 + '</td><td>' + tbodyCon[j].接通率 + '</td><td>' + tbodyCon[j].呼损率 + '</td></tr>').appendTo('.thTable tbody');
- riqi.push(tbodyCon[j].日期)
- jtshu.push(tbodyCon[j].坐席名称);
- hsshu.push(tbodyCon[j].呼入次数);
- jtlv.push(tbodyCon[j].呼出次数);
- hslv.push(tbodyCon[j].通话总时长);
- }
- }
- });
- xzhou = riqi;
- jtCount = jtshu;
- hsCount = hsshu;
- jtPercent = jtlv;
- hsPercent = hslv;
- console.log(xzhou);
- option.xAxis[0].data = xzhou;
- option.series[0].data = jtCount;
- option.series[1].data = hsCount;
- option.series[2].data = jtPercent;
- option.series[3].data = hsPercent;
- }
- })
- </script>
- </body>
- </html>
|