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

191 lines
8.8KB

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="<?php echo $cfg_soft_lang; ?>">
  5. <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
  6. <title>查看会员</title>
  7. <link rel="stylesheet" href="../static/web/css/bootstrap.min.css">
  8. <link rel="stylesheet" href="../static/web/font/css/font-awesome.min.css">
  9. <link rel="stylesheet" href="../static/web/css/admin.css">
  10. <script src="../static/web/js/jquery.min.js"></script>
  11. <script src="../static/web/js/bootstrap.bundle.min.js"></script>
  12. <script src="js/main.js"></script>
  13. <script>
  14. function checkSubmit()
  15. {
  16. if(document.form2.email.value=="")
  17. {
  18. document.form2.email.focus();
  19. ShowMsg("Email不能为空");
  20. return false;
  21. }
  22. if(document.form2.uname.value=="")
  23. {
  24. document.form2.uname.focus();
  25. ShowMsg("用户昵称不能为空");
  26. return false;
  27. }
  28. }
  29. </script>
  30. </head>
  31. <body>
  32. <table width="98%" cellpadding="3" cellspacing="1" align="center" class="table maintable mt-3 mb-3">
  33. <tr>
  34. <td height="26" background="../static/web/img/tbg.gif" style="padding-left:10px"><a href='<?php echo $ENV_GOBACK_URL; ?>'>会员管理</a> &gt; 查看会员</td>
  35. </tr>
  36. <tr>
  37. <td height="200" align='center'>
  38. <?php
  39. if($row['matt']==10) echo "<span class='text-danger'>当前用户是网站管理员关连的帐号,请小心操作</span>";
  40. ?>
  41. <table width="98%" cellspacing="0" cellpadding="6" class="table table-borderless">
  42. <form name="form2" action="member_do.php" method="post" onSubmit="return checkSubmit();">
  43. <input type="hidden" name="dopost" value="edituser">
  44. <input type="hidden" name="id" value="<?php echo $id?>">
  45. <tr>
  46. <td width="260" height="26" class="bline">用户名:</td>
  47. <td height="26" class="bline">
  48. <?php
  49. echo "".$row['userid']."";
  50. if($row['face']!='') {
  51. echo "<br><img src='{$row['face']}' style='max-width:80px;height:auto'>";
  52. }
  53. ?>
  54. </td>
  55. </tr>
  56. <tr>
  57. <td height="26" class="bline">密码:</td>
  58. <td height="26" ><input type="text" name="pwd" id="pwd" style="width:260px">(不修改留空)</td>
  59. </tr>
  60. <tr>
  61. <td height="26" class="bline">注册时间:</td>
  62. <td height="26" class="bline">
  63. <?php echo GetDateTimeMk($row['jointime'])?>
  64. IP:<?php echo $row['joinip']?>
  65. </td>
  66. </tr>
  67. <tr>
  68. <td height="26" class="bline">最近登录时间:</td>
  69. <td height="26" class="bline">
  70. <?php echo GetDateTimeMk($row['logintime'])?>
  71. IP:<?php echo $row['loginip']?>
  72. </td>
  73. </tr>
  74. <tr>
  75. <td height="26" class="bline">用户类型:</td>
  76. <td height="26" ><?php echo $row['mtype']; ?></td>
  77. </tr>
  78. <tr>
  79. <td height="26" class="bline">电子邮箱:</td>
  80. <td height="26" class="bline"><input name="email" type="text" id="email" value="<?php echo $row['email']?>" style="width:260px"></td>
  81. </tr>
  82. <tr>
  83. <td height="26" class="bline">昵称:</td>
  84. <td height="26" class="bline"><input name="uname" type="text" value="<?php echo $row['uname']?>" id="uname" style="width:260px"></td>
  85. </tr>
  86. <tr>
  87. <td height="26" class="bline">性别:</td>
  88. <td height="26" class="bline">
  89. <label><input type="radio" name="sex" class="np" value="男"<?php if($row['sex']=="男" ) echo" checked='1'" ; ?>>
  90. 男</label> &nbsp;
  91. <label><input type="radio" name="sex" class="np" value="女"<?php if($row['sex']=="女" ) echo" checked='1'" ; ?>>
  92. 女</label>
  93. <label><input type="radio" name="sex" class="np" value=""<?php if($row['sex']=="" ) echo" checked='1'" ; ?>>
  94. 保密</label>
  95. </td>
  96. </tr>
  97. <tr>
  98. <td height="26" class="bline">金币 :</td>
  99. <td height="26" class="bline">
  100. <input name="money" type="text" id="money" value="<?php echo $row['money']; ?>" style="width:60px">
  101. 积分:<input name="scores" type="text" id="scores" value="<?php echo $row['scores']; ?>" style="width:60px">
  102. </td>
  103. </tr>
  104. <tr>
  105. <td height="26" class="bline">等级:</td>
  106. <td height="26" class="bline">
  107. <?php
  108. $MemberTypes = array();
  109. $dsql->SetQuery("Select `rank`,membername From `#@__arcrank` where `rank`>0");
  110. $dsql->Execute('n');
  111. $MemberTypes[0] = "限制会员";
  112. while($nrow = $dsql->GetObject('n')){
  113. $MemberTypes[$nrow->rank] = $nrow->membername;
  114. }
  115. $options = "<select name='rank' style='width:160px'>";
  116. foreach($MemberTypes as $k=>$v)
  117. {
  118. if($k!=$row['rank']) $options .= "<option value='$k'>$v</option>";
  119. else $options .= "<option value='$k' selected>$v</option>";
  120. }
  121. $options .= "</select>";
  122. echo $options;
  123. ?>
  124. </td>
  125. </tr>
  126. <tr>
  127. <td height="26" class="bline">升级时间:</td>
  128. <td height="26" class="bline"><input type="text" name="uptime" value="<?php echo $row['uptime']=($row['uptime']=='0')? GetDateTimeMk(time()) : GetDateTimeMk($row['uptime']); ?>" id="uptime" style="width:160px">(如果您要升级会员,必须设置此时间为当前时间)</td>
  129. </tr>
  130. <tr>
  131. <td height="26" class="bline">会员天数:</td>
  132. <td height="26" class="bline"><input type="text" name="exptime" value="<?php echo $row['exptime']?>" id="exptime" style="width:60px">(如果您要升级会员,会员天数必须大于0)</td>
  133. </tr>
  134. <?php if($mhasDay!=0){ $mhasDay=($mhasDay>0)? $mhasDay : '<span class="text-danger">该会员已经到期</span>'; ?>
  135. <tr>
  136. <td height="26" class="bline">会员剩余天数:</td>
  137. <td height="26" class="bline"><?php echo $mhasDay; ?></td>
  138. </tr>
  139. <tr>
  140. <?php } ?>
  141. <td height="26" class="bline">推荐级别:</td>
  142. <td height="26" class="bline">
  143. <input name="oldmatt" type="hidden" id="oldmatt" value="<?php echo $row['matt']?>" style="width:60px">
  144. <input name="matt" type="text" id="matt" value="<?php echo $row['matt']?>" style="width:60px">(0为普通,1为推荐,10为管理员不能在前台登录非管理员ID是严格使用10属性的,要新建管理在<a href='sys_admin_user_add.php' target='_blank'>系统帐号</a>地方增加)
  145. </td>
  146. </tr>
  147. <tr>
  148. <td height="26" class="bline">资料状况:</td>
  149. <td height="26" class="bline">
  150. <select name='spacesta' style='width:160px'>
  151. <?php
  152. foreach($staArr as $k=>$v)
  153. {
  154. if($row['spacesta']==$k) echo "<option value='$k' selected>$v</option>";
  155. else echo "<option value='$k'>$v</option>";
  156. }
  157. ?>
  158. </select>
  159. </td>
  160. </tr>
  161. <tr>
  162. <td height="26" height="60">空间信息:</td>
  163. <td height="26" class="bline">
  164. <?php
  165. $nrow = $dsql->GetOne("Select * From `#@__member_tj` where mid='{$row['mid']}' ");
  166. echo "文章:{$nrow['article']} 图集:{$nrow['album']} 文档:{$nrow['archives']} 收藏:{$nrow['stow']}";
  167. echo "<br>空间访问:{$nrow['homecount']} 页面访问:{$nrow['pagecount']} 留言:{$nrow['feedback']} 好友:{$nrow['friend']} ";
  168. ?>
  169. </td>
  170. </tr>
  171. <tr>
  172. <td height="26" class="bline">特殊操作:</td>
  173. <td height="26" class="bline">
  174. <a href="member_do.php?dopost=memberlogin&id=<?php echo $row['mid']; ?>&jumpurl=../user/edit_baseinfo.php" target="_blank" class="btn btn-success btn-sm">修改资料</a>
  175. <a href="member_do.php?dopost=memberlogin&id=<?php echo $row['mid']; ?>" target="_blank" class="btn btn-success btn-sm">登录此用户面板</a>
  176. </td>
  177. </tr>
  178. <tr>
  179. <td colspan="2" align="center" class="py-3">
  180. <button type="submit" name="Submit" class="btn btn-success btn-sm">保存</button>
  181. <button type="reset" name="Submit22" class="btn btn-success btn-sm">重置</button>
  182. <button type="button" onclick="javascript:history.go(-1);" class="btn btn-success btn-sm">返回</button>
  183. </td>
  184. </tr>
  185. </form>
  186. </table>
  187. </td>
  188. </tr>
  189. </table>
  190. </body>
  191. </html>