balance.html
1.6 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
<include file="public@header"/>
</head>
<body>
<div class="wrap">
<ul class="nav nav-tabs">
<li><a href="{:url('index')}">{:lang('USER_INDEXADMIN_INDEX')}</a></li>
<li class="active"><a href="javascript:;">积分详情</a></li>
</ul>
<table class="table table-hover table-bordered" style="width: 50%;margin-top: 30px">
<thead>
<tr>
<th>类型</th>
<th>变更时间</th>
<th>变更额度</th>
<!--<th>变更后余额</th>-->
</tr>
</thead>
<tbody>
<foreach name="list" item="vo">
<tr>
<td>
<if condition="$vo.type eq 1">
购物收入
<elseif condition="$vo.type eq 2">
购物支出
<elseif condition="$vo.type eq 3">
好友赠送收入
<elseif condition="$vo.type eq 4">
好友赠送支出
<elseif condition="$vo.type eq 5">
好友购物返利
</if>
</td>
<td>{:date('Y-m-d H:i',$vo.create_time)}</td>
<td>{$vo['balance']}</td>
</tr>
</foreach>
</tbody>
</table>
<div class="pagination">{$page}</div>
</div>
<script src="__STATIC__/js/admin.js"></script>
</body>
</html>