123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- {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-striped">
- <tr>
- <th style="width: 100px">编号</th><td>{$info['sn']}</td>
- </tr>
- <tr>
- <th>操作人</th><td>{$info['userName']}</td>
- </tr>
- <tr>
- <th>{if $info['type']==1}入库{else}出库{/if}人</th><td>{$info['name']}</td>
- </tr>
- <tr>
- <th>联系电话</th><td>{$info['phone']}</td>
- </tr>
- <tr>
- <th>时间</th><td>{$info['create_time']}</td>
- </tr>
- </table>
- {if !empty($info['goods'])}
- <table class="table table-bordered">
- <tr>
- <th>名称</th>
- <th>规格</th>
- <th>品牌</th>
- <th>单价</th>
- <th>{if $info['type']==1}入库{else}出库{/if}数量</th>
- </tr>
- {foreach $info['goods'] as $k=>$v}
- <tr>
- <td>{$v['title']}</td>
- <td>{$v['spec']}</td>
- <td>{$v['brand']}</td>
- <td>{$v['price']}/{$v['unit']}</td>
- <td>{$v['nums']}</td>
- </tr>
- {/foreach}
- </table>
- {/if}
- </div>
- </div>
- </div>
- </div>
- {/block}
- {block name="script"}
- {/block}
|