| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- <script src="/js/statistics/common_statistic.js?__inline"></script>
- <script src="/js/statistics/dept_check_statistics.js"></script>
- <style type="text/css">
- table td,
- table th {
- text-align: center;
- padding: 10px;
- border: 1px solid #d9d9d9;
- word-wrap: break-word;
- padding: 0;
- padding-top: 10px;
- padding-bottom: 10px;
- }
-
- table {
- table-layout: fixed
- }
-
- .table-title {
- line-height: 50px;
- text-align: center;
- }
-
- .table-title span {
- font-size: 22px;
- color: #333;
- }
-
- .table-head th {
- border-color: #C7C6C5;
- background-color: #d2d6de;
- }
-
- .datatable {
- background-color: rgba(0, 0, 0, 0)
- }
-
- #table {
- background-color: #fff
- }
-
- .tb {
- margin-left: auto;
- margin-right: auto;
- }
- </style>
- <div class="container-fluid ">
- <div class="row">
- <label class="col-sm-1" style="line-height:30px;width:80px">开始月</label>
- <div class="div-month col-sm-1">
- <input id="month_date_from" class="form-control form-date" type="text" placeholder="请选择" style="height:30px;">
- </div>
- <label class="col-sm-1" style="line-height:30px;width:80px">结束月</label>
- <div class="div-month col-sm-1">
- <input id="month_date_to" class="form-control form-date " type="text " placeholder="请选择 " style="height:30px; ">
- </div>
- <div class="col-sm-2 "><button class="btn btn-info2 col-sm-6 query-company " id="searchbtn">查询</button></div>
- <div class="col-sm-1">
- <button class="btn btn-primary " type="button" onclick="exportExcel()">导出Excel</button>
- </div>
- </div>
- </div>
- <div class="table-title"><span>营运管理提升综合成绩汇总表<span id="table_title"></span></span>
- </div>
- <div class="row">
- <div class="datatable" data-checkable="false" style="margin-bottom: 0px; overflow-x: scroll;overflow-y: hidden; background: #ffffff00;" data-sortable="false">
- <div class="tb" style="padding-right: 10px;">
- <table border="0" class="table-head" width="100%" align="center" id="table_h">
- </table>
- </div>
- <div class="tb" style="overflow-y: auto;height:500px;overflow-x: hidden;background:#fff">
- <table border="0" width="100%" align="center" id="table"></table>
- </div>
- <!-- 使用一个div来显示数据表格 -->
- <!-- <div id="scrollTable" style="height:500px;overflow:scroll; margin-right: -10px;">
- <table style="border-top:0;" border="0" width="100%" align="center" id="table" >
- <tbody class="table-tbody" style="background:white; " align="center">
- </tbody>
- </table>
- </div> -->
- </div>
- </div>
- </div>
|