detail.html 840 B

123456789101112131415161718192021222324252627
  1. <table class="table table-striped">
  2. <thead>
  3. <tr>
  4. <th>{:__('订单ID')}</th>
  5. <th>{:__('订单号')}</th>
  6. <th>{:__('商品')}</th>
  7. <th>{:__('图片')}</th>
  8. </tr>
  9. </thead>
  10. <tbody>
  11. {volist name="row" id="vo" }
  12. <tr>
  13. <td>{$vo.id}</td>
  14. <td>{$vo.order_no}</td>
  15. <td >{$vo.zh_name|htmlentities}</td>
  16. <td ><img src="{$vo.thum|htmlentities}" width="100px" height="80px"></td>
  17. </tr>
  18. {/volist}
  19. </tbody>
  20. </table>
  21. <div class="hide layer-footer">
  22. <label class="control-label col-xs-12 col-sm-2"></label>
  23. <div class="col-xs-12 col-sm-8">
  24. <button type="reset" class="btn btn-primary btn-embossed btn-close" onclick="Layer.closeAll();">{:__('Close')}</button>
  25. </div>
  26. </div>