index.html 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {extend name='admin@main'}
  2. {block name="content"}
  3. <div class="think-box-shadow">
  4. {include file='clock/index_search'}
  5. <table class="layui-table" lay-skin="line">
  6. {notempty name='list'}
  7. <thead>
  8. <tr>
  9. <th class='list-table-check-td think-checkbox'>
  10. <label><input data-auto-none data-check-target='.list-check-box' type='checkbox'></label>
  11. </th>
  12. <th class='text-left nowrap'>员工姓名</th>
  13. <th class='text-left nowrap'>打卡日期</th>
  14. <th class='text-left nowrap'>内网地址</th>
  15. <th class='text-left nowrap'>首次打卡</th>
  16. <th class='text-left nowrap'>最后打卡</th>
  17. </tr>
  18. </thead>
  19. {/notempty}
  20. <tbody>
  21. {foreach $list as $key=>$vo}
  22. <tr data-dbclick>
  23. <td class='list-table-check-td think-checkbox'>
  24. <label><input class="list-check-box" value='{$vo.id}' type='checkbox'></label>
  25. </td>
  26. <td class='text-left nowrap'>{$vo.name|default=''}</td>
  27. <td class='text-left nowrap'>{$vo.date|default='-'}</td>
  28. <td class='text-left nowrap'>{$vo.ip|default='-'}</td>
  29. <td class='text-left nowrap'>{$vo.start_at|format_datetime}</td>
  30. <td class='text-left nowrap'>{$vo.end_at|format_datetime}</td>
  31. </tr>
  32. {/foreach}
  33. </tbody>
  34. </table>
  35. {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
  36. </div>
  37. {/block}