国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
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.

103 lines
3.9KB

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>" />
  5. <title>点卡/会员历史定单 - 会员中心 - <?php echo $cfg_webname; ?></title>
  6. <link href="templets/style/base.css" rel="stylesheet" type="text/css" />
  7. <script type="text/javascript" src="../static/js/jquery.js"></script>
  8. <script type="text/javascript" src="templets/js/load.js"></script>
  9. <script type="text/javascript" src="templets/js/table_function.js"></script>
  10. <script type="text/javascript" src="templets/js/leftmenu.js"></script>
  11. <script type="text/javascript">
  12. //获得选中文件的文件名
  13. function GetCheckfolderItem()
  14. {
  15. var allSel='';
  16. if(document.form1.deleteid.value) return document.form1.deleteid.value;
  17. for(i=0;i<document.form1.deleteid.length;i++)
  18. {
  19. if(document.form1.deleteid[i].checked)
  20. {
  21. if(allSel=='')
  22. allSel=document.form1.deleteid[i].value;
  23. else
  24. allSel=allSel+","+document.form1.deleteid[i].value;
  25. }
  26. }
  27. return allSel;
  28. }
  29. function DoSubmit()
  30. {
  31. var selid = GetCheckfolderItem();
  32. if(selid=='') {
  33. alert("你没选中任何信息!");
  34. return false;
  35. }
  36. if(window.confirm("你确定要删除这些消息么?"))
  37. {
  38. location = "operation.php?dopost=del&ids="+selid;
  39. }
  40. }
  41. </script>
  42. </head>
  43. <body>
  44. <div id="main">
  45. <?php include(DEDEMEMBER."/templets/head.htm"); ?>
  46. <div id="content" class="w960 clearfix">
  47. <?php include(DEDEMEMBER."/templets/menu.php"); ?>
  48. <div id="mcpmain">
  49. <div id="appTab">
  50. <ul>
  51. <li><a href="buy.php">会员升级/点卡充值</a></li>
  52. <li class="thisTab"><a href="operation.php">点卡/会员定单</a></li>
  53. <li><a href="mypay.php" id="buy">我购买的文章</a></li>
  54. <li><a href="shops_orders.php">商品定单</a></li>
  55. <li><a href="shops_products.php" id="buy">我购买的商品</a></li>
  56. </ul>
  57. </div>
  58. <div id="mainCp">
  59. <!--内容消息提示 -->
  60. <h3 class="meTitle">点卡/会员定单</h3>
  61. <table width="100%" border="0" cellpadding="0" cellspacing="0" class="list">
  62. <thead>
  63. <tr>
  64. <th width="25%" colspan="2">订单号</th>
  65. <th width="25%">产品</th>
  66. <th>详细状态信息</th>
  67. <th width="10%">状态</th>
  68. <th width="10%">时间</th>
  69. </tr>
  70. </thead>
  71. <tbody>
  72. <form name='form1' action="operation.php" method="post">
  73. <input type='hidden' name='ftype' value='del' />
  74. {dede:datalist}
  75. <tr>
  76. <td align="center"><input type="checkbox" name="deleteid" value="{dede:field.aid/}"/></td>
  77. <td align="center">{dede:field.buyid/}</td>
  78. <td align="center"><?php echo $fields['pname']; ?></td>
  79. <td align="center"><?php echo $fields['oldinfo']; ?></td>
  80. <td align="center">{dede:field.sta function="GetSta(@me)" /}</td>
  81. <td align="center">{dede:field.mtime function="GetDateMk(@me)" /}</td>
  82. </tr>
  83. {/dede:datalist}
  84. <tr>
  85. <td colspan="6"><button id="checkedClick" type="button" class="greenBtn1">全选</button><button type="button" onclick="DoSubmit()" class="greenBtn3">删除选中</button></td></tr>
  86. </form>
  87. </tbody>
  88. <tfoot>
  89. <tr>
  90. <td colspan="7"><div class="pageList">{dede:pagelist listsize=5/}</div></td>
  91. </tr>
  92. </tfoot>
  93. </table>
  94. </div>
  95. <!--主操作区域 -->
  96. </div>
  97. </div>
  98. <?php include(DEDEMEMBER."/templets/foot.htm"); ?>
  99. </div>
  100. </body>
  101. </html>