123 lines
4.8 KiB
HTML
Executable File
123 lines
4.8 KiB
HTML
Executable File
{extend name='akszadmin@main'}
|
|
{block name="button"}
|
|
{if auth("remove")}
|
|
<button data-action='{:url(ADMIN_MODULE."/cash/remove")}' data-rule="id#{key}" data-csrf="{:systoken('remove')}" data-confirm="确定要删除这些记录吗?" class='layui-btn layui-btn-sm layui-btn-primary'>删除记录</button>
|
|
{/if}
|
|
{/block}
|
|
{block name="content"}
|
|
<div class="think-box-shadow">
|
|
{include file='cash/index_search'}
|
|
<table class="layui-table margin-top-10" lay-skin="line">
|
|
|
|
{notempty name='list'}
|
|
<style>
|
|
.text-center{
|
|
padding: 0 !important;
|
|
}
|
|
.nowrap{
|
|
padding: 0 !important;
|
|
}
|
|
</style>
|
|
<thead>
|
|
<tr>
|
|
<th class='list-table-check-td think-checkbox'>
|
|
<label><input data-auto-none data-check-target='.list-check-box' type='checkbox'></label>
|
|
</th>
|
|
<th class='text-center nowrap'>编号</th>
|
|
<th class='text-center nowrap'>账户</th>
|
|
<th class="text-center nowrap">姓名</th>
|
|
<th class="text-center nowrap">提现金额(元)</th>
|
|
<th class="text-center nowrap">手续费</th>
|
|
<th class="text-center nowrap">实际到账(元)</th>
|
|
<th class=" nowrap">开户银行</th>
|
|
<th class=" nowrap">拒绝原因</th>
|
|
<th class="text-center nowrap">提交时间</th>
|
|
<th class="text-center nowrap">处理进度</th>
|
|
|
|
<th class="text-center nowrap">操作</th>
|
|
</tr>
|
|
</thead>
|
|
{/notempty}
|
|
<tbody>
|
|
{foreach $list as $key=>$vo}
|
|
<tr>
|
|
<td class='list-table-check-td think-checkbox'>
|
|
<label><input class="list-check-box" value='{$vo.id}' type='checkbox'></label>
|
|
</td>
|
|
<td class='text-center nowrap'>
|
|
{$vo.id|default='--'}
|
|
</td>
|
|
<td class='text-center nowrap'>
|
|
{$vo.phone|default='--'}
|
|
</td>
|
|
<td class='text-center nowrap'>
|
|
{$vo.name|default='--'}
|
|
</td>
|
|
<td class='text-center nowrap'>
|
|
{$vo.money|default='--'}
|
|
</td>
|
|
<td class='text-center nowrap'>
|
|
{$vo.sxfbfb|default='--'}%
|
|
</td>
|
|
<td class='text-center nowrap'>
|
|
{$vo.dzje|default='--'}
|
|
</td>
|
|
<td class=' nowrap'>
|
|
账户名称:{$vo.name|default='--'}
|
|
{if $vo.bid == 0}
|
|
<br>{$vo.bank|default='--'}
|
|
<br>支付宝账号:{$vo.account|default='--'}
|
|
{else/}
|
|
<br>开户银行:{$vo.bank|default='--'}
|
|
<br>支行名称:{$vo.area|default='--'}
|
|
<br>银行账号:{$vo.account|default='--'}
|
|
{/if}
|
|
</td>
|
|
<td class=' nowrap'>
|
|
|
|
{$vo.reaolae|default='审核通过'}
|
|
|
|
</td>
|
|
<td class='text-center nowrap'>
|
|
{$vo.time|default='--'}
|
|
</td>
|
|
<td class='text-center nowrap'>
|
|
{if $vo.status == 0}
|
|
<span class="color-red">待审核</span>
|
|
{/if}
|
|
{if $vo.status == 1}
|
|
<span class="color-green">已完成</span>
|
|
{/if}
|
|
{if $vo.status == 2}
|
|
<span class="color-desc" title="{$vo.reaolae|default='--'}">已拒绝</span>
|
|
{/if}
|
|
</td>
|
|
|
|
|
|
<td class='text-center nowrap'>
|
|
{if auth("akszadmin/invest_list/detail")}
|
|
<a data-title="查看详情" class="layui-btn layui-btn-xs" data-open='{:url(ADMIN_MODULE."/order/index")}?u_phone={$vo.phone}'>查看详情</a>
|
|
{/if}
|
|
{if $vo.status eq 0}
|
|
{if auth("agree")}
|
|
<a class="layui-btn layui-btn layui-btn-xs" data-confirm="确定要同意提现吗?" data-action="{:url(ADMIN_MODULE.'/cash/agree')}" data-value="id#{$vo.id}" data-csrf="{:systoken('agree')}">同 意</a>
|
|
{/if}
|
|
{if auth("refuse")}
|
|
<a data-dbclick class="layui-btn layui-btn-danger layui-btn-xs" data-modal='{:url(ADMIN_MODULE."/cash/edit")}?id={$vo.id}'>拒 绝</a>
|
|
|
|
{/if}
|
|
{else}
|
|
<a class="layui-btn layui-btn-danger layui-btn-xs" data-confirm="确定要删除吗?" data-action="{:url(ADMIN_MODULE.'/cash/remove')}" data-value="id#{$vo.id}" data-csrf="{:systoken('remove')}">删 除</a>
|
|
{/if}
|
|
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
{/foreach}
|
|
</tbody>
|
|
</table>
|
|
{empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
|
|
</div>
|
|
{/block}
|