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

136 lines
6.2KB

  1. {dede:config.pagesize value="30"/}
  2. <!DOCTYPE html>
  3. <html>
  4. <head>
  5. <meta charset="<?php echo $cfg_soft_lang; ?>">
  6. <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
  7. <title>网站会员管理</title>
  8. <link rel="stylesheet" href="../static/web/css/bootstrap.min.css">
  9. <link rel="stylesheet" href="../static/web/font/css/font-awesome.min.css">
  10. <link rel="stylesheet" href="../static/web/css/admin.css">
  11. <script src="js/ieemu.js"></script>
  12. <script src="js/member.js"></script>
  13. </head>
  14. <body>
  15. <form action="member_main.php" name="form1" method="get">
  16. <table width="98%" cellpadding="1" cellspacing="1" align="center" class="mt-3 mb-3" style="border:1px solid #dee2e6">
  17. <tr>
  18. <td height="36" bgcolor="#f8f8f8">
  19. <table cellpadding="0" cellspacing="0">
  20. <tr>
  21. <td width="280" align="center"><input name="keyword" type="text" id="keyword" placeholder="请输入关键词" value="{dede:global name='keyword'/}" style="width:260px"></td>
  22. <td width="170">
  23. <select name="sortkey" id="sortkey" style="width:160px">
  24. {dede:global name='sortform'/}
  25. <option value="mid">mid/注册时间</option>
  26. <option value="logintime">登录时间</option>
  27. <option value="rank">会员等级</option>
  28. <option value="money">会员金币</option>
  29. <option value="scores">会员积分</option>
  30. </select>
  31. </td>
  32. <td width="170">
  33. <select name="sex" id="sex" style="width:160px">
  34. {dede:global name='sexform'/}
  35. <option value="男">男</option>
  36. <option value="女">女</option>
  37. <option value="保密">保密</option>
  38. </select>
  39. </td>
  40. <td width="170">
  41. <select name="spacesta" id="spacesta" style="width:160px">
  42. <option value='-10'>会员状态</option>
  43. <?php
  44. foreach($staArr as $k=>$v)
  45. {
  46. if($spacesta==$k) echo "<option value='$k' selected>$v</option>";
  47. else echo "<option value='$k'>$v</option>";
  48. }
  49. ?>
  50. </select>
  51. </td>
  52. <td><button type="submit" class="btn btn-success btn-sm">搜索</button></td>
  53. </tr>
  54. </table>
  55. </td>
  56. </tr>
  57. </table>
  58. </form>
  59. <form name="form2">
  60. <table width="98%" align="center" cellpadding="2" cellspacing="1" class="table maintable mb-3">
  61. <tr>
  62. <td height="26" colspan="9" background="../static/web/img/tbg.gif">
  63. <table width="99%" cellspacing="0" cellpadding="0" class="table table-borderless">
  64. <tr>
  65. <td width="30%" style="padding-left:10px">注册会员列表</td>
  66. <td width="70%" align="right" style="padding-right:10px">
  67. <a href="member_main.php">所有会员</a> |
  68. <a href="member_main.php?spacesta=-2">被禁言用户</a> |
  69. <a href="member_main.php?matt=1">被推荐</a> |
  70. <a href="member_main.php?matt=0">普通</a>
  71. </td>
  72. </tr>
  73. </table>
  74. </td>
  75. </tr>
  76. <tr bgcolor="#FEFCEF" height="26" align="center">
  77. <td width="6%">选择</td>
  78. <td width="6%">mid</td>
  79. <td width="10%">登录名</td>
  80. <td width="16%">email/昵称</td>
  81. <td width="6%">性别</td>
  82. <td width="8%">会员等级</td>
  83. <td width="15%">会员属性</td>
  84. <td width="10%">最后登录</td>
  85. <td>操作</td>
  86. </tr>
  87. {dede:datalist empty='<tr><td colspan="9"><center>暂无内容</center></td></tr>'}
  88. <tr height="26" align="center" onmousemove="javascript:this.bgColor='#F8FCF1';" onmouseout="javascript:this.bgColor='#ffffff';">
  89. <td><input name="mid" type="checkbox" id="mid" value="{dede:field.mid/}" class="np"></td>
  90. <td>{dede:field.mid/}</td>
  91. <td><a href="../user/index.php?uid={dede:field.userid/}" target='_blank'>
  92. <?php
  93. echo ''.$fields['userid'].'';
  94. if($fields['spacesta']==-2) echo "<span class='text-danger'>[禁言]</span>";
  95. if($fields['spacesta']==-1) echo "<span style='color:#e74d58'>[未审核]</span>";
  96. if(!empty($fields['face'])) {
  97. echo "<br><img src='{$fields['face']}' title='浏览会员空间' style='max-width:80px;height:auto'>";
  98. }
  99. ?>
  100. </a>
  101. </td>
  102. <td>{dede:field.email/}<br>
  103. 昵称:{dede:field.uname/}
  104. </td>
  105. <td>
  106. {dede:field.sex /}
  107. </td>
  108. <td><a href="member_main.php?rank={dede:field.rank/}">{dede:field.rank function="GetMemberName(@me,'限制会员')"/}</a></td>
  109. <td>{dede:field.mtype /} 用户 {dede:field.matt function="GetMAtt(@me)" /}<br>
  110. 金币:{dede:field.money /} 积分:{dede:field.scores /}
  111. </td>
  112. <td>{dede:field.logintime function="MyDate('y-m-d H:i',@me)" /}<br>
  113. {dede:field.loginip /}
  114. </td>
  115. <td align="center">
  116. <a href="member_view.php?id={dede:field.mid/}" class="btn btn-success btn-sm">修改</a>
  117. <a href="member_do.php?id={dede:field.mid/}&dopost=delmember" class="btn btn-success btn-sm">删除</a>
  118. <a href="content_list.php?mid={dede:field.mid/}" target="_self" class="btn btn-success btn-sm">文档</a>
  119. <a href="member_toadmin.php?id={dede:field.mid/}" target="_self" class="btn btn-success btn-sm">提升</a>
  120. </td>
  121. </tr>
  122. {/dede:datalist}
  123. <tr>
  124. <td colspan="9" class="py-3">
  125. <button type="button" onClick="selAll();" class="btn btn-success btn-sm">全选</button>
  126. <button type="button" onClick="noSelAll();" class="btn btn-success btn-sm">取消</button>
  127. <button type="button" onClick="delArc(0);" class="btn btn-success btn-sm">删除</button>(如果已经整合了论坛的用户请不要使用批量删除功能)
  128. </td>
  129. </tr>
  130. <tr>
  131. <td height="36" bgcolor="f8f8f8" colspan="9" align="center">{dede:pagelist listsize='6'/}</td>
  132. </tr>
  133. </table>
  134. </form>
  135. </body>
  136. </html>