| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <script src="/js/statistics/assess_situation.js?__inline"></script>
- <link rel="stylesheet" type="text/css" href="/css/statistics/assess_situation.css">
- <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-3">
- <input type="text" id="start-time" class="form-control form-date" placeholder="开始日期">
- </div>
- <div class="col-sm-4">
- <input type="text" id="end-time" class="form-control form-date" placeholder="结束日期">
- </div>
- <div class="col-sm-5">
- <button class="btn btn-primary " type="button" onclick="querySituationClick()">查询</button>
- </div>
- <div class="col-sm-6">
- <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">
- <div class="table-head" ><table border="1" width="100%" height="90px" align="center" class="a">
- <thead>
- <tr>
- <th rowspan="2" width="110px">道管</th><th rowspan="2" width="80px">道管内排名</th><th rowspan="2" width="90px">站名</th>
- <th rowspan="2" width="80px">收费值机人数</th><th rowspan="2" width="80px">受检人数</th>
- <th rowspan="2" width="80px">受检次数</th><th colspan="6" height="40px">扣分情况</th><th rowspan="2" width="85px">平均得分(千分)</th>
- </tr>
- <tr>
- <th width="80px">满分(人)</th><th width="80px">≤15分(人)</th><th width="80px">≤50分(人)</th>
- <th width="80px">>50分(人)</th><th width="80px">总扣分(分)</th><th width="80px">平均每人次扣分(分)</th>
- </tr>
- </thead>
- <tbody class="table-tbody" style="background:white" align="center" height="500px">
-
- </tbody>
- </table></div>
-
- </div>
- </div>
- </div>
- <script>
- $(document).ready(function() {
- // 仅选择日期
- $("#start-time").datetimepicker(
- {
- language: "zh-CN",
- weekStart: 1,
- todayBtn: 1,
- autoclose: 1,
- todayHighlight: 1,
- startView: 2,
- minView: 2,
- forceParse: 0,
- format: "yyyy-mm-dd"
- });
- // 仅选择日期
- $("#end-time").datetimepicker(
- {
- language: "zh-CN",
- weekStart: 1,
- todayBtn: 1,
- autoclose: 1,
- todayHighlight: 1,
- startView: 2,
- minView: 2,
- forceParse: 0,
- format: "yyyy-mm-dd"
- });
-
- initQuerySituation();
- });
- </script>
|