fxtx.html
5.67 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
{template 'public/header'}
{template 'public/comhead'}
<link rel="stylesheet" type="text/css" href="../addons/zh_cjdianc/template/public/ygcsslist.css">
<style type="text/css">
.yg5_key>div{float: left;line-height: 34px;}
.store_td1{height: 45px;}
.store_list_img{width: 60px;height: 60px;}
.yg5_tabel{border-color: #e5e5e5;outline: 1px solid #e5e5e5;text-align: center;}
.yg5_tr2>td{padding: 15px;border: 1px solid #e5e5e5;}
.yg5_tr1>td{
border: 1px solid #e5e5e5;
background-color: #FAFAFA;
font-weight: bold;
}
.yg5_btn{background-color: #EEEEEE;color: #333;border: 1px solid #E4E4E4;border-radius: 6px;width: 100px;height: 34px;}
.check_img{width: 45px;height: 45px;}
.ygrow{margin-top: 20px;}
/*#frame-9{display: block;visibility: visible;}*/
</style>
<ul class="nav nav-tabs">
<span class="ygxian"></span>
<div class="ygdangq">当前位置:</div>
<li {if $type=='wait'} class="active" {/if}><a href="{php echo $this->createWebUrl('fxtx',array('type'=>wait,'state'=>1));}">待提现</a></li>
<li {if $type=='now'} class="active" {/if}><a href="{php echo $this->createWebUrl('fxtx',array('type'=>now,'state'=>2));}">提现通过</a></li>
<li {if $type=='delivery'} class="active" {/if}><a href="{php echo $this->createWebUrl('fxtx',array('type'=>delivery,'state'=>3));}">提现拒绝</a></li>
<li {if $type=='all'} class="active" {/if}><a href="{php echo $this->createWebUrl('fxtx',array('type'=>all));}">全部</a></li>
</ul>
<div class="row ygrow">
<div class="col-lg-12">
<form action="" method="POST" class="col-md-6">
<div class="input-group" style="width: 300px">
<input type="text" name="keywords" class="form-control" placeholder="请输入用户名称">
<span class="input-group-btn">
<input type="submit" class="btn btn-default" name="submit" value="查找"/>
</span>
</div>
<input type="hidden" name="token" value="{$_W['token']}"/>
</form>
</div><!-- /.col-lg-6 -->
</div>
<div class="main">
<div class="panel panel-default">
<div class="panel-heading">
审核管理
</div>
<div class="panel-body" style="padding: 0px 15px;">
<div class="row">
<table class="yg5_tabel col-md-12">
<tr class="yg5_tr1">
<td class="store_td1">用户姓名</td>
<td>联系电话</td>
<td>提现金额</td>
<td>实际金额</td>
<td>申请时间</td>
<td>审核状态</td>
<td>操作</td>
</tr>
{loop $list $key $item}
<tr class="yg5_tr2">
<td class="store_td1">{$item['user_name']}</td>
<td>{$item['account']}</td>
<td>{$item['tx_cost']}</td>
<td>{$item['sj_cost']}</td>
<td>{php echo date("Y-m-d H:i:s",$item['time'])}</td>
{if $item['state']==1}
<td >
<span class="label label-warning">待审核</span>
</td >
{elseif $item['state']==2}
<td >
<span class="label label-success">已提现</span>
</td>
{elseif $item['state']==3}
<td >
<span class="label label-primary">已拒绝</span>
</td>
{/if}
<td>
{if $item['state']==1}
<a class="btn storesuccess btn-xs" href="{php echo $this->createWebUrl('fxtx',array('id'=>$item['id'],'op'=>'adopt2'))}" >微信打款</a>
<a class="btn storeinfo btn-xs" href="{php echo $this->createWebUrl('fxtx',array('id'=>$item['id'],'op'=>'adopt'))}" >线下打款</a>
<a class="btn storewarning btn-xs" href="{php echo $this->createWebUrl('fxtx', array('id' => $item['id'],'op'=>'reject'))}" title="拒绝">拒绝</a>
{else}
<a class="btn storeinfo btn-xs" href="" >已操作</a>
{/if}
<!-- <a href="{php echo $this->createWebUrl('fxtx', array('id' => $item['id'],'op'=>'delete'))}" class="storespan btn btn-xs" onclick="return confirm('确认删除吗?');return false;">
<span class="fa fa-trash-o"></span>
<span class="bianji">删除
<span class="arrowdown"></span>
</span>
</a> -->
<!-- <a class="btn btn-danger btn-xs" href="{php echo $this->createWebUrl('fxtx', array('id' => $item['id'],'op'=>'delete'))}" onclick="return confirm('确认删除吗?');return false;" title="删除">删</a> -->
</td>
</td>
</tr>
{/loop}
{if empty($list)}
<tr class="yg5_tr2">
<td colspan="9">
暂无提现信息
</td>
</tr>
{/if}
</table>
</div>
</div>
</div>
</div>
<div class="text-right we7-margin-top">
{$pager}
</div>
<script type="text/javascript">
$(function(){
// $("#frame-9").addClass("in");
$("#frame-9").show();
$("#yframe-9").addClass("wyactive");
})
</script>
{template 'common/footer'}