lock_count.html 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <!-- include 'header' -->
  2. <link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
  3. <script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
  4. <script src="<?= WEB_SITE_GLOBAL ?>/js/jquery.ui.core.js"></script>
  5. <script src="<?= WEB_SITE_GLOBAL ?>/js/jquery.ui.widget.js"></script>
  6. <script src="<?= WEB_SITE_GLOBAL ?>/js/jquery.ui.position.js"></script>
  7. <script src="<?= WEB_SITE_GLOBAL ?>/js/jquery.ui.autocomplete.js"></script>
  8. <body>
  9. <div class="mainLayout">
  10. <div class="mainMenu">
  11. <div class="menuItem">
  12. <a href="/" class="mLogo">CLD</a>
  13. <ul>
  14. <!-- include 'menu' -->
  15. </ul>
  16. </div>
  17. </div>
  18. <div class="warpContent">
  19. <div class="contactTab">
  20. <a href="/keyonline">公共锁库</a>
  21. <a class="now" href="#">使用统计</a>
  22. <div class="searchItem"><input type="text" placeholder="输入锁号进行搜索"><input type="button" class="subBtn" value="搜索"><input value="新锁" class="subBtn add" type="button" onclick="javascrtpt:window.location.href='admin-addlock.html'"></div>
  23. </div>
  24. <div class="lockDatabase fL autoHeight">
  25. <table class="table table-bordered table-condensed table-hover" style="margin:5px">
  26. <thead>
  27. <tr>
  28. <th rowspan="2" >办事处</th><th rowspan="2">员工</th><th colspan="3" class="taC">锁统计</th>
  29. </tr>
  30. <tr>
  31. <th title="接收">未使用</th><th title="销售、赠送、借出、升级、收回、更换">已使用</th><th>合计</th>
  32. </tr>
  33. </thead>
  34. <tbody>
  35. <!-- loop staffList -->
  36. <tr>
  37. <td>{{staffList' value.category}}</td>
  38. <td>{{staffList' value.username}}</td>
  39. <td>{{staffList' value.b}}</td>
  40. <td>{{staffList' value.a}}</td>
  41. <td>{{staffList' value.sum}}</td>
  42. </tr>
  43. <!-- endloop -->
  44. </tbody>
  45. </table>
  46. </div>
  47. <div class="lockDetil fL">
  48. </div>
  49. </div>
  50. </div>
  51. <script type="text/javascript">autoFlashHeight();</script>
  52. </body>