operation_management_integration.html 4.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <script src="/js/statistics/operation_management_integration.js?__inline"></script>
  2. <link rel="stylesheet" type="text/css" href="/css/statistics/assess_situation.css?__inline">
  3. <div class="container-fluid ">
  4. <div class="form-div">
  5. <form class="form-horizontal">
  6. <div class="form-group">
  7. <div class="from-label"><label>查询日期</label></div>
  8. <div class="col-sm-3">
  9. <input type="text" id="start-time" class="form-control form-date" placeholder="开始日期">
  10. </div>
  11. <div class="col-sm-4">
  12. <input type="text" id="end-time" class="form-control form-date" placeholder="结束日期">
  13. </div>
  14. <div class="col-sm-5">
  15. <button class="btn btn-primary " type="button" onclick="queryTypeClick()">查询</button>
  16. </div>
  17. <div class="col-sm-6">
  18. <button class="btn btn-primary " type="button" onclick="exportExcel()" >导出Excel</button>
  19. </div>
  20. </div>
  21. </form>
  22. </div>
  23. <div class="table-title"><span>运营管理综合检查情况统计表</span></div>
  24. <div class="row">
  25. <!-- 使用一个div来显示数据表格 -->
  26. <div class="datatable" data-checkable="false" data-sortable="false" style="margin-bottom:0px;">
  27. <div class="table-head" ><table border="1" width="100%" height="90px" align="center">
  28. <thead>
  29. <tr>
  30. <th rowspan="3" width="6%">排名</th><th rowspan="3" width="6%">道管</th><th rowspan="3" width="6%">公司内排名</th><th rowspan="3" width="6%">道管内排名</th>
  31. <th rowspan="3" width="8%">站名</th><th rowspan="3" width="6%">收费值机岗位人数</th><th colspan="4" height="40px">温馨服务</th><th colspan="2" height="40px">特情操作</th>
  32. <th colspan="2" height="40px">现场检查</th><th colspan="2" height="40px">数据平台应用情况</th><th rowspan="3" width="6%">总平均扣分</th>
  33. <th rowspan="3" width="6%">平均得分</th>
  34. </tr>
  35. <tr>
  36. <th colspan="2">公司检查</th><th colspan="2">第三方暗访</th><th rowspan="2" width="54px">存在问题次数</th>
  37. <th rowspan="2" width="54px">扣分合计</th><th rowspan="2" width="54px">受检次数</th><th rowspan="2" width="54px">扣分合计</th>
  38. <th rowspan="2" width="54px">受检次数</th><th rowspan="2" width="54px">扣分合计</th>
  39. </tr>
  40. <tr>
  41. <th width="54px">受检次数</th><th width="54px">扣分合计</th>
  42. <th width="54px">受检次数</th><th width="54px">扣分合计</th>
  43. </tr>
  44. </thead>
  45. <!-- <tbody class="table-tbody" style="background:white" align="center">
  46. </tbody> -->
  47. </table></div>
  48. </div>
  49. <div id="scrollTable" style="height:300px;overflow:scroll;margin-right:-10px;">
  50. <div class="table-head" style="margin:0px;">
  51. <table border="1" width="100%" height="90px" align="center" style="border-top:0px;">
  52. <tbody class="table-tbody" style="background:white" align="center">
  53. </tbody>
  54. </table></div>
  55. </div>
  56. </div>
  57. </div>
  58. <script>
  59. $(document).ready(function() {
  60. // 设置滚动表格的高度
  61. $("#scrollTable").height($(window).height() - 360);
  62. // 仅选择日期
  63. $("#start-time").datetimepicker(
  64. {
  65. language: "zh-CN",
  66. weekStart: 1,
  67. todayBtn: 1,
  68. autoclose: 1,
  69. todayHighlight: 1,
  70. startView: 2,
  71. minView: 2,
  72. forceParse: 0,
  73. format: "yyyy-mm-dd"
  74. });
  75. // 仅选择日期
  76. $("#end-time").datetimepicker(
  77. {
  78. language: "zh-CN",
  79. weekStart: 1,
  80. todayBtn: 1,
  81. autoclose: 1,
  82. todayHighlight: 1,
  83. startView: 2,
  84. minView: 2,
  85. forceParse: 0,
  86. format: "yyyy-mm-dd"
  87. });
  88. initQueryType();
  89. });
  90. </script>