Нет описания

sittingMonthWork.html 3.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>话务坐席月工作量</title>
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <script src="../Script/Common/huayi.load.js"></script>
  8. <script src="../Script/Common/huayi.config.js"></script>
  9. <link href="../css/reportCommon/Search.css" rel="stylesheet">
  10. <link href="../css/reportCommon/common.css" rel="stylesheet">
  11. <link rel="stylesheet" href="../css/bootstrap-select.css" />
  12. <link href="../css/init.css" rel="stylesheet" />
  13. <script src="../js/laydate/laydate.js"></script>
  14. <script src="../js/bootstrap-select.js"></script>
  15. <style>
  16. .th-inner{
  17. white-space: normal !important;
  18. }
  19. .seach-box ul li ul li{
  20. float: none;
  21. width: 100%;
  22. display: block;
  23. }
  24. </style>
  25. </head>
  26. <body class="gray-bg">
  27. <div class="wrapper wrapper-content animated fadeInRight">
  28. <div class="daoHang clearfix">
  29. <div class="dhLeft">
  30. <sapn>
  31. <i class="syIcon"></i>位置:
  32. <a href="javaScript:;" id="ReIndex">首页</a>&gt;
  33. <a href="javaScript:;">报表管理</a>&gt;
  34. <a href="" class="nowPosition">话务坐席月工作量</a>
  35. </sapn>
  36. </div>
  37. <div class="dhRight">
  38. <a href="" title="刷新"><i class="fa fa-refresh"></i></a>
  39. </div>
  40. </div>
  41. <div class="Content_box">
  42. <!--待处理/-->
  43. <div class="complain Shows">
  44. <div class="th-box">
  45. <div class="th-bar">
  46. <div class="seach-box">
  47. <ul>
  48. <li>
  49. 选择月份:
  50. <input class="photo x-color inputs laydate-icon" autocomplete="off" style="width: 220px;" type="text" id="startTimes" />
  51. </li>
  52. <li style="width: 360px;">
  53. <div style="width: 100px">选择坐席:</div>
  54. <select id="ZX" name="select" class="selectpicker show-tick form-control" style="width: 220px;" data-live-search="true">
  55. <option value="">请选择坐席</option>
  56. </select>
  57. </li>
  58. <li>
  59. <a class="sc_btn btns db">搜索</a>
  60. <a class="sc_btn btns export">导出</a>
  61. </li>
  62. </ul>
  63. </div>
  64. </div>
  65. </div>
  66. <ul class="nav nav-tabs ul_tab" role="tablist">
  67. <li class="active">
  68. <a>呼入</a>
  69. </li>
  70. <li>
  71. <a>呼出</a>
  72. </li>
  73. </ul>
  74. <div style="width: 100%;padding: 10px;">
  75. <table id="workorderlist" data-toggle="table"></table>
  76. </div>
  77. </div>
  78. </div>
  79. </div>
  80. <script src="../js/reportCommon/common.js"></script>
  81. <script>
  82. var columnsArray = [];
  83. var columnsWidth
  84. var apiUrl = "TotalTel/IncomingConnection"
  85. var zxSelectObj = {
  86. id:'ZX',
  87. apiUrl:'SeatMonitoring/GetList',
  88. params:{
  89. group:$("#userGroup").val()
  90. },
  91. selectValue:'F_UserCode',
  92. selectName:'F_UserName'
  93. }
  94. $(document).ready(function() {
  95. laydate.render({
  96. elem: '#startTimes',
  97. theme: '#00a1cb',
  98. type: 'month'
  99. });
  100. initTable()
  101. selectCommon(zxSelectObj)
  102. })
  103. function dataParam() {
  104. var obj = {
  105. date: $("#startTimes").val(),
  106. usercode: $("#ZX").val(),
  107. token: $.cookie("token")
  108. };
  109. return obj
  110. }
  111. $('.ul_tab li').click(function() {
  112. $(this).addClass("active").siblings().removeClass("active");
  113. var index = $(this).index();
  114. if(index === 0) {
  115. apiUrl = "TotalTel/IncomingConnection";
  116. } else if(index === 1) {
  117. apiUrl = "TotalTel/CallOutConnection";
  118. }
  119. initTable();
  120. })
  121. </script>
  122. </body>
  123. </html>