details.html 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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['order_sn']}</td>
  11. </tr>
  12. <tr>
  13. <th>申请退款金额</th><td>{$info['amount']}</td>
  14. </tr>
  15. <tr>
  16. <th>申请人</th><td>{$info['user_name']}</td>
  17. </tr>
  18. <tr>
  19. <th>申请原因</th><td>{$info['reason']}</td>
  20. </tr>
  21. <tr>
  22. <th>时间</th><td>{$info['create_time']}</td>
  23. </tr>
  24. {if $info.status >0}
  25. <tr>
  26. <th>处理人</th><td>{$info['deal_user_name']}</td>
  27. </tr>
  28. <tr>
  29. <th>处理时间</th><td>{$info['deal_time']}</td>
  30. </tr>
  31. {/if}
  32. </tbody>
  33. </table>
  34. </div>
  35. <div class="ibox-content">
  36. <table class="table table-bordered">
  37. <thead>
  38. <tr>
  39. <th>图片</th>
  40. <th>商品名称</th>
  41. <th>价格</th>
  42. <th>退款数量</th>
  43. <th>实际退款金额</th>
  44. <th>备注</th>
  45. <th>状态</th>
  46. </tr>
  47. </thead>
  48. <tbody>
  49. <tr>
  50. <td><img src="{$info['goods']['img']}" alt="" onclick="open_img(this)" style="width: 40px;" ></td>
  51. <td>{$info['goods']['title']}</td>
  52. <td>{$info['goods']['price']}</td>
  53. <td>{$info['goods']['num']}</td>
  54. <td>{$info['money']}</td>
  55. <td>{$info['remark']}</td>
  56. <td>{$info['statusName']}</td>
  57. </tr>
  58. </tbody>
  59. </table>
  60. </div>
  61. </div>
  62. </div>
  63. </div>
  64. {/block}