|
- <!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/jquery.min.js"></script>
- <script type="text/javascript" src="templets/js/load.js"></script>
- <script type="text/javascript" src="templets/js/table_function.js"></script>
- <script type="text/javascript" src="templets/js/leftmenu.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 = "operation.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 class="thisTab"><a href="operation.php">点卡/会员定单</a></li>
- <li><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="25%" colspan="2">订单号</th>
- <th width="25%">产品</th>
- <th>详细状态信息</th>
- <th width="10%">状态</th>
- <th width="10%">时间</th>
- </tr>
- </thead>
- <tbody>
- <form name='form1' action="operation.php" method="post">
- <input type='hidden' name='ftype' value='del' />
- {dede:datalist}
- <tr>
- <td align="center"><input type="checkbox" name="deleteid" value="{dede:field.aid/}"/></td>
- <td align="center">{dede:field.buyid/}</td>
- <td align="center"><?php echo $fields['pname']; ?></td>
- <td align="center"><?php echo $fields['oldinfo']; ?></td>
- <td align="center">{dede:field.sta function="GetSta(@me)" /}</td>
- <td align="center">{dede:field.mtime function="GetDateMk(@me)" /}</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>
- </form>
- </tbody>
- <tfoot>
- <tr>
- <td colspan="7"><div class="pageList">{dede:pagelist listsize=5/}</div></td>
- </tr>
- </tfoot>
- </table>
- </div>
- <!--主操作区域 -->
- </div>
- </div>
- <?php include(DEDEMEMBER."/templets/foot.htm"); ?>
- </div>
- </body>
- </html>
|