rechargeinfo.html 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. <include file="public@header"/>
  2. <style type="text/css">
  3. .pic-list li {
  4. margin-bottom: 5px;
  5. }
  6. </style>
  7. </head>
  8. <body>
  9. <div class="wrap js-check-wrap">
  10. <ul class="nav nav-tabs">
  11. <li class="active"><a href="#" color="blue">充值详情</a></li>
  12. </ul>
  13. <form action="" method="post" class="form-horizontal js-ajax-form margin-top-20">
  14. <div class="row">
  15. <div class="col-md-9">
  16. <table class="table table-bordered">
  17. <tr>
  18. <th style="width:120px;">昵称</th>
  19. <td>
  20. <input class="form-control" type="text" name="title"
  21. id="title" required value="{$user_nickname}" readonly="readonly" placeholder=""/>
  22. </td>
  23. </tr>
  24. <tr>
  25. <th style="width:120px;">充值类型</th>
  26. <td>
  27. <input class="form-control" type="text" name="title"
  28. id="title" required value="<switch name="type">
  29. <case value="1">爱心充值</case>
  30. <case value="2">余额充值</case>
  31. <case value="3">积分充值</case>
  32. <case value="4">VIP充值购买</case>
  33. <case value="5">购买人工牵线服务</case>
  34. </switch>" readonly="readonly" placeholder=""/>
  35. </td>
  36. </tr>
  37. <tr>
  38. <th style="width:120px;">单号</th>
  39. <td>
  40. <input class="form-control" type="text" name="title"
  41. id="title" required value="{$order_sn}" readonly="readonly" placeholder=""/>
  42. </td>
  43. </tr>
  44. <tr>
  45. <th style="width:120px;">交易单号</th>
  46. <td>
  47. <input class="form-control" type="text" name="title"
  48. id="title" required value="{$transaction_id}" readonly="readonly" placeholder=""/>
  49. </td>
  50. </tr>
  51. <tr>
  52. <th style="width:120px;">支付方式</th>
  53. <td>
  54. <input class="form-control" type="text" name="title"
  55. id="title" required value="<switch name="pay_type">
  56. <case value="1">微信支付</case>
  57. <default />其他支付
  58. </switch>" readonly="readonly" placeholder=""/>
  59. </td>
  60. </tr>
  61. <tr>
  62. <th style="width:120px;">更改金额</th>
  63. <td>
  64. <input class="form-control" type="text" name="title"
  65. id="title" required value="{$money}" readonly="readonly" placeholder=""/>
  66. </td>
  67. </tr>
  68. <tr>
  69. <th style="width:120px;">实付金额</th>
  70. <td>
  71. <input class="form-control" type="text" name="title"
  72. id="title" required value="{$pay_money}" readonly="readonly" placeholder=""/>
  73. </td>
  74. </tr>
  75. <tr>
  76. <th style="width:120px;">更改前账户</th>
  77. <td>
  78. <input class="form-control" type="text" name="title"
  79. id="title" required value="{$balance}" readonly="readonly" placeholder=""/>
  80. </td>
  81. </tr>
  82. <tr>
  83. <th style="width:120px;">支付时间</th>
  84. <td>
  85. <input class="form-control" type="text" name="title"
  86. id="title" required value="{$pay_at}" readonly="readonly" placeholder=""/>
  87. </td>
  88. </tr>
  89. <tr>
  90. <th style="width:120px;">是否已读</th>
  91. <td>
  92. <input class="form-control" type="text" name="title"
  93. id="title" required value="<switch name="is_read">
  94. <case value="1">是</case>
  95. <case value="2">否</case>
  96. </switch>" readonly="readonly" placeholder=""/>
  97. </td>
  98. </tr>
  99. <tr>
  100. <th style="width:120px;">状态</th>
  101. <td>
  102. <input class="form-control" type="text" name="title"
  103. id="title" required value="<switch name="status">
  104. <case value="1">待支付</case>
  105. <case value="2">已完成</case>
  106. </switch>" readonly="readonly" placeholder=""/>
  107. </td>
  108. </tr>
  109. <tr>
  110. <th style="width:120px;">备注</th>
  111. <td>
  112. <input class="form-control" type="text" name="title"
  113. id="title" required value="{$remark}" readonly="readonly" placeholder=""/>
  114. </td>
  115. </tr>
  116. </table>
  117. <!-- <div class="form-group">
  118. <div class="col-sm-offset-2 col-sm-10">
  119. <button type="submit" class="btn btn-primary js-ajax-submit">{:lang('SAVE')}</button>
  120. <a class="btn btn-default" href="{:url('Activity/index')}">{:lang('BACK')}</a>
  121. </div>
  122. </div> -->
  123. </div>
  124. </div>
  125. </form>
  126. </div>
  127. </body>
  128. </html>