-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmy_pay.htm
53 lines (45 loc) · 1.18 KB
/
my_pay.htm
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
<!--{include header.htm}-->
<link href="view/my.css" type="text/css" rel="stylesheet" />
<div class="width">
<!--{include my_nav.inc.htm}-->
<div class="left border shadow bg2">
<!--{include my_menu.inc.htm}-->
</div>
<div class="right">
<div class="page tab" style="margin-bottom: 4px;">
<!--{include my_pay.inc.htm}-->
</div>
<div class="list">
<table class="table">
<tr class="header">
<td width="50" align="left">支付ID</td>
<td>支付时间</td>
<td>支付方式</td>
<td>金钱</td>
<td>支付状态</td>
<td>操作</td>
</tr>
<!--{if $paylist}-->
<!--{loop $paylist $pay}-->
<tr>
<td>$pay[payid]</td>
<td>$pay[dateline_fmt]</td>
<td>$pay[paytype_fmt]</td>
<td>$pay[payamount] 元</td>
<td>$pay[status_fmt]</td>
<td><!--{if !$pay[status]}--><a href="?pay-select-payid-$pay[payid].htm" target="_blank">开始支付</a><!--{/if}--></td>
</tr>
<!--{/loop}-->
<!--{else}-->
<tr>
<td colspan="6">无</td>
</tr>
<!--{/if}-->
</table>
</div>
<div class="page" style="text-align: center;">$pages</div>
</div>
</div>
<!--{include footer.htm}-->
</body>
</html>