|
|
@@ -24,33 +24,56 @@
|
|
|
<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">
|
|
|
- <thead class="table-thead" align="center">
|
|
|
- <tr>
|
|
|
- <th rowspan="2" width="67px;">序号</th><th rowspan="2" width="67px">站名</th><th rowspan="2" width="67px">姓名</th>
|
|
|
- <th rowspan="2" width="67px">岗位</th><th rowspan="2" width="67px">工号</th><th colspan="7" height="40px">考核扣分</th>
|
|
|
- <th rowspan="2" width="67px">受检次数</th><th rowspan="2" width="67px">平均扣分(千分制)</th>
|
|
|
- <th rowspan="2" width="75px">服务评价</th><th rowspan="2" width="75px">备注</th>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
- <th width="67px">环境卫生</th><th width="67px">仪容仪表</th><th width="67px">表情</th>
|
|
|
- <th width="67px">收费动作</th><th width="67px">文明用语</th><th width="67px">工作纪律</th>
|
|
|
- <th width="67px">扣分合计</th>
|
|
|
- </tr>
|
|
|
- </thead>
|
|
|
- <tbody class="table-tbody" style="background:white" align="center">
|
|
|
+ <!-- 使用一个div来显示数据表格 -->
|
|
|
+ <div class="datatable" data-checkable="false" style="margin-bottom: 0px;margin-right:10px;" data-sortable="false">
|
|
|
+ <div class="table-head" >
|
|
|
+ <table border="1" width="100%" align="center">
|
|
|
+ <thead class="table-thead" align="center">
|
|
|
+ <tr>
|
|
|
+ <th rowspan="2" width="67px;">序号</th><th rowspan="2" width="87px">站名</th><th rowspan="2" width="67px">姓名</th>
|
|
|
+ <th rowspan="2" width="67px">岗位</th><th rowspan="2" width="77px">工号</th><th colspan="7" height="40px">考核扣分</th>
|
|
|
+ <th rowspan="2" width="67px">受检次数</th><th rowspan="2" width="67px">平均扣分(千分制)</th>
|
|
|
+ <th rowspan="2" width="75px">服务评价</th><th rowspan="2">备注</th>
|
|
|
+ </tr>
|
|
|
+ <tr>
|
|
|
+ <th width="67px">环境卫生</th><th width="67px">仪容仪表</th><th width="67px">表情</th>
|
|
|
+ <th width="67px">收费动作</th><th width="67px">文明用语</th><th width="67px">工作纪律</th>
|
|
|
+ <th width="67px">扣分合计</th>
|
|
|
+ </tr>
|
|
|
+ </thead>
|
|
|
+
|
|
|
|
|
|
- </tbody>
|
|
|
+ </table>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div id="scrollTable" style="height:300px;overflow:scroll;">
|
|
|
+ <table style="border-top:0;" border="1" width="100%" align="center">
|
|
|
+ <thead class="table-thead" style="height:0;" align="center">
|
|
|
+ <tr style="display:none;">
|
|
|
+ <th rowspan="2" width="67px;"></th><th rowspan="2" width="77px"></th><th rowspan="2" width="67px"></th>
|
|
|
+ <th rowspan="2" width="67px"></th><th rowspan="2" width="67px"></th><th colspan="7" height="40px"></th>
|
|
|
+ <th rowspan="2" width="67px"></th><th rowspan="2" width="67px"></th>
|
|
|
+ <th rowspan="2" width="75px"></th><th rowspan="2" width="75px"></th>
|
|
|
+ </tr>
|
|
|
+ <tr style="display:none;">
|
|
|
+ <th width="67px"></th><th width="67px"></th><th width="67px"></th>
|
|
|
+ <th width="67px"></th><th width="67px"></th><th width="67px"></th>
|
|
|
+ <th width="67px"></th>
|
|
|
+ </tr>
|
|
|
+ </thead>
|
|
|
+ <tbody class="table-tbody" style="background:white; " align="center">
|
|
|
|
|
|
- </table></div>
|
|
|
+ </tbody>
|
|
|
+ </table>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
<script>
|
|
|
$(document).ready(function() {
|
|
|
+
|
|
|
+ // 设置滚动表格的高度
|
|
|
+ $("#scrollTable").height( document.body.clientHeight - 360 );
|
|
|
+
|
|
|
// 仅选择日期
|
|
|
$("#start-time").datetimepicker(
|
|
|
{
|