head_ordergoods_detail.html 896 B

123456789101112131415161718192021222324252627
  1. <form action="" method="post" class="form-horizontal form-validate" enctype="multipart/form-data" style="overflow-x:hidden;">
  2. <input type="hidden" name="head_id" value="{$head_id}" />
  3. <input type="hidden" name="searchtime" value="{$_GPC['searchtime']}" />
  4. <input type="hidden" name="starttime" value="{$starttime}" />
  5. <input type="hidden" name="endtime" value="{$endtime}" />
  6. <fieldset class="layui-elem-field layui-field-title" style="margin-top: 20px;">
  7. <legend>商品详情</legend>
  8. </fieldset>
  9. <div class="layui-form">
  10. <table class="layui-table">
  11. <tr>
  12. <th>商品标题</th>
  13. <th>规格</th>
  14. <th>数量</th>
  15. </tr>
  16. <?php foreach($show_goods_list as $val){ ?>
  17. <tr>
  18. <td><?php echo $val['name']; ?></td>
  19. <td><?php echo $val['sku_name']; ?></td>
  20. <td><?php echo $val['quantity']; ?></td>
  21. </tr>
  22. <?php } ?>
  23. </table>
  24. </div>
  25. </form>