look_receive.html 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <!-- include 'header' -->
  2. <body>
  3. <div class="mainLayout">
  4. <div class="mainMenu">
  5. <div class="menuItem">
  6. <a href="/" class="mLogo">CLD</a>
  7. <ul>
  8. <!-- include 'menu' -->
  9. </ul>
  10. </div>
  11. </div>
  12. <div class="warpContent autoHeight">
  13. <div class="header">
  14. <h1>接收软件锁</h1>
  15. <h2>系统将自动为对应的软件锁添加记录</h2>
  16. </div>
  17. <div class="infoCenter">
  18. <form name="lock" action="/doLongleReceive" method="post">
  19. <div class="clearfix"><button class="button" type="submit">接收</button></div>
  20. <table class="table table-striped">
  21. <thead>
  22. <tr>
  23. <th><input class="checkbox" type="checkbox" onclick="checkall('lid[]')" id="chkall" name="chkall" /></th>
  24. <th>锁号</th>
  25. <th>产品</th>
  26. <th>生成日期</th>
  27. </tr>
  28. </thead>
  29. <tbody>
  30. <!-- loop arrayReceive -->
  31. <tr>
  32. <td><input class="checkbox" type="checkbox" value="{{arrayReceive' value.lid}}-{{arrayReceive' value.category}}" name="lid[]" /></td>
  33. <td>{{arrayReceive' value.key_num}}</td>
  34. <td>{{arrayReceive' value.product}}</td>
  35. <td>{{arrayReceive' value.make_day}}</td>
  36. </tr>
  37. <!-- endloop -->
  38. </tbody>
  39. </table>
  40. </form>
  41. </div>
  42. </div>
  43. </div>
  44. <script type="text/javascript">autoFlashHeight();</script>
  45. </body>