1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- {extend name='admin@main'}
- {block name="content"}
- <div class="think-box-shadow">
- {include file='deposit/index_search'}
- <table class="layui-table margin-top-10" lay-skin="line">
- {notempty name='list'}
- <thead>
- <tr>
- <th class='text-left nowrap' style="width: 20%">用户</th>
- <th class='text-left nowrap' >金额</th>
- <th class='text-left nowrap' >手续费(率)</th>
- <th class='text-left nowrap' style="width: 20%">收款账号</th>
- <th class='text-left nowrap' >审核状态</th>
- <th class='text-left nowrap' >打款详情</th>
- <th class='text-left nowrap' style="width: 12%">申请时间</th>
- <th class='text-left nowrap'>操作</th>
- </tr>
- </thead>
- {/notempty}
- <tbody>
- {foreach $list as $key=>$vo}
- <tr>
- <td class='text-left nowrap'>
- <img data-tips-image style="width:50px;height:50px" src="{$vo.headimg|default=''}" class="margin-right-5 text-top">
- <div class="inline-block">
- 提现记录ID:{$vo.id}<br>
- 用户昵称:{$vo.m_name|default='--'}<br>
- 申请用户ID:{$vo.mid|default='--'}
- </div>
- </td>
- <td class='text-left nowrap'>
- <div class="inline-block">
- 提现金额:{$vo.price}<br>
- 到账金额:{$vo.real_money|default='--'}
- </div>
- </td>
- <td class='text-left nowrap'>
- <div class="inline-block">
- 手续费率:{$vo.poundage_proportion}<br>
- 手续费(¥):{$vo.proportion|default='0.00'}
- </div>
- </td>
- <td class='text-left nowrap'>
- <div class="inline-block">
- 类型:{eq name='vo.withdraw_type' value='wx'}微信{/eq}
- {eq name='vo.withdraw_type' value='zfb'}支付宝{/eq}
- {eq name='vo.withdraw_type' value='bank'}银行卡{/eq}
- <br>
- 账号:{$vo.account_no|default='--'}<br/>
- 收款人:{$vo.account_name|default='--'}
- </div>
- </td>
- <td class='text-left'>
- <div class="inline-block">
- 状态:
- {eq name='vo.sh_status' value='0'}待审核{/eq}
- {eq name='vo.sh_status' value='1'}审核通过{/eq}
- {eq name='vo.sh_status' value='2'}审核拒绝{/eq}
- </div>
- </td>
- <td class='text-left'>
- <div class="inline-block">
- {if $vo.sh_status == 1}
- {eq name='vo.is_over' value='1'}打款成功{/eq}
- {eq name='vo.is_over' value='0'} {$vo.return_info.respDesc|default='--'}{/eq}
- {elseif $vo.sh_status == 2}
- 余额已退回
- {elseif $vo.sh_status == 0}
- --
- {/if}
- </div>
- </td>
- <td class='text-left'>{$vo.create_at}</td>
- <td class='text-left'>
- {if $vo['sh_status'] == 0}
- <a data-title="审核" class="layui-btn layui-btn-sm layui-btn-warm" data-modal='{:url("edit")}?id={$vo.id}'>审核</a>
- {else}
- <a data-title="查看" class="layui-btn layui-btn-sm" data-modal='{:url("edit")}?id={$vo.id}'>查看</a>
- {/if}
- </td>
- </tr>
- {/foreach}
- </tbody>
- </table>
- {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
- </div>
- {/block}
|