国内流行的内容管理系统(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.

165 lines
6.9KB

  1. {dede:config.pagesize value="20"/}
  2. <!DOCTYPE html
  3. PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  4. <html xmlns="http://www.w3.org/1999/xhtml">
  5. <head>
  6. <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>">
  7. <title>网站会员管理</title>
  8. <link rel="stylesheet" href="../static/css/bootstrap.min.css">
  9. <link href="../static/font-awesome/css/font-awesome.min.css" rel="stylesheet">
  10. <link href="css/base.css" rel="stylesheet" type="text/css">
  11. <script src="js/ieemu.js"></script>
  12. <script language="javascript" src="js/member.js"></script>
  13. <style type="text/css">
  14. .rb {
  15. border-right: 1px solid #666666
  16. }
  17. .tb {
  18. border-top: 1px solid #666666
  19. }
  20. </style>
  21. </head>
  22. <body background='images/allbg.gif' leftmargin='8' topmargin='8'>
  23. <table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" bgcolor="#D6D6D6"
  24. style="margin-bottom:6px" class="table maintable table-bordered mt-3">
  25. <tr>
  26. <td height="30" align="center" bgcolor="#F9FCEF">
  27. <form action="member_main.php" name="form1" method="get">
  28. <table border="0" cellspacing="0" cellpadding="3" class="table table-borderless" style="width: 790px;">
  29. <tr>
  30. <td>关键字:</td>
  31. <td><input name="keyword" type="text" id="keyword" size="12" style="width:120px"
  32. value="{dede:global name='keyword'/}" /></td>
  33. <td>&nbsp;排序:</td>
  34. <td>
  35. <select name="sortkey" id="sortkey" style="width:120px">
  36. {dede:global name='sortform'/}
  37. <option value="mid">mid/注册时间</option>
  38. <option value="logintime">登录时间</option>
  39. <option value="rank">会员等级</option>
  40. <option value="money">会员金币</option>
  41. <option value="scores">会员积分</option>
  42. </select>
  43. </td>
  44. <td>
  45. <select name="sex" id="sex" style="width:60px">
  46. {dede:global name='sexform'/}
  47. <option value="男">男</option>
  48. <option value="女">女</option>
  49. <option value="保密">保密</option>
  50. </select>
  51. </td>
  52. <td>
  53. <select name="spacesta" id="spacesta" style="width:150px">
  54. <option value='-10'>--会员状态--</option>
  55. <?php
  56. foreach($staArr as $k=>$v)
  57. {
  58. if($spacesta==$k) echo "<option value='$k' selected>$v</option>\r\n";
  59. else echo "<option value='$k'>$v</option>\r\n";
  60. }
  61. ?>
  62. </select></td>
  63. <td>
  64. <button type="submit" class="btn btn-success btn-sm">搜索</button>
  65. </td>
  66. </tr>
  67. </table>
  68. </form>
  69. </td>
  70. </tr>
  71. </table>
  72. <form name="form2">
  73. <table width="98%" border="0" align="center" cellpadding="2" cellspacing="1" bgcolor="#cfcfcf"
  74. class="table table-bordered maintable">
  75. <tr>
  76. <td height="28" colspan="9" background="images/tbg.gif">
  77. <table width="99%" border="0" cellspacing="0" cellpadding="0" class="table table-borderless">
  78. <tr>
  79. <td width="29%" style="padding-left:10px;"><strong>注册会员列表</strong></td>
  80. <td width="71%" align="right">
  81. <a href="member_main.php">所有会员</a> |
  82. <a href="member_main.php?spacesta=-2">被禁言用户</a> |
  83. <a href="member_main.php?matt=1">被推荐</a> |
  84. <a href="member_main.php?matt=0">普通</a> &nbsp;
  85. </td>
  86. </tr>
  87. </table>
  88. </td>
  89. </tr>
  90. <tr bgcolor="#FEFCEF" height="30" align="center">
  91. <td width="6%">选择</td>
  92. <td width="5%">mid</td>
  93. <td width="11%">登录名</td>
  94. <td width="16%">email/昵称</td>
  95. <td width="5%">性别</td>
  96. <td width="8%">会员等级</td>
  97. <td width="15%">会员属性</td>
  98. <td width="14%">最后登录</td>
  99. <td>操作</td>
  100. </tr>
  101. {dede:datalist}
  102. <tr height="26" align="center" bgcolor="#FFFFFF" onMouseMove="javascript:this.bgColor='#FCFDEE';"
  103. onMouseOut="javascript:this.bgColor='#FFFFFF';">
  104. <td><input name="mid" type="checkbox" id="mid" value="{dede:field.mid/}" class="np" /></td>
  105. <td>{dede:field.mid/}</td>
  106. <td><a href="../member/index.php?uid={dede:field.userid/}" target='_blank'>
  107. <?php
  108. echo '<u>'.$fields['userid'].'</u>';
  109. if($fields['spacesta']==-2) echo "<font color='red'>(禁言)</font>";
  110. if($fields['spacesta']==-1) echo "<font color='red'>(未审核)</font>";
  111. if(!empty($fields['face'])) {
  112. echo "<br /><img src='{$fields['face']}' width='60' alt='浏览会员空间' />";
  113. }
  114. ?>
  115. </a></td>
  116. <td>
  117. {dede:field.email/}
  118. <br />
  119. 昵称:{dede:field.uname/}
  120. </td>
  121. <td>
  122. {dede:field.sex /}
  123. </td>
  124. <td>
  125. <a href="member_main.php?rank={dede:field.rank/}">{dede:field.rank function="GetMemberName(@me,'限制会员')"/}</a>
  126. </td>
  127. <td>
  128. {dede:field.mtype /}用户 {dede:field.matt function="GetMAtt(@me)" /}
  129. <br />
  130. 金币:{dede:field.money /} 积分:{dede:field.scores /}
  131. </td>
  132. <td>
  133. {dede:field.logintime function="MyDate('y-m-d H:i',@me)" /}
  134. <br />
  135. 【{dede:field.loginip /}】
  136. </td>
  137. <td align="center">
  138. <a href="member_view.php?id={dede:field.mid/}" class="btn btn-success btn-sm">修改</a>
  139. <a href="member_do.php?id={dede:field.mid/}&dopost=delmember" class="btn btn-success btn-sm">删除</a>
  140. <a href="content_list.php?mid={dede:field.mid/}" target="_blank" class="btn btn-success btn-sm">文档</a>
  141. <a href="member_toadmin.php?id={dede:field.mid/}" target="_self" class="btn btn-success btn-sm">提升</a>
  142. </td>
  143. </tr>
  144. {/dede:datalist}
  145. <tr bgcolor="#ffffff">
  146. <td height="36" colspan="9">
  147. &nbsp;
  148. <button type="button" onClick="selAll();" class="btn btn-success btn-sm">全选</button>
  149. <button type="button" onClick="noSelAll();" class="btn btn-success btn-sm">取消</button>
  150. <button type="button" onClick="delArc(0);" class="btn btn-success btn-sm">删除</button>
  151. (如果已经整合了论坛的用户请不要使用批量删除功能)</td>
  152. </tr>
  153. <tr bgcolor="#F9FCEF">
  154. <td height="36" colspan="9" align="center">
  155. {dede:pagelist listsize='6' /}
  156. </td>
  157. </tr>
  158. </table>
  159. </form>
  160. </body>
  161. </html>