zhifu.html
3.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{template 'common/header'}
<ul class="nav nav-tabs">
<li {if $op == 'display'}class="active"{/if}><a href="{php echo $this->createWebUrl('commission', array('op'=>'display'))}">佣金审核提现操作</a></li>
<li {if $op == 'applyed'}class="active"{/if}><a href="{php echo $this->createWebUrl('commission', array('op'=>'applyed'))}">已结算订单</a></li>
<li {if $op == 'invalid'}class="active"{/if}><a href="{php echo $this->createWebUrl('commission', array('op'=>'invalid'))}">审核无效</a></li>
<li {if $op == 'list'}class="active"{/if}><a href="{php echo create_url('site/entry', array('do' => 'zhifu', 'op' => 'list','m' => 'wwx_fxxt','uniacid'=>$_W['uniacid']))}">代理提现报表</a></li>
</ul>
<div class="main">
<div class="panel panel-info">
<div class="panel-heading">筛选</div>
<div class="panel-body">
<form action="./index.php" method="get" class="form-horizontal" role="form" id="form1">
<input type="hidden" name="c" value="site" />
<input type="hidden" name="a" value="entry" />
<input type="hidden" name="m" value="wwx_fxxt" />
<input type="hidden" name="do" value="zhifu" />
<input type="hidden" name="op" value="list" />
<div class="form-group">
<label class="col-xs-12 col-sm-2 col-md-2 col-lg-1 control-label">真实姓名</label>
<div class="col-sm-8 col-lg-9 col-xs-12">
<input class="form-control" name="realname" id="" type="text" value="{$sort['realname']}" placeholder="可查询代理姓名">
</div>
</div>
<div class="form-group">
<label class="col-xs-12 col-sm-2 col-md-2 col-lg-1 control-label">手机号码</label>
<div class="col-sm-8 col-lg-9 col-xs-12">
<input class="form-control" name="mobile" id="" type="text" value="{$sort['mobile']}" placeholder="可查询手机号">
</div>
</div>
<div class="form-group"> <input type="submit" name="submit" value="搜 索" class="btn btn-primary"></div>
</form>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">代理列表:<span class="label label-success">{$total}</span> 位</div>
<div class="panel-body table-responsive">
<table class="table table-hover">
<thead class="navbar-inner">
<tr>
<th style="width:50px;">ID</th>
<th style="width:110px;">真实姓名</th>
<th style="width:110px;">手机号码</th>
<th style="width:200px;">银行卡</th>
<th style="width:100px;">支付宝</th>
<th style="width:100px;">微支付</th>
<th style="width:80px;">已打款</th>
<th style="width:60px; text-align:right;">操作</th>
</tr>
</thead>
<tbody>
{loop $list $v}
<tr>
<td>{$v['id']}</td>
<td>{$v['realname']}</td>
<td>{$v['mobile']}</td>
<td>
{if !empty($v['banktype'])}银行名称:{$v['banktype']}<br/>{/if}
{if !empty($v['bankcard'])}银行卡号:{$v['bankcard']}{/if}
</td>
<td>{$v['alipay']}</td>
<td>{$v['wxhao']}</td>
<td>{$v['zhifu']}</td>
<td style="width:60px; text-align:right;"><a href="{php echo create_url('site/entry', array('do' => 'zhifu', 'op' => 'post','m' => 'wwx_fxxt','uniacid'=>$_W['uniacid'],'from_user'=>$v['from_user']))}" class="btn btn-primary">明细</a></td>
</tr>
{/loop}
</tbody>
</table>
</div>
{$pager}
</div>
</div>
{template 'common/footer'}