| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- <!--服务区-营运管理综合检查情况统计-->
- <script src="/qzd/js/statistics/operation_management_integration.js?__inline"></script>
- <link rel="stylesheet" type="text/css" href="/css/statistics/assess_situation.css?__inline">
- <div class="container-fluid ">
- <div class="form-div">
- <form class="form-horizontal">
- <div class="form-group">
- <div class="from-label"><label>查询日期</label></div>
- <div class="col-sm-2">
- <input type="text" id="start-time" class="form-control form-date" placeholder="选择月份">
- </div>
- <!-- <div class="col-sm-2">
- <input type="text" id="end-time" class="form-control form-date" placeholder="结束日期">
- </div> -->
- <div class="col-sm-1">
- <button class="btn btn-primary " type="button" onclick="queryTypeClick()">查询</button>
- </div>
- <div class="col-sm-1">
- <button class="btn btn-primary " type="button" onclick="exportExcel()">导出Excel</button>
- </div>
- </div>
- </form>
- </div>
- <div class="table-title"><span>运营管理综合检查情况统计表</span></div>
- <div class="row">
- <!-- 使用一个div来显示数据表格 -->
- <div class="datatable" data-checkable="false" data-sortable="false" style="margin-bottom:0px;">
- <div class="table-head">
- <table border="1" width="100%" height="90px" align="center">
- <thead>
- <tr>
- <!--<th rowspan="3" width="6%">排名</th><th rowspan="3" width="6%">道管</th>-->
- <th rowspan="3" width="8%">排名</th>
- <!--<th rowspan="3" width="6%">道管内排名</th>-->
- <th rowspan="3" width="8%">服务区</th>
- <th colspan="4" width="24%" height="40px">温馨服务</th>
- <th colspan="2" width="12%" height="40px">现场检查</th>
- <th rowspan="3" width="8%">总平均扣分</th>
- <th rowspan="3" width="8%">平均得分</th>
- </tr>
- <tr>
- <th colspan="2">公司检查</th>
- <th colspan="2">第三方暗访</th>
- <th rowspan="2" width="54px">受检次数</th>
- <th rowspan="2" width="54px">扣分合计</th>
- </tr>
- <tr>
- <th width="54px">受检次数</th>
- <th width="54px">扣分合计</th>
- <th width="54px">受检次数</th>
- <th width="54px">扣分合计</th>
- </tr>
- </thead>
- <!-- <tbody class="table-tbody" style="background:white" align="center">
-
- </tbody> -->
- </table>
- </div>
- </div>
- <div id="scrollTable" style="height:300px;overflow:scroll;margin-right:-10px;">
- <div class="table-head" style="margin:0px;">
- <table border="1" width="100%" height="90px" align="center" style="border-top:0px;">
- <tbody class="table-tbody" style="background:white" align="center">
- </tbody>
- </table>
- </div>
- </div>
- </div>
- </div>
- <script>
- $(document).ready(function() {
- // 设置滚动表格的高度
- $("#scrollTable").height($(window).height() - 360);
- // 仅选择日期
- $.jeDate("#start-time", {
- isinitVal: true,
- format: 'YYYY/MM' // 分隔符可以任意定义,该例子表示只显示年月
- });
- $("#start-time").val(getCurrentTimeFormat());
- initQueryType();
- });
- </script>
|