Discuz!官方免费开源建站系统

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

[HACK]PP的侧边栏~和MYSKY是绝配哦~(已经放出我自己修改的)

[复制链接]
freddy 发表于 2005-8-18 10:21:34 | 显示全部楼层
加分了!之前忘处理了!不好意思!
回复

使用道具 举报

mickeycai 发表于 2005-8-19 09:52:35 | 显示全部楼层
怎么像文文一样把头像和个人的宠物和个人形象弄上去呢?
回复

使用道具 举报

zclion 发表于 2005-8-19 11:48:16 | 显示全部楼层
我要了!收藏!
回复

使用道具 举报

 楼主| PerfectWorks 发表于 2005-8-19 12:31:41 | 显示全部楼层
原帖由 mickeycai 于 2005-8-19 09:52 发表
怎么像文文一样把头像和个人的宠物和个人形象弄上去呢?

个人形象弄了一下午才搞定
不过可能不适合你……
你试试吧
侧边栏函数
  1. //侧边栏所需函数
  2. //===========================================================================================

  3. //个人资料-start
  4. if($discuz_user){
  5.         $query = $db->query("SELECT avatar,money,postnum,bank,customstatus,regdate,location,onlinetime,bankmimi,bankstatus,luck,warning,gender,medals FROM $table_members WHERE uid='$discuz_uid'");
  6.         $index_left = $db->fetch_array($query);
  7.         $index_left[avatar] = $index_left[avatar] ? "<img align=center src="$index_left[avatar]" onload="if(this.width>140) {this.resized=true; this.width=140; }"} border="0">" : "<img align=center src="images/common/noavatar.gif" border="0">";
  8. //------------------------------------------------------------虚拟形象
  9.         require_once('./virtualimage/images_config.php');
  10.         $imagesset = $setting;
  11.         unset($setting);
  12.         if($imagesset[openalpha]){
  13.                 $alpha = "FILTER: alpha(opacity="+WearArray[i]+")";
  14.         }
  15.         $imagesdatas = '';                           
  16.         if ($index_left[gender]==1){
  17.                 $imagesdata[tempequip] = '0-0-0-0-0-0-0-0-init-init-0-init-0-init-init-0-0-0-init-0-0-0-0-0-0-0';  //男性的初始值
  18.                 $imagesdata[sex] = "m";
  19.                 $imagesdata[upid] = "init";
  20.         }elseif ($index_left[gender]==2){
  21.                 $imagesdata[tempequip] = '0-0-0-0-0-0-0-0-initf-initf-0-initf-0-initf-initf-0-0-0-initf-0-0-0-0-0-0-0'; //女性的初始值
  22.                 $imagesdata[sex] = "f";
  23.                 $imagesdata[upid] = "initf";
  24.         }

  25.         $imagesdata[pid] = 1;
  26.         $imagesdata[uid] = $discuz_uid;
  27.         $imagesdatas[] = $imagesdata;

  28.         $index_left['vavatar'] = "
  29.         <!-- 虚拟形象开始-->
  30.         <DIV id='Show1'
  31.         style="PADDING-RIGHT: 0px; PADDING-LEFT: 0px; LEFT: 0px; PADDING-BOTTOM: 0px; WIDTH: 120px; PADDING-TOP: 0px; POSITION: relative; TOP: 0px; HEIGHT: 150px"></DIV>
  32.         <!-- 虚拟形象结束-->";

  33.         if($imagesdatas!=''){
  34.                 $showimages = '';
  35.                 require_once('./virtualimage/global.php');
  36.                 $showimages = images_showimages($imagesdatas,$alhpa,$imagesset[imageurl]);
  37.                 unset($imagesdatas,$imagesdata,$alpha);
  38.         }
  39.        
  40.         $cachetime = 3600;

  41.         if(($timestamp-$_DCACHE[vavatar][2])>$cachetime){
  42.                 require_once DISCUZ_ROOT.'./include/cache.php';
  43.                 updatecache('vavatar');
  44.         }
  45. //--------------------------------------------------------------       
  46. //--------------------------------------------------------------勋章
  47. if($index_left['medals']){
  48.         $medalshow = $_DCACHE[medalist];
  49.         $medalid = strtok($index_left['medals'],",");
  50.         $medalout='';
  51.         while($medalid){
  52.                 $medalout.= $medalshow[$medalid];
  53.                 $medalid = strtok(",");
  54.         }
  55.         $index_left['medals'] = $medalout;
  56. }
  57. //--------------------------------------------------------------
  58.         $index_left['regdate'] = gmdate($dateformat, $index_left['regdate'] + $timeoffset * 3600);
  59.         $onlinehour = intval($index_left[onlinetime]/3600);
  60.         $onlinemin = intval($index_left[onlinetime]%3600/60);
  61. }
  62. //个人资料-end
  63. //今日到访-start
  64. $todayT = mktime(0,0,0,date("m"),date("d"),date("Y"));

  65.                 $query = $db->query("SELECT username,FROM_UNIXTIME(lastvisit) as lastvisit FROM $table_members WHERE lastvisit>='$todayT' ORDER BY lastvisit DESC LIMIT 0, 500");
  66.                
  67.                 $todaymembersnum = 0;
  68.                 $todaymembers = '';
  69.                 $comma = '';
  70.                
  71.                 while ($memberstoday = $db->fetch_array($query)) {
  72.                         $todaymembers .= "$comma<a href=viewpro.php?username=$memberstoday[username] title='最近登录时间:$memberstoday[lastvisit]' target='_bank'>$memberstoday[username]</a>";
  73.                         ++$todaymembersnum;
  74.                         $comma = ",";
  75.                         }
  76. //今日到访-end
  77. //新回复-start
  78. $hack_cut_str = 24; //修改標題顯示字數
  79. $new_reply_threadlist = array();
  80. $rthread = array();
  81. $query = $db->query("SELECT t.*, f.name FROM $table_threads t, $table_forums f WHERE f.password='' AND t.fid<>'$fid' AND (f.viewperm='' or  f.viewperm LIKE '%\t$groupid\t%') AND f.fid=t.fid  AND t.closed NOT LIKE 'moved|%' AND t.replies !=0 ORDER BY t.lastpost DESC LIMIT 0, 20");
  82. while($rthread = $db->fetch_array($query)) {
  83.                 if($rthread['hide']){$rthread['author']='【身份隐藏】';}
  84.         $rthread['forumname'] = $rthread['name'];
  85.         $rthread['view_subject'] = cutstr($rthread['subject'],$hack_cut_str);
  86. $rthread['date']= gmdate("$dateformat $timeformat", $rthread['dateline'] + $timeoffset * 3600);
  87.         $rthread['lastreplytime']= gmdate("$dateformat $timeformat", $rthread[lastpost] + ($timeoffset * 3600));
  88.         $new_reply_threadlist[] = $rthread;
  89. }
  90. //新回复-end
  91. //新帖子-start
  92. $hack_cut_str = 24; //修改標題顯示字數
  93. $new_post_threadlist = array();
  94. $nthread = array();
  95. $query = $db->query("SELECT t.*, f.name FROM $table_threads t, $table_forums f WHERE f.password='' AND t.fid<>'$fid' AND (f.viewperm='' or f.viewperm LIKE '%\t$groupid\t%') AND f.fid=t.fid ORDER BY t.dateline DESC LIMIT 0, 20");
  96. while($nthread = $db->fetch_array($query)) {
  97.                 if($nthread['hide']){$nthread['author']='【身份隐藏】';}
  98.         $nthread['forumname'] = $nthread['name'];
  99.         $nthread['view_subject'] = cutstr($nthread['subject'],$hack_cut_str);
  100. $nthread['date']= gmdate("$dateformat $timeformat", $nthread['dateline'] + $timeoffset * 3600);
  101.         $nthread['lastreplytime']= gmdate("$dateformat $timeformat", $nthread[lastpost] + ($timeoffset * 3600));
  102.         $new_post_threadlist[] = $nthread;
  103. }
  104. //新帖子-end
  105. //===========================================================================================
  106. //侧边栏所需函数-end
复制代码

模板
  1. <table width="{TABLEWIDTH}" border="0" cellspacing="{BORDERWIDTH}" cellpadding="{TABLESPACE}" align="center">
  2. <tr>
  3. <!--左边的内容开始-->
  4. <td width="21%" valign="top">


  5. <table border="0" width="{TABLEWIDTH}" cellspacing="{BORDERWIDTH}" cellpadding="6" style="border: 1 solid #aab6ba" valign=top align=center>
  6. <tr>
  7. <td width="{TABLEWIDTH}"><center>
  8. <!--JS-->
  9.   <script defer>
  10.   function showTimeBefore(){
  11.   leaveTime=new Date("june 7,2006")-new Date();
  12.   leaveDays=Math.floor(leaveTime/(1000*60*60*24));
  13.   leaveHours=Math.floor(leaveTime/(1000*60*60)%24);
  14.   leaveMinutes=Math.floor(leaveTime/(1000*60)%60);
  15.   leaveSeconds=Math.floor(leaveTime/1000%60);
  16.   leave.innerText=leaveDays+"天"+leaveHours+"时"+leaveMinutes+"分"+leaveSeconds+"秒";}
  17.   setInterval(showTimeBefore,1000);</script>距离2006年高考还有<BR><span id="leave" class="bold" style="color:red"></span><br /><!--/JS-->
  18.   <br>
  19. <EMBED src=images/clock.swf width=100 height=80 type=application/x-shockwave-flash wmode="transparent"></center><br>
  20. <fieldset><center>
  21. {lang timenow} $currenttime</center>
  22. </fieldset>
  23. </td></tr>
  24. </table><br>

  25. <table border="0" width="{TABLEWIDTH}" cellspacing="{BORDERWIDTH}" cellpadding="6" style="border: 1 solid #aab6ba" valign=top align=center>

  26. <tr>
  27. <td width="{TABLEWIDTH}">论坛资料</TD>
  28. </tr>

  29. <tr>
  30. <td>
  31. <img src="images/public/icon_1.gif" border="0">论坛已运行:<span class="bold">$build_days</span>天<br>
  32. <img src="images/public/icon_2.gif" border="0">共有主题:<span class="bold">$threads</span>篇<br>
  33. <img src="images/public/icon_1.gif" border="0">共有帖子:<span class="bold">$posts</span>篇<br>
  34. <img src="images/public/icon_2.gif" border="0">今日发贴:<span class="bold">$todaynum</span>篇<br>
  35. <img src="images/public/icon_1.gif" border="0">昨日发贴:<span class="bold">$yesterdaynum</span>篇<br>
  36. <img src="images/public/icon_2.gif" border="0">最高日发贴:<span class="bold">$maxnum</span>篇<br>
  37. <img src="images/public/icon_1.gif" border="0">发生在:<span class="bold">$maxday</span><br>
  38. <img src="images/public/icon_2.gif" border="0">共有同学:<span class="bold">$totalmembers</span>人<br>
  39. <img src="images/public/icon_1.gif" border="0">欢迎新同学:<a href="viewpro.php?username=$memberenc"><span class="bold">$lastmember</span></a>
  40. </td>
  41. </tr>

  42. </table><br>

  43. <table border="0" width="{TABLEWIDTH}" cellspacing="{BORDERWIDTH}" cellpadding="6" style="border: 1 solid #aab6ba" valign=top align=center>

  44. <tr>
  45. <td width="{TABLEWIDTH}">社区形象秀</TD>
  46. </tr>

  47. <tr>
  48. <td align=center>
  49. <DIV style="PADDING-RIGHT: 0px; PADDING-LEFT: 0px; LEFT: 0px; PADDING-BOTTOM: 0px; WIDTH: 120px; PADDING-TOP: 0px; POSITION: relative; TOP: 0px; HEIGHT: 150px">
  50. $_DCACHE[vavatar][1]
  51. </DIV>
  52. <br>
  53. $_DCACHE[vavatar][0]
  54. </td>
  55. </tr>

  56. </table><br>
  57. <!--{if $discuz_uid}-->
  58. <table border="0" width="{TABLEWIDTH}" cellspacing="{BORDERWIDTH}" cellpadding="6" style="border: 1 solid #aab6ba" valign=top align=center>
  59.         <tr>
  60.                 <td width="{TABLEWIDTH}">个人资料</TD>
  61.         </tr>
  62.         <tr>
  63.                 <td width="{TABLEWIDTH}" align=center>$index_left[avatar]<br>
  64.                         自定头衔:$index_left[customstatus]
  65.                 <BR>
  66.                         <table width="155" border="0" align="center" cellpadding="0" cellspacing="0">
  67.                                 <tr>
  68.                                         <td background="images/public/kuan03.gif">
  69.                                                 <table cellSpacing=0 cellPadding=0 border=0>
  70.                                                         <tr>
  71.                                                                 <td width=8></td>
  72.                                                                 <td background="images/public/kuan04.gif">
  73.                                                                         <span class="smalltxt"><IMG src="images/public/rb01.gif" width="1">
  74.                                                                         $discuz_userss
  75.                                                                         &nbsp;<img src="./images/common/money$index_left[bankstatus].gif" border="0" align=absmiddle <!--{if $isadmin}-->alt="瑞士银行存款:$index_left[bankmimi]"<!--{/if}-->>
  76.                                                                         </span>
  77.                                                                 </td>
  78.                                                         </tr>
  79.                                                 </table>
  80.                                         </td>
  81.                                 </tr>
  82.                                 <tr>
  83.                                         <td background="images/public/kuan02.gif" bgColor="#f8f8f8" align="middle">
  84.                                                 <table cellSpacing="0" cellPadding="0" border="0" width="85%" align="center">
  85.                                                         <tr>
  86.                                                                 <td>
  87.                                                                         <!--{if $invisible}-->
  88.                                                                         &nbsp;&nbsp;&nbsp;&nbsp;<img src="images/public/icon_1.gif" border="0">&nbsp;
  89.                                                                         {lang login_invisible_mode}
  90.                                                                         <BR>
  91.                                                                         <!--{/if}-->
  92.                                                                         &nbsp;{eval showonline($onlinehour,$onlinemin);}
  93.                                                                         <BR>

  94.                                                                         &nbsp;&nbsp;<img src="images/public/icon_2.gif" border="0">&nbsp;
  95.                                                                         头衔:<font color="#9B21E8">$grouptitle</font>
  96.                                                                         <BR>
  97.                                                                         &nbsp;&nbsp;<img src="images/public/icon_1.gif" border="0">&nbsp;
  98.                                                                         ID号:<font color="#FD289B">No.$discuz_uid</font>
  99.                                                                         <BR>
  100.                                                                         &nbsp;&nbsp;<img src="images/public/icon_2.gif" border="0">&nbsp;
  101.                                                                         {lang location}:<font color="#5D8D12">$index_left[location]</font>
  102.                                                                         <BR>

  103.                                                                         &nbsp;&nbsp;<img src="images/public/icon_1.gif" border="0">&nbsp;
  104.                                                                         积分:<font color="#CC3333">$credit</font>
  105.                                                                         <BR>
  106.                                                                         &nbsp;&nbsp;<img src="images/public/icon_2.gif" border="0">&nbsp;
  107.                                                                         现金:<font color="#33CC33">$index_left[money]</font>
  108.                                                                         <BR>
  109.                                                                         &nbsp;&nbsp;<img src="images/public/icon_1.gif" border="0">&nbsp;
  110.                                                                         存款:<font color="#6699CC">$index_left[bank]</font>
  111.                                                                         <BR>
  112.                                                                         &nbsp;&nbsp;<img src="images/public/icon_2.gif" border="0">&nbsp;
  113.                                                                         幸运:<font color="#990033">$index_left[luck]</font>
  114.                                                                         <BR>
  115.                                                                         &nbsp;&nbsp;<img src="images/public/icon_1.gif" border="0">&nbsp;
  116.                                                                         发贴:<font color="#D86003">$index_left[postnum]</font>
  117.                                                                         <BR>
  118.                                                                         &nbsp;&nbsp;<img src="images/public/icon_2.gif" border="0">&nbsp;
  119.                                                                         注册:$index_left[regdate]
  120.                                                                         <BR>
  121.                                                                         <!--{if $index_left[warning]}-->
  122.                                                                         &nbsp;&nbsp;<img src="images/public/icon_1.gif" border="0">&nbsp;
  123.                                                                         警告:<font color="#CC3333">$index_left[warning]</font>
  124.                                                                         <br>
  125.                                                                         <!--{/if}-->
  126.                                                                         <!--
  127.                                                                         &nbsp;&nbsp;<img src="images/public/icon_1.gif" border="0">&nbsp;
  128.                                                                         最后访问:$lastvisittime
  129.                                                                         -->
  130.                                                                 </td>
  131.                                                         </tr>
  132.                                                 </table>
  133.                                         </td>
  134.                                 </tr>
  135.                                 <tr>
  136.                                         <td><IMG height="4" src="images/public/kuan01.gif" width="155"></td>
  137.                                 </tr>
  138.                         </table>
  139.                         <!--{if $showimages}-->
  140.                         <table width="155" border="0" align="center" cellpadding="0" cellspacing="0">
  141.                                 <tr>
  142.                                         <td background="images/public/kuan03.gif">
  143.                                                 <table cellSpacing=0 cellPadding=0 border=0>
  144.                                                         <tr>
  145.                                                                 <td width=8></td>
  146.                                                                 <td background="images/public/kuan04.gif">
  147.                                                                         <span class="smalltxt"><IMG src="images/public/rb01.gif" width="1">
  148.                                                                         社区形象秀
  149.                                                                         </span>
  150.                                                                 </td>
  151.                                                         </tr>
  152.                                                 </table>
  153.                                         </td>
  154.                                 </tr>
  155.                                 <tr>
  156.                                         <td background="images/public/kuan02.gif" bgColor="#f8f8f8" align="middle">
  157.                                                 <table cellSpacing="0" cellPadding="0" border="0" width="85%" align="center">
  158.                                                         <tr>
  159.                                                                 <td align=center>
  160.                                                                         <br>
  161.                                                                         $index_left[vavatar]
  162.                                                                         <br>
  163.                                                                 </td>
  164.                                                         </tr>
  165.                                                 </table>
  166.                                         </td>
  167.                                 </tr>
  168.                                 <tr>
  169.                                         <td><IMG height="4" src="images/public/kuan01.gif" width="155"></td>
  170.                                 </tr>
  171.                         </table>
  172.                         <!--{/if}-->
  173.                         <!--{if $index_left[medals]}-->
  174.                         <table width="155" border="0" align="center" cellpadding="0" cellspacing="0">
  175.                                 <tr>
  176.                                         <td background="images/public/kuan03.gif">
  177.                                                 <table cellSpacing=0 cellPadding=0 border=0>
  178.                                                         <tr>
  179.                                                                 <td width=8></td>
  180.                                                                 <td background="images/public/kuan04.gif">
  181.                                                                         <span class="smalltxt"><IMG src="images/public/rb01.gif" width="1">
  182.                                                                         勋章
  183.                                                                         </span>
  184.                                                                 </td>
  185.                                                         </tr>
  186.                                                 </table>
  187.                                         </td>
  188.                                 </tr>
  189.                                 <tr>
  190.                                         <td background="images/public/kuan02.gif" bgColor="#f8f8f8" align="middle">
  191.                                                 <table cellSpacing="0" cellPadding="0" border="0" width="85%" align="center">
  192.                                                         <tr>
  193.                                                                 <td align=left>
  194.                                                                         $index_left[medals]
  195.                                                                 </td>
  196.                                                         </tr>
  197.                                                 </table>
  198.                                         </td>
  199.                                 </tr>
  200.                                 <tr>
  201.                                         <td><IMG height="4" src="images/public/kuan01.gif" width="155"></td>
  202.                                 </tr>
  203.                         </table>
  204.                         <!--{/if}-->
  205.                 </td>
  206.         </tr>
  207. </table>
  208. <BR>
  209. $showimages
  210. <!--{/if}-->

  211. <table border="0" width="{TABLEWIDTH}" cellspacing="{BORDERWIDTH}" cellpadding="6" style="border: 1 solid #aab6ba" valign=top align=center>
  212. <tr>
  213. <td width="{TABLEWIDTH}">最新主题</td>
  214. </tr>
  215. <tr>
  216. <td width="{TABLEWIDTH}">
  217. <!--{loop $new_post_threadlist $nthread}-->
  218. <!--{if $nthread[replies]}-->
  219. <a href="redirect.php?tid=$nthread[tid]&goto=newpost" title="最新话题 {LF}{lang forum}: $nthread[forumname]{LF}{lang subject}: $nthread[subject]{LF}{lang author}: $nthread[author]{LF}发表{lang time}: $nthread[date]{LF}{lang search_views}: $nthread[views] 次 {LF}{lang replies}: $nthread[replies] 次{LF}最后回复: $nthread[lastreplytime]{LF}{lang lastpost}: $nthread[lastposter]">$nthread[view_subject]</a>
  220. <!--{else}-->
  221. <a href="redirect.php?tid=$nthread[tid]&goto=newpost" title="最新话题 {LF}{lang forum}: $nthread[forumname]{LF}{lang subject}: $nthread[subject]{LF}{lang author}: $nthread[author]{LF}发表{lang time}: $nthread[date]{LF}{lang search_views}: $nthread[views] 次{LF}{lang replies}: 暂时没有回复">$nthread[view_subject]</a><!--{/if}-->
  222. $nthread[multipage]<br>
  223. <!--{/loop}-->
  224. </td>
  225. </tr>
  226. </table><br>
  227. <table border="0" width="{TABLEWIDTH}" cellspacing="{BORDERWIDTH}" cellpadding="6" style="border: 1 solid #aab6ba" valign=top align=center>
  228. <tr>
  229. <td width="{TABLEWIDTH}">最新回复</td>
  230. </tr>
  231. <tr>
  232. <td width="{TABLEWIDTH}">
  233. <!--{loop $new_reply_threadlist $rthread}-->
  234. <a href="redirect.php?tid=$rthread[tid]&goto=lastpost#lastpost" title="{lang forum}: $rthread[forumname]{LF}{lang subject}: $rthread[subject]{LF}{lang author}: $rthread[author]{LF}发表{lang time}: $rthread[date]{LF}{lang search_views}: $rthread[views] 次{LF}{lang replies}: $rthread[replies] 次{LF}最后回复: $rthread[lastreplytime]{LF}{lang lastpost}: $rthread[lastposter]">$rthread[view_subject]</a>
  235. $rthread[multipage]<br>
  236. <!--{/loop}-->
  237. </td>
  238. </tr>
  239. </table><br>
  240. <table border="0" width="{TABLEWIDTH}" cellspacing="{BORDERWIDTH}" cellpadding="6" style="border: 1 solid #aab6ba" valign=top align=center>
  241. <tr>
  242. <td width="{TABLEWIDTH}">$howmanychatters<span class="bold">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="javascript: chatlaunch();">进入聊天室</a></td>
  243. </tr>

  244. <tr>
  245. <td width="{TABLEWIDTH}">$chattally</td>
  246. </tr>
  247. </table>

  248. </TD>
  249. <!--左边的内容结束-->

  250. <!--中间的内容开始-->
  251. <td valign="top">
复制代码

这个是有幸运的把读取幸运字段的代码删了就行

原帖由 野天 于 2005-8-18 10:10 发表
文文我用了你的那个巨好谢谢!

现在想增加些功能,例如高亮的帖子引用时仍高亮,增加今日之星等,发帖排行等,能接着完善这些吗?

没空拉……高考了哈哈
回复

使用道具 举报

 楼主| PerfectWorks 发表于 2005-8-19 12:32:59 | 显示全部楼层
对了#24还是带勋章的,显示论坛最新虚拟形象和个人虚拟形象(没有则不显示)
直接使用会出错误信息,要进行一点修改
回复

使用道具 举报

小僧 发表于 2005-8-19 18:18:52 | 显示全部楼层
不凑噢.
回复

使用道具 举报

mickeycai 发表于 2005-8-20 11:09:47 | 显示全部楼层
文文,改了以后首页的布局出现了问题
用原来你上传的哪个left文件没有问题,现在你换掉了.
回复

使用道具 举报

mickeycai 发表于 2005-8-20 11:30:00 | 显示全部楼层
搞顶了,原来我后面忘记删掉相关参数了,哈哈~
回复

使用道具 举报

mickeycai 发表于 2005-8-20 19:08:43 | 显示全部楼层
文文大大,现在大事不好了,我不知道动了什么,登入正常的情况下面,页面显示是正常的
但是,在游客身份的前提下,就会出现左边栏放大压在论坛各区上面的情况,也就是变的长了很多.
求助啊.T_T
回复

使用道具 举报

烧刀子 发表于 2005-8-21 18:23:22 | 显示全部楼层
请问个问题,就是我想修改的和原作者得差不多
那些图片之类的想加上去~~请问怎么修改??

http://www.hkice.net/bbs/index.php
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|Discuz! 官方站 ( 皖ICP备16010102号 )star

GMT+8, 2024-4-30 23:47 , Processed in 0.125782 second(s), 15 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

快速回复 返回顶部 返回列表