bhq@iemsoft.cn
2018-11-27 e2b48dac099e43f4b3243cdf19a7522e4b5eccbe
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=0"/>
<title>提现明细</title>
<!--v_shop.css-->
<link href="themesmobile/68ecshopcom_mobile/css/v_user.css" type="text/css" rel="stylesheet">
</head>
<body >
<!--header-->
<div class="top">
<dl>
<dt><a href="v_user_tixian.php"></a></dt>
<dd>提现明细</dd>
</dl>
</div>
<!--main-->
<div class="main">
<table width="100%" border="0" cellspacing="0" cellpadding="0" style=" border-bottom:1px solid #CCC">
  <tr>
    <td width="30%" align="center" height="40">编号</td>
    <td width="40%" align="center">日期</td>
    <td width="40%" align="center">金额</td>
  </tr>
</table>
{if $deposit_list}
{foreach from=$deposit_list item=list}
<table width="100%" border="0" cellspacing="0" cellpadding="0" style=" border-bottom:1px solid #CCC">
  <tr>
      <td width="30%" align="center">{$list.id}</td>
    <td width="40%" align="center" height="40">{$list.add_time}</td>
    <td width="30%" align="center">{$list.deposit_money}</td>
  </tr>
</table>
{/foreach}
{else}
<table width="100%" border="0" cellspacing="0" cellpadding="0" style=" border-bottom:1px solid #CCC">
  <tr>
   <td colspan="4" align="center">暂无提现记录</td>
  </tr>
</table>
{/if}
 
</div>
<div class="next_page">
 
</div> 
<!-----底部悬浮菜单---->
<!-- #BeginLibraryItem "/library/vshop_footer.lbi" --><!-- #EndLibraryItem --> 
</body>
</html>