withdrawlog.html 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. <style>
  2. .panel-recharge h3 {
  3. margin-bottom: 15px;
  4. margin-top: 10px;
  5. color: #444;
  6. font-size: 16px;
  7. }
  8. .row-recharge > div {
  9. margin-bottom: 10px;
  10. }
  11. .row-recharge > div > label {
  12. width: 100%;
  13. height: 40px;
  14. display: block;
  15. font-size: 14px;
  16. line-height: 40px;
  17. color: #999;
  18. background: #fff;
  19. -webkit-border-radius: 3px;
  20. -moz-border-radius: 3px;
  21. border-radius: 3px;
  22. cursor: pointer;
  23. text-align: center;
  24. border: 1px solid #ddd;
  25. margin-bottom: 20px;
  26. font-weight: 400;
  27. }
  28. .row-recharge > div > label.active {
  29. border-color: #0d95e8;
  30. color: #0d95e8;
  31. }
  32. .row-recharge > div > label:hover {
  33. z-index: 4;
  34. border-color: #27b0d6;
  35. color: #27b0d6;
  36. }
  37. .panel-recharge .custommoney {
  38. border: none;
  39. height: 100%;
  40. width: 100%;
  41. display: inherit;
  42. line-height: 100%;
  43. }
  44. .row-recharge > div {
  45. height: 40px;
  46. line-height: 40px;
  47. }
  48. .row-recharge > div input.form-control {
  49. border: none;
  50. display: inline-block;
  51. }
  52. .row-paytype div input {
  53. display: none;
  54. }
  55. .row-paytype img {
  56. height: 22px;
  57. margin: 8px;
  58. vertical-align: inherit;
  59. }
  60. .btn-recharge {
  61. height: 40px;
  62. line-height: 40px;
  63. font-size: 14px;
  64. padding: 0;
  65. }
  66. </style>
  67. <div id="content-container" class="container">
  68. <div class="row">
  69. <div class="col-md-3">
  70. {include file="common/sidenav" /}
  71. </div>
  72. <div class="col-md-9">
  73. <div class="panel panel-default panel-recharge">
  74. <div class="panel-body">
  75. <h2 class="page-header">
  76. {:__('Withdraw log')}
  77. <a href="{:url('withdraw/withdraw')}" class="btn btn-primary btn-withdraw pull-right"><i class="fa fa-cny"></i> {:__('Withdraw')}</a>
  78. </h2>
  79. {volist name='withdrawloglist' id='log'}
  80. <div class="row">
  81. <div class="col-md-9">
  82. <p class="text-primary">{:__('Withdraw type')}:支付宝</p>
  83. <p class="text-primary">{:__('Withdraw money')}:¥{$log.money}</p>
  84. {if $log.status=='rejected'&&$log.memo}
  85. <p class="text-danger">拒绝原因:{$log.memo}</p>
  86. {elseif $log.status=='successed'}
  87. {if $log.taxes>0}
  88. <p class="text-danger">扣除税费:¥{$log.taxes}</p>
  89. {/if}
  90. {if $log.handingfee>0}
  91. <p class="text-danger">扣除手续费:¥{$log.handingfee}</p>
  92. {/if}
  93. <p class="text-success">最终到账:¥{$log.settledmoney}</p>
  94. {/if}
  95. <p>{:__('Operate date')}:{$log.createtime|datetime}</p>
  96. </div>
  97. <div class="col-md-3 text-right">
  98. {if $log.status=='successed'}
  99. <a href="javascript:" class="btn btn-success">提现成功</a>
  100. {elseif $log.status=='rejected' /}
  101. <a href="javascript:" class="btn btn-danger" data-toggle="tooltip" data-title="{$log.memo}">提现拒绝</a>
  102. {else /}
  103. <a href="javascript:" class="btn btn-info" data-toggle="tooltip" data-title="请等待后台审核">申请中</a>
  104. {/if}
  105. </div>
  106. </div>
  107. <hr>
  108. {/volist}
  109. <div class="pager">{$withdrawloglist->render()}</div>
  110. </div>
  111. </div>
  112. </div>
  113. </div>
  114. </div>