details.html 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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-bordered">
  8. <tbody>
  9. <tr>
  10. <th style="width:120px ">单号</th><td>{$info['sn']}</td>
  11. </tr>
  12. <tr>
  13. <th>用户名</th><td>{$info['user_name']}</td>
  14. </tr>
  15. <tr>
  16. <th>空桶名称</th><td>{$info['barrel_name']}</td>
  17. </tr>
  18. <tr>
  19. <th>数量</th><td>{$info['num']}</td>
  20. </tr>
  21. <tr>
  22. <th>单价</th><td>{$info['price']}</td>
  23. </tr>
  24. <tr>
  25. <th>金额</th><td>{$info['amount']}</td>
  26. </tr>
  27. <tr>
  28. <th>创建时间</th><td>{$info['create_time']}</td>
  29. </tr>
  30. </tbody>
  31. </table>
  32. </div>
  33. </div>
  34. </div>
  35. </div>
  36. {/block}