You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
74 lines
2.0 KiB
74 lines
2.0 KiB
<?php
|
|
if(!defined('InEmpireCMS'))
|
|
{
|
|
exit();
|
|
}
|
|
?>
|
|
<?php
|
|
$public_diyr['pagetitle']='点卡充值记录';
|
|
$url="<a href=../../../>首页</a> > <a href=../cp/>会员中心</a> > 点卡充值记录";
|
|
require(ECMS_PATH.'e/template/incfile/header.php');
|
|
?>
|
|
<table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
|
|
<tr class="header">
|
|
<td width="12%"><div align="center">类型</div></td>
|
|
<td width="36%" height="25"><div align="center">充值卡号</div></td>
|
|
<td width="10%" height="25"><div align="center">充值金额</div></td>
|
|
<td width="10%" height="25"><div align="center">购买点数</div></td>
|
|
<td width="10%"><div align="center">有效期</div></td>
|
|
<td width="22%" height="25"><div align="center">购买时间</div></td>
|
|
</tr>
|
|
<?php
|
|
while($r=$empire->fetch($sql))
|
|
{
|
|
//类型
|
|
if($r['type']==0)
|
|
{
|
|
$type='点卡充值';
|
|
}
|
|
elseif($r['type']==1)
|
|
{
|
|
$type='在线充值';
|
|
}
|
|
elseif($r['type']==2)
|
|
{
|
|
$type='充值点数';
|
|
}
|
|
elseif($r['type']==3)
|
|
{
|
|
$type='充值金额';
|
|
}
|
|
else
|
|
{
|
|
$type='';
|
|
}
|
|
?>
|
|
<tr bgcolor="#FFFFFF">
|
|
<td><div align="center">
|
|
<?=$type?>
|
|
</div></td>
|
|
<td height="25"><div align="center">
|
|
<?=$r[card_no]?>
|
|
</div></td>
|
|
<td height="25"><div align="center">
|
|
<?=$r[money]?>
|
|
</div></td>
|
|
<td height="25"><div align="center">
|
|
<?=$r[cardfen]?>
|
|
</div></td>
|
|
<td><div align="center"><?=$r[userdate]?></div></td>
|
|
<td height="25"><div align="center">
|
|
<?=$r[buytime]?>
|
|
</div></td>
|
|
</tr>
|
|
<?php
|
|
}
|
|
?>
|
|
<tr bgcolor="#FFFFFF">
|
|
<td height="25" colspan="6">
|
|
<?=$returnpage?> </td>
|
|
</tr>
|
|
</table>
|
|
<?php
|
|
require(ECMS_PATH.'e/template/incfile/footer.php');
|
|
?>
|