| 12345678910111213141516171819202122232425 |
- <table class="table table-striped">
- <thead>
- <tr>
- <th>{:__('订单号')}</th>
- <th>{:__('商品')}</th>
- <th>{:__('图片')}</th>
- </tr>
- </thead>
- <tbody>
- {volist name="row" id="vo" }
- <tr>
- <td>{$vo.order_no}</td>
- <td >{$vo.zh_name|htmlentities}</td>
- <td ><img src="{$vo.thum|htmlentities}" width="100px" height="80px"></td>
- </tr>
- {/volist}
-
- </tbody>
- </table>
- <div class="hide layer-footer">
- <label class="control-label col-xs-12 col-sm-2"></label>
- <div class="col-xs-12 col-sm-8">
- <button type="reset" class="btn btn-primary btn-embossed btn-close" onclick="Layer.closeAll();">{:__('Close')}</button>
- </div>
- </div>
|