mypay.htm
3.73 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
<!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 http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>" />
<title>我购买的文章 - 会员中心 - <?php echo $cfg_webname; ?></title>
<link href="templets/style/base.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="templets/js/j.js"></script>
<script type="text/javascript" src="templets/js/load.js"></script>
<script type="text/javascript" src="templets/js/leftmenu.js"></script>
<script type="text/javascript" src="templets/js/table_function.js"></script>
<script type="text/javascript">
//获得选中文件的文件名
function GetCheckfolderItem()
{
var allSel='';
if(document.form1.deleteid.value) return document.form1.deleteid.value;
for(i=0;i<document.form1.deleteid.length;i++)
{
if(document.form1.deleteid[i].checked)
{
if(allSel=='')
allSel=document.form1.deleteid[i].value;
else
allSel=allSel+","+document.form1.deleteid[i].value;
}
}
return allSel;
}
function DoSubmit()
{
var selid = GetCheckfolderItem();
if(selid=='') {
alert("你没选中任何信息!");
return false;
}
if(window.confirm("你确定要删除这些消息么?"))
{
location = "mypay.php?dopost=del&ids="+selid;
}
}
</script>
</head>
<body>
<div id="main">
<?php include(DEDEMEMBER."/templets/head.htm"); ?>
<div id="content" class="w960 clearfix">
<?php include(DEDEMEMBER."/templets/menu.php"); ?>
<div id="mcpmain">
<div id="appTab">
<ul>
<li><a href="buy.php">会员升级/点卡充值</a></li>
<li><a href="operation.php">点卡/会员定单</a></li>
<li class="thisTab"><a href="mypay.php" id="buy">我购买的文章</a></li>
<li><a href="shops_orders.php">商品定单</a></li>
<li><a href="shops_products.php" id="buy">我购买的商品</a></li>
</ul>
</div>
<div id="mainCp">
<h3 class="meTitle">我购买的文章</h3>
<table width="100%" border="0" cellpadding="0" cellspacing="0" class="list">
<thead>
<tr>
<th width="5%"></th>
<th width="5%">ID</th>
<th >标题</th>
<th width="10%">消费金币</th>
<th width="20%">消费时间</th>
</tr>
</thead>
<form name='form1' action="mypay.php" method="post">
<input type='hidden' name='dopost' value='del' />
<tbody>
{dede:datalist}
<tr>
<td align="center"><input type="checkbox" name="deleteid" value="{dede:field.aid/}"/></td>
<td align="center"><?php echo $fields['aid']; ?></td>
<td>
<?php
echo '<a href="../plus/view.php?aid='.str_replace('ARCHIVE', '', $fields['buyid']).'" target="_blank">'.$fields['oldinfo'].'</a>';
?>
</td>
<td align="center"><?php echo $fields['money']; ?></td>
<td align="center"><?php echo GetDateTimeMk($fields['mtime']); ?></td>
</tr>
{/dede:datalist}
<tr>
<td colspan="6"><button id="checkedClick" type="button" class="greenBtn1">全选</button><button type="button" onclick="DoSubmit()" class="greenBtn3">删除选中</button></td></tr></tbody>
</form>
<tfoot>
<tr>
<td colspan="7"><div class="pageList">{dede:pagelist listsize=5/}</td>
</tr>
</tfoot>
</table>
</div>
<!--主操作区域 -->
</div>
</div>
<?php include(DEDEMEMBER."/templets/foot.htm"); ?>
</div>
</body>
</html>