detail.html 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {extend name="common/common2" /}
  2. {block name="main"}
  3. <div class="row">
  4. <div class="col-sm-12">
  5. <div class="ibox float-e-margins">
  6. <div class="ibox-content">
  7. <table class="table table-striped">
  8. <tr>
  9. <th style="width: 100px;">编号</th><td>{$info['sn']}</td>
  10. </tr>
  11. <tr>
  12. <th>操作人</th><td>{$info['userName']}</td>
  13. </tr>
  14. <tr>
  15. <th>出库人</th><td>{$info['name']}</td>
  16. </tr>
  17. <tr>
  18. <th>联系电话</th><td>{$info['phone']}</td>
  19. </tr>
  20. <tr>
  21. <th>时间</th><td>{$info['create_time']}</td>
  22. </tr>
  23. {if $info['sign']}
  24. <tr>
  25. <th>签名图</th>
  26. <td>
  27. <img src="{$info['sign']}" alt="" onclick="open_img(this)" width="60" height="60">
  28. </td>
  29. </tr>
  30. {/if}
  31. </table>
  32. {if !empty($info['goods'])}
  33. <table class="table table-bordered">
  34. <tr>
  35. <th>名称</th>
  36. <th>规格</th>
  37. <th>品牌</th>
  38. <th>单价</th>
  39. <th>出库数量</th>
  40. </tr>
  41. {foreach $info['goods'] as $k=>$v}
  42. <tr>
  43. <td>{$v['title']}</td>
  44. <td>{$v['spec']}</td>
  45. <td>{$v['brand']}</td>
  46. <td>{$v['price']}/{$v['unit']}</td>
  47. <td>{$v['nums']}</td>
  48. </tr>
  49. {/foreach}
  50. </table>
  51. {/if}
  52. </div>
  53. </div>
  54. </div>
  55. </div>
  56. {/block}
  57. {block name="script"}
  58. {/block}