service_area_check_statistics.html 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. <script src="/js/statistics/common_statistic.js?__inline"></script>
  2. <script src="/fwq/js/statistics/service_area_check_statistics.js">
  3. </script>
  4. <style type="text/css">
  5. table td,
  6. table th {
  7. text-align: center;
  8. padding: 10px;
  9. border: 1px solid #d9d9d9
  10. }
  11. .table-title {
  12. line-height: 50px;
  13. text-align: center;
  14. }
  15. .table-title span {
  16. font-size: 22px;
  17. color: #333;
  18. }
  19. .table-head {
  20. background-color: #EBF3FD;
  21. margin-top: 10px;
  22. width: 100%;
  23. }
  24. .table-head table {
  25. border: 1px solid #C7C6C5;
  26. }
  27. #scrollTable table {
  28. border: 1px solid #C7C6C5;
  29. }
  30. .table-head table tr th {
  31. font-size: 12px;
  32. color: #333;
  33. text-align: center;
  34. border: 1px solid #C7C6C5;
  35. }
  36. .table-tbody tr td {
  37. height: 43px;
  38. }
  39. table {
  40. border-color: #d9d9d9;
  41. }
  42. .div-score {
  43. float: left;
  44. padding-top: 6px;
  45. }
  46. .special-style td {
  47. border: 1px solid #c7c6c5;
  48. }
  49. </style>
  50. <div class="container-fluid ">
  51. <div class="row">
  52. <label class="col-sm-1" style="line-height:30px;width:80px">开始月</label>
  53. <div class="div-month col-sm-1">
  54. <input id="month_date_from" class="form-control form-date" type="text" placeholder="请选择" style="height:30px;">
  55. </div>
  56. <label class="col-sm-1" style="line-height:30px;width:80px">结束月</label>
  57. <div class="div-month col-sm-1">
  58. <input id="month_date_to" class="form-control form-date " type="text " placeholder="请选择 " style="height:30px; ">
  59. </div>
  60. <label class="col-sm-1" style="line-height:30px;width:80px">连续月数</label>
  61. <div class="div-month col-sm-2">
  62. <input id="month_number" type="number" placeholder="请输入0以上的整数" style="height:30px;padding:5px " value="3" />
  63. </div>
  64. <div class="form-group col-sm-3">
  65. <label for="exampleInputAccount1" class="col-sm-4" style="line-height:30px;width:80px">得分区间</label>
  66. <div class="col-sm-3">
  67. <input type="text" id="start-score" class="form-control form-date" value="985">
  68. </div>
  69. <div class="to-score col-sm-2" style="padding-top: 6px;text-align:center;width:10px"><label> - </label></div>
  70. <div class="col-sm-3">
  71. <input type="text" id="end-score" class="form-control form-date" value="1000">
  72. </div>
  73. </div>
  74. <div class="col-sm-2 "><button class="btn btn-info2 col-sm-6 query-company " id="searchbtn">查询</button></div>
  75. </div>
  76. </div>
  77. <div class="row ">
  78. <div class="datatable" data-checkable="false" style="margin-bottom: 0px;margin-right:10px; background: #ffffff00;" data-sortable="false">
  79. <!-- <label style="margin: 0;">共查询到 <span id="totlapeople" >0</span> 人</label> -->
  80. <div class="table-head">
  81. <table border="0" width="100%" align="center" style="margin-right:10px;">
  82. <thead class="table-thead" align="center">
  83. <tr>
  84. <th width="5%">序号</th>
  85. <!-- <th width="10%">工号</th> -->
  86. <th width="15%">服务区</th>
  87. <!-- <th width="10%">姓名</th> -->
  88. <th width="60%">满足条件月份</th>
  89. </tr>
  90. </thead>
  91. </table>
  92. </div>
  93. <!-- 使用一个div来显示数据表格 -->
  94. <div id="scrollTable" style="height:500px;overflow:scroll; margin-right: -10px;">
  95. <table style="border-top:0" border="0" width="100%" align="center" id="table">
  96. <tbody class="table-tbody" style="background:white; " align="center">
  97. </tbody>
  98. </table>
  99. </div>
  100. </div>
  101. </div>
  102. </div>