| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <link rel="stylesheet" href="js/select2/css/select2.min.css" />
- <script src="Script/Common/huayi.load.js"></script>
- <script src="Script/Common/huayi.config.js"></script>
- <title>接通率和呼损率统计</title>
- <!--[if lt IE 9]>
- <meta http-equiv="refresh" content="0;ie.html" />
- <![endif]-->
- <link rel="stylesheet" href="./js/layui-v2.5.5/layui/css/layui.css" />
- <link rel="stylesheet" href="./css/init.css" />
- <style>
- .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;
- }
-
- .th-content {
- width: 90%;
- margin: 20px auto 0 auto;
- }
-
- .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 class="dhRight">
- <a href="#" title="刷新"><i class="fa fa-refresh"></i></a>
- </div>
- </div>
- <div class="th-top clearfix">
- <div class="topCon">
- <div class="form-inline th-bar clearfix">
- <div class="time-box form-group">
- <i class="tub fa fa-calendar"></i>
- <input class="form-control" type="text" id="startTime" placeholder="请选择起止时间" style="width: 228px;">
- </div>
- <!--<div class="time-box form-group">
- 部门:
- <select id="bumen">
- <option value="">请选择</option>
- </select>
- </div>-->
- <div class="form-group tool_bars pull-right">
- <button class="btns sear">搜索</button>
- <a class="btns export">导出</a>
- </div>
- </div>
- </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="layui-hide" id="t_callTotal" lay-filter="layuitableTotal"></table>
- </div>
- </div>
- </div>
- <script src="./js/layui-v2.5.5/layui/layui.js"></script>
- <script src="./js/select2/js/select2.min.js"></script>
- <script src="./js/echarts.common.min.js"></script>
- <script>
- var token = $.cookie("token");
- var myChartp;
- var stime = ''; //开始时间
- var endtime = ''; //结束时间
- var tabIndex = 0;
- $(function() {
- layui.use('laydate', function() {
- var laydate = layui.laydate;
- //日期
- laydate.render({
- elem: '#startTime',
- range: '~',
- theme: '#1ab394',
- calendar: 'true'
- });
- });
-
- //获取当前日期
- var myDate = new Date();
- var nowY = myDate.getFullYear();
- var nowM = myDate.getMonth()+1;
- var nowD = myDate.getDate();
- var enddate = nowY+"-"+(nowM<10 ? "0" + nowM : nowM)+"-"+(nowD<10 ? "0"+ nowD : nowD);//当前日期
- //获取30天前日期
- var lw = new Date(myDate - 1000 * 60 * 60 * 24 * 31);//最后一个数字30可改,30天的意思
- var lastY = lw.getFullYear();
- var lastM = lw.getMonth()+1;
- var lastD = lw.getDate();
- var startdate=lastY+"-"+(lastM<10 ? "0" + lastM : lastM)+"-"+(lastD<10 ? "0"+ lastD : lastD);//三十天之前日期
- $("#startTime").val(startdate + " ~ " + enddate);
-
- //helper.getDropList.getDept($('#bumen'));//获取部门
- //tab切换
- $('.th-tab li').click(function() {
- $(this).addClass('active')
- .siblings().removeClass('active');
- tabIndex = $(this).index();
- $('.th-content >div').eq(tabIndex).show()
- .siblings().hide();
- if(tabIndex == 1) {
- $('#search_dept').css('display', 'none');
- } else {
- $('#search_dept').css('display', 'inline-block');
- }
-
- loadDatas();
- });
- //搜索事件
- $(".sear").click(function() {
- stime = $('#startTime').val() && $('#startTime').val().split(' ~ ')[0];
- endtime = $('#startTime').val() && $('#startTime').val().split(' ~ ')[1];
- loadDatas();
- });
- //按enter搜索
- document.onkeydown = function (e) { // 回车提交表单
- var theEvent = window.event || e;
- var code = theEvent.keyCode || theEvent.which || theEvent.charCode;
- if (code == 13) {
- stime = $('#startTime').val() && $('#startTime').val().split(' ~ ')[0];
- endtime = $('#startTime').val() && $('#startTime').val().split(' ~ ')[1];
- loadDatas();
- }
- }
-
- //导出功能
- $('.export').click(function() {
- stime = $('#startTime').val() && $('#startTime').val().split(' ~ ')[0];
- endtime = $('#startTime').val() && $('#startTime').val().split(' ~ ')[1];
- dcexcel(this);
- });
- myChartp = echarts.init(document.getElementById('tabtu'));
- myChartp.clear();
- myChartp.showLoading();
- option = {
- tooltip: {
- trigger: 'axis',
- },
- legend: {
- data: ['接通次数', '呼损次数', '接通率', '呼损率'],
- bottom: 60
- },
- grid: {
- bottom: 180
- },
- dataZoom: [{ // 这个dataZoom组件,默认控制x轴。
- type: 'slider', // 这个 dataZoom 组件是 slider 型 dataZoom 组件
- xAxisIndex: 0,
- start: 0, // 左边在 0% 的位置。
- end: 100, // 右边在 100% 的位置。
- bottom: 100,
- },
- ],
- xAxis: [{
- type: 'category',
- data: [],
- axisPointer: {
- type: ''
- },
- axisLabel: {
- rotate: 30,
- interval: 0
- }
- }],
- yAxis: [{
- type: 'value',
- name: '通话次数(次)',
- nameLocation: 'end',
- nameGap: 40,
- // min: 0,
- // max:300,
- interval: 50,
- axisLabel: {
- formatter: '{value} '
- }
- },
- {
- type: 'value',
- name: '百分比(%)',
- nameLocation: 'end',
- nameGap: 35,
- min: 0,
- max: 100,
- interval: 10,
- axisLabel: {
- formatter: '{value} '
- }
- }
- ],
- series: [{
- type: 'bar',
- name: '接通次数',
- data: []
- },
- {
- type: 'bar',
- name: '呼损次数',
- data: []
- },
- {
- type: 'line',
- name: '接通率',
- data: [],
- yAxisIndex: 1,
- },
- {
- type: 'line',
- name: '呼损率',
- data: [],
- yAxisIndex: 1,
- }
- ],
- color: ['#1ab394', '#fbbe5b', '#88ebc4', '#fa957f']
- }
- // 使用刚指定的配置项和数据显示图表。
- myChartp.setOption(option);
- loadDatas();
- });
- //加载表格
- function getTableDataList() {
- var loadindex = layer.load();
- layui.use('table', function() {
- var table = layui.table;
- //方法级渲染
- table.render({
- elem: '#t_callTotal',
- url: huayi.config.callcenter_url + "SwitchedlossCall/GetDataList",
- method: 'get', //如果无需自定义HTTP类型,可不加该参数
- skin: 'row', //line (行边框风格) row (列边框风格) nob (无边框风格)
- even: true, //开启隔行背景
- size: 'lg', //sm,lg尺寸的表格
- where: {
- stime: stime,
- endtime: endtime,
- //dpt: $('#bumen').val(),
- token: token
- }, //如果无需传递额外参数,可不加该参数
- //request: {}, //如果无需自定义请求参数,可不加该参数
- response: {
- statusName: 'state', //数据状态的字段名称,默认:code
- statusCode: 'success', //成功的状态码,默认:0
- msgName: 'message', //状态信息的字段名称,默认:msg
- //countName: 'total', //数据总数的字段名称,默认:count
- //dataName: 'rows', //数据列表的字段名称,默认:data
- }, //如果无需自定义数据响应名称,可不加该参数
- cols: [
- [{
- field: '日期',
- title: '日期',
- align: 'center',
- fixed: true,
- sort: true,
- width: 150,
- }, {
- field: '接通次数',
- title: '接通次数',
- align: 'center',
- width: '',
- },
- {
- field: '呼损次数',
- title: '呼损次数',
- align: 'center',
- width: '',
- },
- {
- field: '接通率',
- title: '接通率(%)',
- align: 'center',
- width: '',
- },
- {
- field: '呼损率',
- title: '呼损率(%)',
- align: 'center',
- width: '',
- },
- ]
- ],
- height: 'full-230',
- done:function(){
- layer.close(loadindex);
- },
- });
- //监听行单击事件
- table.on('row(layuitableTotal)', function(obj){
- console.log(obj.tr) //得到当前行元素对象
- console.log(obj.data) //得到当前行数据
- var time = obj.data.日期;
- console.log("1231231231",time) //得到当前行数据
- //修改工单
- layer.open({
- type: 2,
- title: '明细信息',
- maxmin: true, //开启最大化最小化按钮
- area: ['80%', '90%'],
- content: './ReportForm/callTotalStatisticsDayDetail.html?time=' + time,
- });
- });
- });
- }
- //获取数据
- function getDataLists() {
- $.ajax({
- type: "get",
- url: huayi.config.callcenter_url + "SwitchedlossCall/GetDataList",
- async: true,
- dataType: 'json',
- data: {
- stime: stime,
- endtime: endtime,
- //dpt: $('#bumen').val(),
- token: token,
- },
- success: function(data) {
- }
- })
- .then(function(data) {
- myChartp.hideLoading();
- if(data.state.toLowerCase() == "success") {
- var tbodyCon = data.data;
- //排序
- tbodyCon.sort(compare("日期"));
- // 填入数据
- if(tbodyCon) {
- myChartp.setOption({
- xAxis: {
- data: (function() {
- var res = [];
- for(var i = 0; i < tbodyCon.length; i++) {
- res.push(tbodyCon[i].日期);
- }
- return res;
- })(),
- },
- series: (function() {
- var sres = [],
- sres1 = [],
- sres2 = [],
- sres3 = [];
- var sobj = [{
- data: sres,
- },
- {
- data: sres1,
- },
- {
- data: sres2,
- },
- {
- data: sres3,
- },
- ];
- for(var i = 0; i < tbodyCon.length; i++) {
- sres.push(tbodyCon[i].接通次数);
- sres1.push(tbodyCon[i].呼损次数);
- sres2.push(tbodyCon[i].接通率);
- sres3.push(tbodyCon[i].呼损率);
- }
- return sobj;
- })(),
- });
- } else {
- $('#tabtu').html('<p class="text-center">暂无数据</p>');
- }
- } else {
- $('#tabtu').html('<p class="text-center">暂无数据</p>');
- }
- });
- }
- //导出
- function dcexcel(obj) {
- var url = huayi.config.callcenter_url + "SwitchedlossCall/ExptList?token=" + token;
- url += "&stime=" + stime + "&endtime=" + endtime; //+ "&dpt=" + $('#bumen').val();
- obj.href = url;
- }
- //定义一个比较器
- function compare(propertyName) {
- return function(object1, object2) {
- var value1 = object1[propertyName];
- var value2 = object2[propertyName];
- if(value2 < value1) {
- return 1;
- } else if(value2 > value1) {
- return -1;
- } else {
- return 0;
- }
- }
- }
-
- function loadDatas() {
- if(tabIndex == 0) {
- getDataLists(); //加载图形
- } else if(tabIndex == 1) {
- getTableDataList(); //加载表格
- }
- }
-
- </script>
- </body>
- </html>
|