operation_management_integration.html 4.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <!--服务区-营运管理综合检查情况统计-->
  2. <script src="/qzd/js/statistics/operation_management_integration.js?__inline"></script>
  3. <link rel="stylesheet" type="text/css" href="/css/statistics/assess_situation.css?__inline">
  4. <div class="container-fluid ">
  5. <div class="form-div">
  6. <form class="form-horizontal">
  7. <div class="form-group">
  8. <div class="from-label"><label>查询日期</label></div>
  9. <div class="col-sm-2">
  10. <input type="text" id="start-time" class="form-control form-date" placeholder="选择月份">
  11. </div>
  12. <!-- <div class="col-sm-2">
  13. <input type="text" id="end-time" class="form-control form-date" placeholder="结束日期">
  14. </div> -->
  15. <div class="col-sm-1">
  16. <button class="btn btn-primary " type="button" onclick="queryTypeClick()">查询</button>
  17. </div>
  18. <div class="col-sm-1">
  19. <button class="btn btn-primary " type="button" onclick="exportExcel()">导出Excel</button>
  20. </div>
  21. </div>
  22. </form>
  23. </div>
  24. <div class="table-title"><span>运营管理综合检查情况统计表</span></div>
  25. <div class="row">
  26. <!-- 使用一个div来显示数据表格 -->
  27. <div class="datatable" data-checkable="false" data-sortable="false" style="margin-bottom:0px;">
  28. <div class="table-head">
  29. <table border="1" width="100%" height="90px" align="center">
  30. <thead>
  31. <tr>
  32. <!--<th rowspan="3" width="6%">排名</th><th rowspan="3" width="6%">道管</th>-->
  33. <th rowspan="3" width="8%">排名</th>
  34. <!--<th rowspan="3" width="6%">道管内排名</th>-->
  35. <th rowspan="3" width="8%">服务区</th>
  36. <th colspan="4" width="24%" height="40px">温馨服务</th>
  37. <th colspan="2" width="12%" height="40px">现场检查</th>
  38. <th rowspan="3" width="8%">总平均扣分</th>
  39. <th rowspan="3" width="8%">平均得分</th>
  40. </tr>
  41. <tr>
  42. <th colspan="2">公司检查</th>
  43. <th colspan="2">第三方暗访</th>
  44. <th rowspan="2" width="54px">受检次数</th>
  45. <th rowspan="2" width="54px">扣分合计</th>
  46. </tr>
  47. <tr>
  48. <th width="54px">受检次数</th>
  49. <th width="54px">扣分合计</th>
  50. <th width="54px">受检次数</th>
  51. <th width="54px">扣分合计</th>
  52. </tr>
  53. </thead>
  54. <!-- <tbody class="table-tbody" style="background:white" align="center">
  55. </tbody> -->
  56. </table>
  57. </div>
  58. </div>
  59. <div id="scrollTable" style="height:300px;overflow:scroll;margin-right:-10px;">
  60. <div class="table-head" style="margin:0px;">
  61. <table border="1" width="100%" height="90px" align="center" style="border-top:0px;">
  62. <tbody class="table-tbody" style="background:white" align="center">
  63. </tbody>
  64. </table>
  65. </div>
  66. </div>
  67. </div>
  68. </div>
  69. <script>
  70. $(document).ready(function() {
  71. // 设置滚动表格的高度
  72. $("#scrollTable").height($(window).height() - 360);
  73. // 仅选择日期
  74. $.jeDate("#start-time", {
  75. isinitVal: true,
  76. format: 'YYYY/MM' // 分隔符可以任意定义,该例子表示只显示年月
  77. });
  78. $("#start-time").val(getCurrentTimeFormat());
  79. initQueryType();
  80. });
  81. </script>