首页幻灯图+主题排行+会员排行 for pw5.3(7.13更新)

[复制链接]
  • TA的每日心情
    开心
    2023-12-15 09:13
  • 签到天数: 55 天

    [LV.5]六品通判

    1197

    主题

    1965

    回帖

    13万

    积分

    Administrator

    分子与原子计算公式

    Rank: 9Rank: 9Rank: 9

    积分
    132061

    终身成就奖优秀斑竹奖宣传大使奖特殊贡献奖

    QQ
    发表于 2007-7-22 18:21:41 | 显示全部楼层 |阅读模式
    7.13更新:修正帖子时间显示错误的bug

    特色:只需修改风格模板的 index.htm 文件即可,不用修改其他文件

    一、打开你的风格模板的index.htm文件(默认:论坛根目录\template\wind\index.htm,如果不是默认风格的,位置在:论坛根目录\template\你的风格目录\index.htm)
    在第一行找到:
    1. <!--<?php print <<<EOT
    2. -->
    复制代码

    替换为下面的代码
    1. <!--<?php
    2. //首页调用开始
    3. //默认只显示开放板块,不显示正规、隐藏、投票、认证板块
    4. //幻灯图开始
    5. $cachepics=R_P."data/bbscache/index_toppics.php";//幻灯图片缓存文件
    6. $cachepicstime=60;//幻灯图片缓存自动更新时间,单位秒
    7. //下一句设置要显示的板块类型,forum开放板块,former正规板块,hidden隐藏板块
    8. $showforum="(pf.f_type = &#39;forum&#39; or pf.f_type = &#39;former&#39;)";
    9. if (($timestamp-@filemtime($cachepics)>=$cachepicstime)){
    10. $query=$db->query("SELECT pt.tid,pt.fid,pt.subject,pa.attachurl FROM pw_threads pt
    11. ,pw_attachs pa,pw_forums pf where pt.tid = pa.tid and pt.fid = pf.fid and pa.type=&#39;img&#39; and pt.ifcheck=&#39;1&#39; and ".$showforum." and pf.password = &#39;&#39;
    12. ORDER BY pt.postdate DESC
    13. LIMIT 60
    14. "); //可以根据需要调整,我这里是估算每个主题有10张图片的情况下。
    15. $imgcontent="<?php\n";
    16. $pics=$links=$texts="";
    17. $rs_i=0;
    18. while ($imginfo = $db->fetch_array($query) and $rs_i<6) {//只调用6个主题的图片
    19. if(($rs_tid!=$imginfo[tid])&&(eregi("\.(jpg)$",$imginfo[attachurl]))){
    20.   $pics.=$db_bbsurl."/".$attachpath."/".$imginfo[attachurl]."|";
    21.   $links.=$db_bbsurl."/read.php?tid=".$imginfo[tid]."|";
    22.   $texts.=$imginfo[subject]."|";
    23.   $rs_i++;//同一主题的只要最后上传的那张图片
    24. }
    25. $rs_tid=$imginfo[tid];
    26. }
    27. $pics=substr($pics,0,-1);
    28. $links=substr($links,0,-1);
    29. $texts=substr($texts,0,-1);
    30. $pics=&#39;$pics="&#39;.$pics.&#39;";&#39;;
    31. $links=&#39;$links="&#39;.$links.&#39;";&#39;;
    32. $texts=&#39;$texts="&#39;.$texts.&#39;";&#39;;
    33. $imgcontent = $imgcontent.$pics."\n".$links."\n".$texts."\n?>";
    34. writeover($cachepics,$imgcontent);
    35. }
    36. @require_once($cachepics);
    37. //幻灯图结束
    38. //主题排行+会员排行开始
    39. $cachelist=R_P."data/bbscache/index_toplist.php";//主题排行缓存文件
    40. $cachelisttime=60;//主题排行自动更新时间,单位秒
    41. //下一句设置要显示的板块类型,forum开放板块,former正规板块,hidden隐藏板块
    42. $showforum="(pf.f_type = &#39;forum&#39; or pf.f_type = &#39;former&#39;)";
    43. if(($timestamp-@filemtime($cachelist)>=$cachelisttime)){
    44. $listnum=10;//主题显示个数
    45. $listlength=48;//主题标题长度
    46. $memberposttoday=$memberpostmonth=$newthreads=$replythreads=$digestthreads=$hotthreads="";
    47. //会员当日发帖排行开始
    48. $query=$db->query("SELECT m.uid,m.username,md.postnum,md.digests,md.rvrc,md.money,md.todaypost,md.onlinetime FROM pw_members m LEFT JOIN pw_memberdata md USING(uid) WHERE md.lastpost>&#39;$tdtime&#39; ORDER BY md.todaypost DESC limit 0,$listnum");
    49. $c_i=1;//初始化图片序号
    50. while($members=$db->fetch_array($query)){
    51. $members[onlinetime]=(int)($members[onlinetime]/3600);
    52. $i=0;
    53. while((5*$i*$i+15*$i)<=$members[onlinetime]){
    54. $i++;
    55. $C=5*$i*$i+15*$i;
    56. $N=$i;
    57. }
    58. $more=$C-$members[onlinetime];
    59. $lv=$N;
    60. if($lv > 48) $lv = 48;
    61. $memberposttoday.="<img src=&#39;$imgpath/top/c_".$c_i.".gif&#39; align=&#39;absmiddle&#39; width=&#39;11&#39; height=&#39;11&#39;> <a href=&#39;profile.php?action=show&uid=$members[uid]&#39; title=&#39;发帖:$members[postnum] 帖\n精华:$members[digests] 帖\n威望:$members[rvrc] 点\n财富:$members[money] 禾氏币\n在线等级:$lv 级\n在线时间:$members[onlinetime] 小时\n升级剩余:$more 小时&#39;>$members[username]</a> <span style=&#39;color:red&#39;>$members[todaypost]</span> 帖<br />";
    62. $c_i++;
    63. }
    64. unset($members);
    65. unset($c_i);
    66. //会员当日发帖排行结束
    67. //会员本月发帖排行开始
    68. $query=$db->query("SELECT m.uid,m.username,md.postnum,md.digests,md.rvrc,md.money,md.monthpost,md.onlinetime FROM pw_members m LEFT JOIN pw_memberdata md USING(uid) WHERE md.lastpost>&#39;$montime&#39; ORDER BY md.monthpost DESC limit 0,$listnum");
    69. $c_i=1;//初始化图片序号
    70. while($members=$db->fetch_array($query)){
    71. $members[onlinetime]=(int)($members[onlinetime]/3600);
    72. $i=0;
    73. while((5*$i*$i+15*$i)<=$members[onlinetime]){
    74. $i++;
    75. $C=5*$i*$i+15*$i;
    76. $N=$i;
    77. }
    78. $more=$C-$members[onlinetime];
    79. $lv=$N;
    80. if($lv > 48) $lv = 48;
    81. $memberpostmonth.="<img src=&#39;$imgpath/top/c_".$c_i.".gif&#39; align=&#39;absmiddle&#39; width=&#39;11&#39; height=&#39;11&#39;> <a href=&#39;profile.php?action=show&uid=$members[uid]&#39; title=&#39;发帖:$members[postnum] 帖\n精华:$members[digests] 帖\n威望:$members[rvrc] 点\n财富:$members[money] 禾氏币\n在线等级:$lv 级\n在线时间:$members[onlinetime] 小时\n升级剩余:$more 小时&#39;>$members[username]</a> <span style=&#39;color:red&#39;>$members[monthpost]</span> 帖<br />";
    82. $c_i++;
    83. }
    84. unset($members);
    85. unset($c_i);
    86. //会员本月发帖排行结束
    87. //最新发表主题开始
    88. $query = $db->query("SELECT pt.tid,pt.author,pt.subject,pt.postdate,pt.hits,pf.name,pf.fid FROM pw_threads pt LEFT JOIN pw_forums pf USING(fid) where pt.ifcheck=&#39;1&#39; and ".$showforum." and pf.password = &#39;&#39; order by pt.postdate desc limit 0,$listnum");
    89. $c_i=1;//初始化图片序号
    90. while($threads=$db->fetch_array($query)){
    91. $threads[postdate]=get_date($threads[postdate]);
    92. $subject=substrs($threads[subject],$listlength);
    93. $newthreads.="<img src=&#39;$imgpath/top/c_".$c_i.".gif&#39; align=&#39;absmiddle&#39; width=&#39;11&#39; height=&#39;11&#39;> <a href=&#39;thread.php?fid=$threads[fid]&#39;>[$threads[name]]</a> <a href=&#39;read.php?tid=$threads[tid]&#39; title=&#39;主题标题:$threads[subject]\n主题作者:$threads[author]\n发表时间:$threads[postdate]\n浏览次数:$threads[hits] 次&#39;>$subject</a><br />";
    94. $c_i++;
    95. }
    96. unset($threads);
    97. unset($c_i);
    98. //最新发表主题结束
    99. //最新回复主题开始
    100. $query = $db->query("SELECT pt.tid,pt.author,pt.subject,pt.postdate,pt.lastpost,pt.lastposter,pt.hits,pt.replies,pf.name,pf.fid FROM pw_threads pt LEFT JOIN pw_forums pf USING(fid) where pt.ifcheck = &#39;1&#39; and pt.replies > 0 and ".$showforum." and pf.password = &#39;&#39; order by lastpost desc limit 0,$listnum");
    101. $c_i=1;//初始化图片序号
    102. while($threads=$db->fetch_array($query)){
    103. $threads[postdate]=get_date($threads[postdate]);
    104. $threads[lastpost]=get_date($threads[lastpost]);
    105. $subject=substrs($threads[subject],$listlength);
    106. $replythreads.="<img src=&#39;$imgpath/top/c_".$c_i.".gif&#39; align=&#39;absmiddle&#39; width=&#39;11&#39; height=&#39;11&#39;> <a href=&#39;thread.php?fid=$threads[fid]&#39;>[$threads[name]]</a> <a href=&#39;read.php?tid=$threads[tid]&#39; title=&#39;主题标题:$threads[subject]\n主题作者:$threads[author]\n发表时间:$threads[postdate]\n浏览次数:$threads[hits] 次\n最新回复:$threads[lastposter]\n回复时间:$threads[lastpost]\n回复次数:$threads[replies] 次&#39;>$subject</a><br />";
    107. $c_i++;
    108. }
    109. unset($threads);
    110. unset($c_i);
    111. //最新回复主题结束
    112. //社区精华主题开始
    113. $query = $db->query("SELECT pt.tid,pt.author,pt.subject,pt.postdate,pt.lastpost,pt.lastposter,pt.hits,pt.replies,pf.name,pf.fid FROM pw_threads pt LEFT JOIN pw_forums pf USING(fid) where pt.ifcheck=&#39;1&#39; and pt.digest > 0 and ".$showforum." and pf.password = &#39;&#39; order by pt.postdate desc limit 0,$listnum");
    114. $c_i=1;//初始化图片序号
    115. while($threads=$db->fetch_array($query)){
    116. $threads[postdate]=get_date($threads[postdate]);
    117. $threads[lastpost]=get_date($threads[lastpost]);
    118. $subject=substrs($threads[subject],$listlength);
    119. $digestthreads.="<img src=&#39;$imgpath/top/c_".$c_i.".gif&#39; align=&#39;absmiddle&#39; width=&#39;11&#39; height=&#39;11&#39;> <a href=&#39;thread.php?fid=$threads[fid]&#39;>[$threads[name]]</a> <a href=&#39;read.php?tid=$threads[tid]&#39; title=&#39;主题标题:$threads[subject]\n主题作者:$threads[author]\n发表时间:$threads[postdate]\n浏览次数:$threads[hits] 次\n最新回复:$threads[lastposter]\n回复时间:$threads[lastpost]\n回复次数:$threads[replies] 次&#39;>$subject</a><br />";
    120. $c_i++;
    121. }
    122. unset($threads);
    123. unset($c_i);
    124. //社区精华主题结束
    125. //最多点击主题开始
    126. $query = $db->query("SELECT pt.tid,pt.author,pt.subject,pt.postdate,pt.lastpost,pt.lastposter,pt.hits,pt.replies,pf.name,pf.fid FROM pw_threads pt LEFT JOIN pw_forums pf USING(fid) where pt.ifcheck = &#39;1&#39; and ".$showforum." and pf.password = &#39;&#39; order by hits desc limit 0,$listnum");
    127. $c_i=1;//初始化图片序号
    128. while($threads=$db->fetch_array($query)){
    129. $threads[postdate]=get_date($threads[postdate]);
    130. $threads[lastpost]=get_date($threads[lastpost]);
    131. $subject=substrs($threads[subject],$listlength);
    132. $hotthreads.="<img src=&#39;$imgpath/top/c_".$c_i.".gif&#39; align=&#39;absmiddle&#39; width=&#39;11&#39; height=&#39;11&#39;> <a href=&#39;thread.php?fid=$threads[fid]&#39;>[$threads[name]]</a> <a href=&#39;read.php?tid=$threads[tid]&#39; title=&#39;主题标题:$threads[subject]\n主题作者:$threads[author]\n发表时间:$threads[postdate]\n浏览次数:$threads[hits] 次\n最新回复:$threads[lastposter]\n回复时间:$threads[lastpost]\n回复次数:$threads[replies] 次&#39;>$subject</a><br />";
    133. $c_i++;
    134. }
    135. unset($threads);
    136. unset($c_i);
    137. //最多点击主题结束
    138. @writeover($cachelist,"<?php\n\$memberposttoday="$memberposttoday";\n\$memberpostmonth="$memberpostmonth";\n\$newthreads="$newthreads";\n\$replythreads="$replythreads";\n\$digestthreads="$digestthreads";\n\$hotthreads="$hotthreads";\n?>");
    139. }
    140. @require_once($cachelist);
    141. //主题排行+会员排行结束
    142. //首页调用结束
    143. print <<<EOT
    144. -->
    复制代码

    再找到如下的代码
    1.    共 $topics 篇主题 | $article 篇帖子 | $totalmember 位会员 | 欢迎新会员 <a href="profile.php?action=show&username=$rawnewuser" target="_blank">$newmember</a>
    2.     </td>
    3.   </tr>
    4. </table></div>
    复制代码

    在上面的代码下方插入下面的代码
    1. <!-- 主题排行+会员排行开始 -->
    2. <!-- 主题排行脚本控制开始 -->
    3. <SCRIPT language=javascript>
    4. var nn1=1;
    5. change_list1();
    6. function change_list1()
    7. {
    8.   if(nn1>4) nn1=1
    9.   yy1=setTimeout(&#39;setFocus1(&#39;+nn1+&#39;)&#39;,9000);
    10.   nn1++;
    11.   tt1=setTimeout(&#39;change_list1()&#39;,9000);
    12. }
    13. function stop_change_list1()
    14. {
    15.   window.clearTimeout(tt1);
    16.   window.clearTimeout(yy1);
    17. }
    18. function setFocus1(i)
    19. {
    20.   selectLayer1(i);
    21. }
    22. function selectLayer1(i)
    23. {
    24. switch(i)
    25. {
    26. case 1:
    27. document.getElementById("focusList1").style.display="block";
    28. document.getElementById("focusList2").style.display="none";
    29. document.getElementById("focusList3").style.display="none";
    30. document.getElementById("focusList4").style.display="none";
    31. break;
    32. case 2:
    33. document.getElementById("focusList1").style.display="none";
    34. document.getElementById("focusList2").style.display="block";
    35. document.getElementById("focusList3").style.display="none";
    36. document.getElementById("focusList4").style.display="none";
    37. break;
    38. case 3:
    39. document.getElementById("focusList1").style.display="none";
    40. document.getElementById("focusList2").style.display="none";
    41. document.getElementById("focusList3").style.display="block";
    42. document.getElementById("focusList4").style.display="none";
    43. break;
    44. case 4:
    45. document.getElementById("focusList1").style.display="none";
    46. document.getElementById("focusList2").style.display="none";
    47. document.getElementById("focusList3").style.display="none";
    48. document.getElementById("focusList4").style.display="block";
    49. break;
    50. }
    51. }
    52. </SCRIPT>
    53. <SCRIPT language=javascript>
    54. function setFocus11(i)
    55. {
    56.   stop_change_list1();
    57.   selectLayer1(i);
    58. }
    59. </SCRIPT>
    60. <!-- 主题排行脚本控制结束 -->
    61. <!-- 会员排行脚本控制开始 -->
    62. <SCRIPT language=javascript>
    63. var nn2=1;
    64. change_list2();
    65. function change_list2()
    66. {
    67.   if(nn2>2) nn2=1
    68.   yy2=setTimeout(&#39;setFocus2(&#39;+nn2+&#39;)&#39;,6000);
    69.   nn2++;
    70.   tt2=setTimeout(&#39;change_list2()&#39;,6000);
    71. }
    72. function stop_change_list2()
    73. {
    74.   window.clearTimeout(tt2);
    75.   window.clearTimeout(yy2);
    76. }
    77. function setFocus2(i)
    78. {
    79.   selectLayer2(i);
    80. }
    81. function selectLayer2(i)
    82. {
    83. switch(i)
    84. {
    85. case 1:
    86. document.getElementById("focusListM1").style.display="block";
    87. document.getElementById("focusListM2").style.display="none";
    88. break;
    89. case 2:
    90. document.getElementById("focusListM1").style.display="none";
    91. document.getElementById("focusListM2").style.display="block";
    92. break;
    93. }
    94. }
    95. </SCRIPT>
    96. <SCRIPT language=javascript>
    97. function setFocus22(i)
    98. {
    99.   stop_change_list2();
    100.   selectLayer2(i);
    101. }
    102. </SCRIPT>
    103. <!-- 会员排行脚本控制结束 -->
    104. <div class="t">
    105. <table cellspacing="0" cellpadding="0" width="100%">
    106. <tr class="tr3">
    107.   <td align="center" width="22%">
    108.   <script type="text/javascript">
    109.   <!--
    110.    var focus_width=220
    111.    var focus_height=180
    112.    var swf_width = focus_width
    113.    var swf_height = focus_height
    114.    var pics="$pics"
    115.    var links="$links"
    116.    document.write(&#39;<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="&#39;+ swf_width +&#39;" height="&#39;+ swf_height +&#39;">&#39;);
    117.    document.write(&#39;<param name="allowScriptAccess" value="sameDomain"><param name="movie" value="{$imgpath}/pixviewer.swf"><param name="quality" value="high"><param name="bgcolor" value="#F4FBFF">&#39;);
    118.    document.write(&#39;<param name="menu" value="false"><param name=wmode value="opaque">&#39;);
    119.    document.write(&#39;<param name="FlashVars" value="pics=&#39;+pics+&#39;&links=&#39;+links+&#39;&borderwidth=&#39;+focus_width+&#39;&borderheight=&#39;+focus_height+&#39;">&#39;);
    120.    document.write(&#39;<embed src="{$imgpath}/pixviewer.swf" wmode="opaque" FlashVars="pics=&#39;+pics+&#39;&links=&#39;+links+&#39;&borderwidth=&#39;+focus_width+&#39;&borderheight=&#39;+focus_height+&#39;" menu="false" bgcolor="#F4FBFF" quality="high" width="&#39;+ swf_width +&#39;" height="&#39;+ swf_height +&#39;" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />&#39;);
    121.    document.write(&#39;</object>&#39;);
    122.   //-->
    123.   </script>
    124.   </td>
    125.   <td style="vertical-align:top;" width="48%">
    126.     <DIV id=focusList1 style="DISPLAY: block">
    127.     <table cellspacing="2" cellpadding="2" width="100%">
    128.       <tr align="center" class="tr4">
    129.         <td bgcolor="#A6CBE7"><span class="b"><a href="javascript:setFocus11(1);" target="_self">最新主题</a></span></td>
    130.         <td><a href="javascript:setFocus11(2);" target="_self" style="color:#CCCCCC">最新回复</a></td>
    131.         <td><a href="javascript:setFocus11(3);" target="_self" style="color:#CCCCCC">精华主题</a></td>
    132.         <td><a href="javascript:setFocus11(4);" target="_self" style="color:#CCCCCC">热门主题</a></td>
    133.         <td>主题排行</td>
    134.       </tr>
    135.     </table>
    136.     $newthreads
    137.     </DIV>
    138.     <DIV id=focusList2 style="DISPLAY: none">
    139.     <table cellspacing="2" cellpadding="2" width="100%">
    140.       <tr align="center" class="tr4">
    141.         <td><a href="javascript:setFocus11(1);" target="_self" style="color:#CCCCCC">最新主题</a></td>
    142.         <td bgcolor="#A6CBE7"><span class="b"><a href="javascript:setFocus11(2);" target="_self">最新回复</a></span></td>
    143.         <td><a href="javascript:setFocus11(3);" target="_self" style="color:#CCCCCC">精华主题</a></td>
    144.         <td><a href="javascript:setFocus11(4);" target="_self" style="color:#CCCCCC">热门主题</a></td>
    145.         <td>主题排行</td>
    146.       </tr>
    147.     </table>
    148.     $replythreads
    149.     </DIV>
    150.     <DIV id=focusList3 style="DISPLAY: none">
    151.     <table cellspacing="2" cellpadding="2" width="100%">
    152.       <tr align="center" class="tr4">
    153.         <td><a href="javascript:setFocus11(1);" target="_self" style="color:#CCCCCC">最新主题</a></td>
    154.         <td><a href="javascript:setFocus11(2);" target="_self" style="color:#CCCCCC">最新回复</a></td>
    155.         <td bgcolor="#A6CBE7"><span class="b"><a href="javascript:setFocus11(3);" target="_self">精华主题</a></span></td>
    156.         <td><a href="javascript:setFocus11(4);" target="_self" style="color:#CCCCCC">热门主题</a></td>
    157.         <td>主题排行</td>
    158.       </tr>
    159.     </table>
    160.     $digestthreads
    161.     </DIV>
    162.     <DIV id=focusList4 style="DISPLAY: none">
    163.     <table cellspacing="2" cellpadding="2" width="100%">
    164.       <tr align="center" class="tr4">
    165.         <td><a href="javascript:setFocus11(1);" target="_self" style="color:#CCCCCC">最新主题</a></td>
    166.         <td><a href="javascript:setFocus11(2);" target="_self" style="color:#CCCCCC">最新回复</a></td>
    167.         <td><a href="javascript:setFocus11(3);" target="_self" style="color:#CCCCCC">精华主题</a></td>
    168.         <td bgcolor="#A6CBE7"><span class="b"><a href="javascript:setFocus11(4);" target="_self">热门主题</a></span></td>
    169.         <td>主题排行</td>
    170.       </tr>
    171.     </table>
    172.     $hotthreads
    173.     </DIV>
    174.   </td>
    175.   <td style="vertical-align:top;" width="30%">  
    176.     <DIV id=focusListM1 style="DISPLAY: block">
    177.     <table cellspacing="2" cellpadding="2" width="100%">
    178.       <tr align="center" class="tr4">
    179.         <td bgcolor="#A6CBE7"><span class="b"><a href="javascript:setFocus22(1);" target="_self">今日发帖</a></span></td>
    180.         <td><a href="javascript:setFocus22(2);" target="_self" style="color:#CCCCCC">本月发帖</a></td>
    181.         <td>会员排行</td>
    182.       </tr>
    183.     </table>
    184.     $memberposttoday
    185.     </DIV>
    186.     <DIV id=focusListM2 style="DISPLAY: none">
    187.     <table cellspacing="2" cellpadding="2" width="100%">
    188.       <tr align="center" class="tr4">
    189.         <td><a href="javascript:setFocus22(1);" target="_self" style="color:#CCCCCC">今日发帖</a></td>
    190.         <td bgcolor="#A6CBE7"><span class="b"><a href="javascript:setFocus22(2);" target="_self">本月发帖</a></span></td>
    191.         <td>会员排行</td>
    192.       </tr>
    193.     </table>
    194.     $memberpostmonth
    195.     </DIV>
    196.   </td>
    197. </tr>
    198. </table>
    199. </div>
    200. <!-- 主题排行+会员排行结束 -->
    复制代码

    index.rar

    22 KB, 下载次数: 60, 下载积分: 金子 1

  • TA的每日心情
    擦汗
    2012-5-8 00:00
  • 签到天数: 4 天

    [LV.2]九品芝麻官

    18

    主题

    139

    回帖

    296

    积分

    [INTOHARD]排长

    Rank: 3Rank: 3

    积分
    296
    发表于 2012-5-5 17:59:27 | 显示全部楼层
    顶顶  载下来看看....
    回复 支持 反对

    使用道具 举报

  • TA的每日心情
    擦汗
    2020-3-20 00:12
  • 签到天数: 2303 天

    [LV.Master]三朝元老

    14

    主题

    2808

    回帖

    1万

    积分

    [INTOHARD]团长

    Rank: 8Rank: 8

    积分
    11936
    QQ
    发表于 2012-6-6 18:54:08 | 显示全部楼层
    看帖子的要发表下看法
    回复 支持 反对

    使用道具 举报

  • TA的每日心情
    无聊
    2016-6-25 15:57
  • 签到天数: 6 天

    [LV.2]九品芝麻官

    1

    主题

    163

    回帖

    98

    积分

    [INTOHARD]班长

    Rank: 2

    积分
    98
    发表于 2012-7-6 11:29:26 | 显示全部楼层
    xuexi......
    回复 支持 反对

    使用道具 举报

  • TA的每日心情
    开心
    2014-12-30 20:35
  • 签到天数: 609 天

    [LV.9]二品侍郎

    1

    主题

    627

    回帖

    3078

    积分

    [INTOHARD]团长

    Rank: 8Rank: 8

    积分
    3078
    发表于 2012-8-20 14:03:18 | 显示全部楼层
    这个东西    不明白
    回复 支持 反对

    使用道具 举报

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

    本版积分规则

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