12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <!DOCTYPE html>
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <title>核销信息</title>
- <style>
- .layui-table th{border-color: #e6e6e6;}
- </style>
- </head>
- <body>
- <div class="layui-fluid">
- <div class="layui-row layui-col-space10">
- <div class="layui-col-md12">
- <h4 style="text-align:center;font-weight:bold;">核销信息</h4>
- </div>
- <div class="layui-col-md12">
- <img src="<?php echo $order_hexiao_info['goods_images']; ?>" width="80px;" height="80px;">
- <div style="display:inline-block;vertical-align: top;margin-top:10px;margin-left: 5px;">{$order_hexiao_info['goods_name']}</div>
- </div>
- <div class="layui-col-md12">
- <table class="layui-table" lay-size="lg">
- <colgroup>
- <col width="200">
- <col width="150">
- <col width="150">
- <col width="150">
- </colgroup>
- <thead>
- <tr>
- <th>核销时间</th>
- <th>核销人</th>
- <th>核销门店</th>
- <th>核销次数</th>
- </tr>
- </thead>
- <tbody>
- <?php foreach($hx_list as $k=>$v){ ?>
- <tr>
- <td><?php echo date('Y-m-d H:i:s',$v['addtime']); ?></td>
- <td><?php echo $v['smember_name']; ?></td>
- <td><?php echo $v['salesroom_name']; ?></td>
- <td><?php echo $v['hexiao_count']; ?></td>
- </tr>
- <?php } ?>
- </tbody>
- </table>
- </div>
- </div>
- <div class="layui-col-md12 layui-layer-btn" style="text-align:center;">
- <button class="layui-btn layui-btn-sm okBtn">确认</button>
- </div>
- </div>
- <script type="text/javascript" src="./resource/js/lib/jquery-1.11.1.min.js"></script>
- <script>
- $(function(){
- $('.okBtn').click(function(){
- layer.closeAll();
- })
- })
- </script>
- </body>
- </html>
-
|