hexiao_history.html 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <!DOCTYPE html>
  2. <head>
  3. <meta charset="utf-8">
  4. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  5. <title>核销信息</title>
  6. <style>
  7. .layui-table th{border-color: #e6e6e6;}
  8. </style>
  9. </head>
  10. <body>
  11. <div class="layui-fluid">
  12. <div class="layui-row layui-col-space10">
  13. <div class="layui-col-md12">
  14. <h4 style="text-align:center;font-weight:bold;">核销信息</h4>
  15. </div>
  16. <div class="layui-col-md12">
  17. <img src="<?php echo $order_hexiao_info['goods_images']; ?>" width="80px;" height="80px;">
  18. <div style="display:inline-block;vertical-align: top;margin-top:10px;margin-left: 5px;">{$order_hexiao_info['goods_name']}</div>
  19. </div>
  20. <div class="layui-col-md12">
  21. <table class="layui-table" lay-size="lg">
  22. <colgroup>
  23. <col width="200">
  24. <col width="150">
  25. <col width="150">
  26. <col width="150">
  27. </colgroup>
  28. <thead>
  29. <tr>
  30. <th>核销时间</th>
  31. <th>核销人</th>
  32. <th>核销门店</th>
  33. <th>核销次数</th>
  34. </tr>
  35. </thead>
  36. <tbody>
  37. <?php foreach($hx_list as $k=>$v){ ?>
  38. <tr>
  39. <td><?php echo date('Y-m-d H:i:s',$v['addtime']); ?></td>
  40. <td><?php echo $v['smember_name']; ?></td>
  41. <td><?php echo $v['salesroom_name']; ?></td>
  42. <td><?php echo $v['hexiao_count']; ?></td>
  43. </tr>
  44. <?php } ?>
  45. </tbody>
  46. </table>
  47. </div>
  48. </div>
  49. <div class="layui-col-md12 layui-layer-btn" style="text-align:center;">
  50. <button class="layui-btn layui-btn-sm okBtn">确认</button>
  51. </div>
  52. </div>
  53. <script type="text/javascript" src="./resource/js/lib/jquery-1.11.1.min.js"></script>
  54. <script>
  55. $(function(){
  56. $('.okBtn').click(function(){
  57. layer.closeAll();
  58. })
  59. })
  60. </script>
  61. </body>
  62. </html>