1234567891011121314151617181920212223242526272829303132333435363738 |
- {extend name="common/common2" /}
- {block name="main"}
- <div class="row">
- <div class="col-sm-12">
- <div class="ibox float-e-margins">
- <div class="ibox-content">
- <table class="table table-bordered">
- <tbody>
- <tr>
- <th style="width:120px ">单号</th><td>{$info['sn']}</td>
- </tr>
- <tr>
- <th>用户名</th><td>{$info['user_name']}</td>
- </tr>
- <tr>
- <th>空桶名称</th><td>{$info['barrel_name']}</td>
- </tr>
- <tr>
- <th>数量</th><td>{$info['num']}</td>
- </tr>
- <tr>
- <th>单价</th><td>{$info['price']}</td>
- </tr>
- <tr>
- <th>金额</th><td>{$info['amount']}</td>
- </tr>
- <tr>
- <th>创建时间</th><td>{$info['create_time']}</td>
- </tr>
- </tbody>
- </table>
- </div>
- </div>
- </div>
- </div>
- {/block}
|