| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 | 
							
- {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>出库人</th><td>{$info['name']}</td>
 
-                     </tr>
 
-                     <tr>
 
-                         <th>联系电话</th><td>{$info['phone']}</td>
 
-                     </tr>
 
-                     <tr>
 
-                         <th>时间</th><td>{$info['create_time']}</td>
 
-                     </tr>
 
-                     {if $info['sign']}
 
-                     <tr>
 
-                         <th>签名图</th>
 
-                         <td>
 
-                             <img src="{$info['sign']}" alt="" onclick="open_img(this)" width="60" height="60">
 
-                         </td>
 
-                     </tr>
 
-                     {/if}
 
-                 </table>
 
-                 {if !empty($info['goods'])}
 
-                 <table class="table table-bordered">
 
-                     <tr>
 
-                         <th>名称</th>
 
-                         <th>规格</th>
 
-                         <th>品牌</th>
 
-                         <th>单价</th>
 
-                         <th>出库数量</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}
 
 
  |