You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
113 lines
4.5 KiB
113 lines
4.5 KiB
|
|
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="renderer" content="webkit|ie-comp|ie-stand">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no" />
|
|
<meta http-equiv="Cache-Control" content="no-siteapp" />
|
|
{php}include BASE_PATH."/modules/assets/templates/top.tpl";{/php}
|
|
|
|
<title>用户管理</title>
|
|
{literal}
|
|
<style type="text/css">
|
|
.btn1{
|
|
width: 80px;
|
|
height: 40px;
|
|
line-height: 40px;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
float: left;
|
|
color: #6a7076;
|
|
background-color: #fff;
|
|
}
|
|
.btn1:hover{
|
|
text-decoration: none;
|
|
}
|
|
</style>
|
|
{/literal}
|
|
</head>
|
|
<body>
|
|
<nav class="breadcrumb">
|
|
财务管理 <span class="c-gray en">></span>
|
|
提现列表
|
|
</nav>
|
|
|
|
<div class="pd-20">
|
|
<div class="mt-20">
|
|
<a href="index.php?module=finance" class="btn1" style="color:#6a7076;">待审核</a>
|
|
<a href="index.php?module=finance&action=list" class="btn1" style="color:#6a7076;">已通过</a>
|
|
<a href="index.php?module=finance&action=list1" class="btn1" style="background-color: #62b3ff;color: #fff;">已拒绝</a>
|
|
<div class="clearfix"></div>
|
|
</div>
|
|
<div class="mt-20">
|
|
<form action="index.php?module=finance" method="get" style="background: #fff;padding: 10px;">
|
|
<input type="hidden" name="module" value="finance" />
|
|
<input type="hidden" name="action" value="list1" />
|
|
<input type="hidden" name="pagesize" value="{$pagesize}" id="pagesize" />
|
|
|
|
<input type="text" class="input-text" style="width:250px" placeholder="用户ID" id="name" name="name" value="{$name}">
|
|
<input type="text" class="input-text" style="width:250px" placeholder="卡号" name="Bank_card_number" value="{$Bank_card_number}">
|
|
<input type="text" class="input-text" style="width:250px" placeholder="持卡人姓名" name="Cardholder" value="{$Cardholder}">
|
|
<input type="submit" class="btn btn-success" value="查 询">
|
|
<!--<input type="button" value="导出本页" class="btn btn-success" onclick="excel('ne')">-->
|
|
<input type="button" value="导出全部" class="btn btn-success" onclick="excel('all')">
|
|
</form>
|
|
</div>
|
|
|
|
<div class="mt-20">
|
|
<table class="table table-border table-bordered table-bg table-hover table-sort">
|
|
<thead>
|
|
<tr class="text-c">
|
|
<th width="40">序</th>
|
|
<th width="150" aria-valuetext="name">账户ID</th>
|
|
<th width="130" aria-valuetext="source">来源</th>
|
|
<th width="130" aria-valuetext="add_date">提交时间</th>
|
|
<th width="150" aria-valuetext="money">提现金额</th>
|
|
<th width="150" aria-valuetext="s_charge">提现手续费</th>
|
|
<th width="150" aria-valuetext="Bank_name">银行名称</th>
|
|
<th width="150" aria-valuetext="Cardholder">持卡人姓名</th>
|
|
<th width="150" aria-valuetext="Bank_card_number">卡号</th>
|
|
<th width="150" aria-valuetext="mobile">联系电话</th>
|
|
<th width="100" aria-valuetext="name">状态</th>
|
|
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{foreach from=$list item=item name=f1}
|
|
<tr class="text-c">
|
|
<td>{$smarty.foreach.f1.iteration}</td>
|
|
<td>{$item->user_id}</td>
|
|
<td>{if $item->source == 1}小程序{elseif $item->source == 2}app{/if}</td>
|
|
<td>{$item->add_date}</td>
|
|
<td>{$item->money}元</td>
|
|
<td>{$item->s_charge}元</td>
|
|
<td>{$item->Bank_name}</td>
|
|
<td>{$item->Cardholder}</td>
|
|
<td>{$item->Bank_card_number}</td>
|
|
<td>{$item->mobile}</td>
|
|
<td>{if $item->status == 0}<span style="color: #ff2a1f;">未审核</span>{elseif $item->status == 1}<span style="color: #30c02d;">审核通过</span>{else}<span style="color: #7A7A7A;">已拒绝</span>{/if}</td>
|
|
|
|
</tr>
|
|
{/foreach}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<div style="text-align: center;display: flex;justify-content: center;">{$pages_show}</div>
|
|
</div>
|
|
{php}include BASE_PATH."/modules/assets/templates/footer.tpl";{/php}
|
|
|
|
{literal}
|
|
<script type="text/javascript">
|
|
function excel(pageto) {
|
|
var pagesize = $("#pagesize").val();
|
|
location.href=location.href+'&pageto='+pageto+'&pagesize='+pagesize;
|
|
}
|
|
</script>
|
|
{/literal}
|
|
</body>
|
|
</html>
|
|
|
|
|
|
|