index.html 3.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. {extend name='admin@main'}
  2. {block name="content"}
  3. <div class="think-box-shadow">
  4. {include file='deposit/index_search'}
  5. <table class="layui-table margin-top-10" lay-skin="line">
  6. {notempty name='list'}
  7. <thead>
  8. <tr>
  9. <th class='text-left nowrap' style="width: 20%">用户</th>
  10. <th class='text-left nowrap' >金额</th>
  11. <th class='text-left nowrap' >手续费(率)</th>
  12. <th class='text-left nowrap' style="width: 20%">收款账号</th>
  13. <th class='text-left nowrap' >审核状态</th>
  14. <th class='text-left nowrap' >打款详情</th>
  15. <th class='text-left nowrap' style="width: 12%">申请时间</th>
  16. <th class='text-left nowrap'>操作</th>
  17. </tr>
  18. </thead>
  19. {/notempty}
  20. <tbody>
  21. {foreach $list as $key=>$vo}
  22. <tr>
  23. <td class='text-left nowrap'>
  24. <img data-tips-image style="width:50px;height:50px" src="{$vo.headimg|default=''}" class="margin-right-5 text-top">
  25. <div class="inline-block">
  26. 提现记录ID:{$vo.id}<br>
  27. 用户昵称:{$vo.m_name|default='--'}<br>
  28. 申请用户ID:{$vo.mid|default='--'}
  29. </div>
  30. </td>
  31. <td class='text-left nowrap'>
  32. <div class="inline-block">
  33. 提现金额:{$vo.price}<br>
  34. 到账金额:{$vo.real_money|default='--'}
  35. </div>
  36. </td>
  37. <td class='text-left nowrap'>
  38. <div class="inline-block">
  39. 手续费率:{$vo.poundage_proportion}<br>
  40. 手续费(¥):{$vo.proportion|default='0.00'}
  41. </div>
  42. </td>
  43. <td class='text-left nowrap'>
  44. <div class="inline-block">
  45. 类型:{eq name='vo.withdraw_type' value='wx'}微信{/eq}
  46. {eq name='vo.withdraw_type' value='zfb'}支付宝{/eq}
  47. {eq name='vo.withdraw_type' value='bank'}银行卡{/eq}
  48. <br>
  49. 账号:{$vo.account_no|default='--'}<br/>
  50. 收款人:{$vo.account_name|default='--'}
  51. </div>
  52. </td>
  53. <td class='text-left'>
  54. <div class="inline-block">
  55. 状态:
  56. {eq name='vo.sh_status' value='0'}待审核{/eq}
  57. {eq name='vo.sh_status' value='1'}审核通过{/eq}
  58. {eq name='vo.sh_status' value='2'}审核拒绝{/eq}
  59. </div>
  60. </td>
  61. <td class='text-left'>
  62. <div class="inline-block">
  63. {if $vo.sh_status == 1}
  64. {eq name='vo.is_over' value='1'}打款成功{/eq}
  65. {eq name='vo.is_over' value='0'} {$vo.return_info.respDesc|default='--'}{/eq}
  66. {elseif $vo.sh_status == 2}
  67. 余额已退回
  68. {elseif $vo.sh_status == 0}
  69. --
  70. {/if}
  71. </div>
  72. </td>
  73. <td class='text-left'>{$vo.create_at}</td>
  74. <td class='text-left'>
  75. {if $vo['sh_status'] == 0}
  76. <a data-title="审核" class="layui-btn layui-btn-sm layui-btn-warm" data-modal='{:url("edit")}?id={$vo.id}'>审核</a>
  77. {else}
  78. <a data-title="查看" class="layui-btn layui-btn-sm" data-modal='{:url("edit")}?id={$vo.id}'>查看</a>
  79. {/if}
  80. </td>
  81. </tr>
  82. {/foreach}
  83. </tbody>
  84. </table>
  85. {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
  86. </div>
  87. {/block}