operation_management_integration.html 3.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <!--服务区-营运管理综合检查情况统计-->
  2. <script src="/fwq/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" ><table border="1" width="100%" height="90px" align="center">
  29. <thead>
  30. <tr>
  31. <!--<th rowspan="3" width="6%">排名</th><th rowspan="3" width="6%">道管</th>-->
  32. <th rowspan="3" width="8%">排名</th>
  33. <!--<th rowspan="3" width="6%">道管内排名</th>-->
  34. <th rowspan="3" width="8%">服务区</th><th colspan="4" width="24%" height="40px">温馨服务</th>
  35. <th colspan="2" width="12%" height="40px">现场检查</th><th rowspan="3" width="8%">总平均扣分</th>
  36. <th rowspan="3" width="8%">平均得分</th>
  37. </tr>
  38. <tr>
  39. <th colspan="2">公司检查</th><th colspan="2">第三方暗访</th>
  40. <th rowspan="2" width="54px">受检次数</th><th rowspan="2" width="54px">扣分合计</th>
  41. </tr>
  42. <tr>
  43. <th width="54px">受检次数</th><th width="54px">扣分合计</th>
  44. <th width="54px">受检次数</th><th width="54px">扣分合计</th>
  45. </tr>
  46. </thead>
  47. <!-- <tbody class="table-tbody" style="background:white" align="center">
  48. </tbody> -->
  49. </table></div>
  50. </div>
  51. <div id="scrollTable" style="height:300px;overflow:scroll;margin-right:-10px;">
  52. <div class="table-head" style="margin:0px;">
  53. <table border="1" width="100%" height="90px" align="center" style="border-top:0px;">
  54. <tbody class="table-tbody" style="background:white" align="center">
  55. </tbody>
  56. </table></div>
  57. </div>
  58. </div>
  59. </div>
  60. <script>
  61. $(document).ready(function() {
  62. // 设置滚动表格的高度
  63. $("#scrollTable").height($(window).height() - 360);
  64. // 仅选择日期
  65. $.jeDate("#start-time", {
  66. isinitVal: true,
  67. format: 'YYYY/MM' // 分隔符可以任意定义,该例子表示只显示年月
  68. });
  69. $("#start-time").val(getCurrentTimeFormat());
  70. initQueryType();
  71. });
  72. </script>