dept_check_statistics.html 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. <script src="/js/statistics/common_statistic.js?__inline"></script>
  2. <script src="/js/statistics/dept_check_statistics.js"></script>
  3. <style type="text/css">
  4. table td,
  5. table th {
  6. text-align: center;
  7. padding: 10px;
  8. border: 1px solid #d9d9d9;
  9. word-wrap: break-word;
  10. padding: 0;
  11. padding-top: 10px;
  12. padding-bottom: 10px;
  13. }
  14. table {
  15. table-layout: fixed
  16. }
  17. .table-title {
  18. line-height: 50px;
  19. text-align: center;
  20. }
  21. .table-title span {
  22. font-size: 22px;
  23. color: #333;
  24. }
  25. .table-head th {
  26. border-color: #C7C6C5;
  27. background-color: #d2d6de;
  28. }
  29. .datatable {
  30. background-color: rgba(0, 0, 0, 0)
  31. }
  32. #table {
  33. background-color: #fff
  34. }
  35. .tb {
  36. margin-left: auto;
  37. margin-right: auto;
  38. }
  39. </style>
  40. <div class="container-fluid ">
  41. <div class="row">
  42. <label class="col-sm-1" style="line-height:30px;width:80px">开始月</label>
  43. <div class="div-month col-sm-1">
  44. <input id="month_date_from" class="form-control form-date" type="text" placeholder="请选择" style="height:30px;">
  45. </div>
  46. <label class="col-sm-1" style="line-height:30px;width:80px">结束月</label>
  47. <div class="div-month col-sm-1">
  48. <input id="month_date_to" class="form-control form-date " type="text " placeholder="请选择 " style="height:30px; ">
  49. </div>
  50. <div class="col-sm-2 "><button class="btn btn-info2 col-sm-6 query-company " id="searchbtn">查询</button></div>
  51. <div class="col-sm-1">
  52. <button class="btn btn-primary " type="button" onclick="exportExcel()">导出Excel</button>
  53. </div>
  54. </div>
  55. </div>
  56. <div class="table-title"><span>营运管理提升综合成绩汇总表<span id="table_title"></span></span>
  57. </div>
  58. <div class="row">
  59. <div class="datatable" data-checkable="false" style="margin-bottom: 0px; overflow-x: scroll;overflow-y: hidden; background: #ffffff00;" data-sortable="false">
  60. <div class="tb" style="padding-right: 10px;">
  61. <table border="0" class="table-head" width="100%" align="center" id="table_h">
  62. </table>
  63. </div>
  64. <div class="tb" style="overflow-y: auto;height:500px;overflow-x: hidden;background:#fff">
  65. <table border="0" width="100%" align="center" id="table"></table>
  66. </div>
  67. <!-- 使用一个div来显示数据表格 -->
  68. <!-- <div id="scrollTable" style="height:500px;overflow:scroll; margin-right: -10px;">
  69. <table style="border-top:0;" border="0" width="100%" align="center" id="table" >
  70. <tbody class="table-tbody" style="background:white; " align="center">
  71. </tbody>
  72. </table>
  73. </div> -->
  74. </div>
  75. </div>
  76. </div>