detail.html 771 B

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