details.html 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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['amount']}</td>
  23. </tr>
  24. <tr>
  25. <th>创建时间</th><td>{$info['create_time']}</td>
  26. </tr>
  27. <tr>
  28. <th>状态</th><td>{$info['status_name']}</td>
  29. </tr>
  30. {if $info.status>0}
  31. <tr>
  32. <th>审核人</th><td>{$info['deal_user_name']}</td>
  33. </tr>
  34. <tr>
  35. <th>审核时间</th><td>{$info['deal_time']}</td>
  36. </tr>
  37. <tr>
  38. <th>备注</th><td>{$info['remark']}</td>
  39. </tr>
  40. {/if}
  41. {if $info['status']==0}
  42. <tr>
  43. <th>操作</th><td><a href="javascript:;" url="{:url('option',['id'=>$info['id']])}" data-title="审核" onclick="layer_open(this,2)" class="btn btn-xs btn-danger">审核</a>
  44. </td>
  45. </tr>
  46. {/if}
  47. </tbody>
  48. </table>
  49. </div>
  50. </div>
  51. </div>
  52. </div>
  53. {/block}