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

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

[插件] 首页四格整理版(美化版,Cache版,多功能版) By JM

[复制链接]
jimmyjimmyqqq 发表于 2005-12-25 14:36:21 | 显示全部楼层 |阅读模式
美化版:
我He哈Zone专有的版本,决定不放出来....
呵呵

Cache版:作者:YTC
1.不增加查询
2.令回覆和发贴速度减慢一点点(很少会留意)
3.每次发贴和回贴才会更新

修改include/cache.func.php

  1. 'index'                => array('announcements', 'onlinelist', 'forumlinks'
复制代码

后面加上
  1. , 'newthread', 'replythread'
复制代码



  1.                 case 'ranks':
  2.                         $table = 'ranks';
  3.                         $cols = 'ranktitle, postshigher, stars, color';
  4.                         $conditions = "ORDER BY postshigher DESC";
  5.                         break;
复制代码

下面加上:

  1.                 case 'newthread':
  2.                         $table = 'threads t';
  3.                         $cols = 't.*, f.name';
  4.                         $conditions = ", {$tablepre}forums f WHERE t.fid<>'$fid' AND f.fid=t.fid ORDER BY dateline DESC LIMIT 0, 10";
  5.                         break;
  6.                 case 'replythread':
  7.                         $table = 'threads t';
  8.                         $cols = 't.*, f.name';
  9.                         $conditions = ", {$tablepre}forums f WHERE t.fid<>'$fid' AND f.fid=t.fid AND replies !=0 ORDER BY lastpost DESC LIMIT 0, 10";
  10.                         break;
复制代码


  1.         $query = $db->query("SELECT $cols FROM {$tablepre}$table $conditions");
  2.         switch($cachename) {
复制代码

下面加上
  1.                 case 'newthread':
  2.                         while($nthread = $db->fetch_array($query)) {
  3.                                 $nthread['subject'] = cutstr($nthread['subject'], 32);
  4.                                 $data[] = $nthread;
  5.                         }        
  6.                 break;
  7.                 case 'replythread':
  8.                         while($rthread = $db->fetch_array($query)) {
  9.                                 $rthread['subject'] = cutstr($rthread['subject'], 32);
  10.                                 $data[] = $rthread;
  11.                         }
  12.                 break;
复制代码

修改include/newthread.inc.php

  1. $allowuseblog && $isblog && $blog ? showmessage('post_newthread_blog_succeed', "blog.php?tid=$tid") :
复制代码

上面加上
  1. require_once DISCUZ_ROOT.'./include/cache.func.php';
  2. updatecache('newthread');
复制代码

修改include/newreply.inc.php


  1. !$allowuseblog || empty($isblog) ? showmessage('post_reply_succeed', "viewthread.php?tid=$tid&pid=$pid&page=".(@ceil(($thread['replies'] + 2) / $ppp))."&extra=$extra#pid$pid") :
复制代码
在上面加上

  1. require_once DISCUZ_ROOT.'./include/cache.func.php';
  2. updatecache('replythread');
复制代码
修改include/editpost.inc.php



  1. (!empty($delete) && $isfirstpost) ? showmessage('post_edit_delete_succeed', "forumdisplay.php?fid=$fid") :
复制代码

在上面加上

  1. require_once DISCUZ_ROOT.'./include/cache.func.php';
  2. updatecache('newthread');
复制代码

修改index.htm

  1. <table cellspacing="{TABLESPACE}" cellpadding="0" border="0" width="{TABLEWIDTH}" align="center" class="outertxt">
  2. <tr><td class="smalltxt">
  3. {lang timenow} $currenttime, {lang your_lastvisit} $lastvisittime<br>
  4. {lang credits}: <span class="bold">$credits</span>
  5. <!--{loop $extcredits $id $credit}-->
  6.         $credit[title]: <span class="bold">$GLOBALS[extcredits.$id]</span>$credit[unit]
  7. <!--{/loop}-->
  8. / {lang index_status}:
  9. <!--{if $validdays}--><a href="member.php?action=groupexpiry"><span class="bold">$grouptitle</span>($validdays)</a><!--{else}--><span class="bold">$grouptitle</span><!--{/if}-->
  10. <!--{if !empty($invisible)}--> / {lang login_invisible_mode}<!--{/if}-->
  11. </td><td align="right" nowrap class="smalltxt">
  12. <a href="search.php?srchfrom=$newthreads&searchsubmit=yes">{lang show_newthreads}</a> |
  13. <!--{if $discuz_uid}-->
  14.         <a href="search.php?srchuid=$discuz_uid&mytopics=yes&searchsubmit=yes">{lang show_mytopics}</a> |
  15.         <!--{if $allowuseblog}-->
  16.                 <a href="blog.php?uid=$discuz_uid" target="_blank">{lang blog}</a> |
  17.         <!--{/if}-->
  18. <!--{/if}-->
  19. <a href="digest.php">{lang digest}</a> |
  20. <a href="member.php?action=markread">{lang mark_read}</a>
  21. | {lang welcome_newmember} <a href="viewpro.php?username=$memberenc"><span class="bold">$lastmember</span></a><br>
  22. {lang total} <span class="bold">$threads</span> {lang index_threads} / <span class="bold">$posts</span> {lang index_posts} / {lang index_today} <span class="bold">$todayposts</span> {lang index_posts} / <span class="bold">$totalmembers</span> {lang index_members}
  23. </td></tr></table>
复制代码

修改为

  1. <table cellspacing="0" cellpadding="0" border="0" width="{TABLEWIDTH}" align="center" class="tableborder">
  2. <tr><td>
  3. <table border="0" cellspacing="{INNERBORDERWIDTH}" cellpadding="{TABLESPACE}" width="100%" style="table-layout: fixed; word-wrap: break-word"  >
  4. <tr class="header">
  5. <td width="25%" align="center">个人资料</td>
  6. <td width="23%" align="center">论坛资料</td>
  7. <td width="26%" align="center">最新讨论</td>
  8. <td width="26%" align="center">最新回覆</td>

  9. </tr>
  10. <tr>

  11. <td bgcolor="{ALTBG2}" onMouseOver ="this.style.backgroundColor='{ALTBG1}'" onMouseOut ="this.style.backgroundColor='{ALTBG2}'">
  12. <table cellspacing="0" cellpadding="0" border="0" width="100%">
  13. <!--{if !$discuz_uid}-->
  14. <tr><td>请先<a href="register.php">注册</a>成为会员
  15. <tr><td>
  16. <form method="post" name="login" action="logging.php?action=login">
  17. <input type="hidden" name="formhash" value="{FORMHASH}">
  18. <input type="hidden" name="referer" value="$referer">
  19. <input type="hidden" name="cookietime" value="2592000">
  20. <tr><td>用户 : <input type="text" name="username" size="12" maxlength="40" value="username" onfocus="this.value=''" tabindex="1" >
  21. <tr><td>{lang password} : <input type="password" name="password" size="12"  onfocus="this.value=''" value="password" tabindex="2">
  22. <tr><td>{lang security_question} : <select name="questionid" tabindex="3">
  23. <option value="0">{lang security_question_0}</option>
  24. <option value="1">{lang security_question_1}</option>
  25. <option value="2">{lang security_question_2}</option>
  26. <option value="3">{lang security_question_3}</option>
  27. <option value="4">{lang security_question_4}</option>
  28. <option value="5">{lang security_question_5}</option>
  29. <option value="6">{lang security_question_6}</option>
  30. <option value="7">{lang security_question_7}</option>
  31. </select>
  32. <tr><td><input type="text" name="answer" size="18" tabindex="4">
  33. <!--{if $seccodecheck}-->
  34.    {lang seccode} : <input type="text" name="seccodeverify" size="15" tabindex="3" maxlength="4" AUTOCOMPLETE="off"> <img src="seccode.php?sid=$sid" align="absmiddle">
  35. <!--{/if}-->
  36. <input type="submit" name="loginsubmit" value="{lang submit}" tabindex="4">
  37. </td></form></tr>
  38. <!--{else}-->

  39. <tr><td>{lang index_status}: <!--{if $validdays}--><a href="member.php?action=groupexpiry">$grouptitle</span>($validdays)</a><!--{else}-->$grouptitle<!--{/if}-->
  40. <tr><td>用户名: <span class="bold">$discuz_userss</span>
  41. <!--{if $invisible}--> / {lang login_invisible_mode}<!--{/if}-->
  42. <tr><td>{lang credits}: <span class="bold">$credits</span>
  43. <!--{loop $extcredits $id $credit}-->
  44. <tr><td>$credit[title]: <span class="bold">$GLOBALS[extcredits.$id]</span> $credit[unit]
  45. <!--{/loop}-->
  46. <!--{/if}-->
  47. <tr><td>IP: <span class="bold">$onlineip</span>
  48. <tr><td>上次访问: <span class="bold">$lastvisittime</span>
  49. <tr><td>{lang timenow}: <span class="bold">$currenttime</span>

  50. <tr><td><a href="search.php?srchfrom=$newthreads&searchsubmit=yes">新帖</a> |
  51. <!--{if $discuz_uid}-->
  52. <a href="search.php?srchuid=$discuz_uid&mytopics=yes&searchsubmit=yes">{lang show_mytopics}</a> |
  53. <!--{if $allowuseblog}-->
  54. <a href="blog.php?uid=$discuz_uid" target="_blank">{lang blog}</a> |
  55. <!--{/if}-->
  56. <!--{/if}-->
  57. <a href="digest.php">精华区</a> | <a href="member.php?action=markread">已读 </a>
  58. </td></tr></table>

  59. <td bgcolor="{ALTBG2}" onMouseOver ="this.style.backgroundColor='{ALTBG1}'" onMouseOut ="this.style.backgroundColor='{ALTBG2}'">
  60. <table cellspacing="0" cellpadding="0" border="0" width="100%">
  61. <tr><td>{lang index_today}发表: <span class="bold">$todayposts</span> 篇
  62. <tr><td>发表主题{lang total}: <span class="bold">$threads</span> 篇
  63. <tr><td>帖子总数{lang total}: <span class="bold">$posts</span> 篇
  64. <tr><td>会员总数: <span class="bold">$totalmembers</span> 人
  65. <tr><td>现时{lang total} <span class="bold">$onlinenum</span> {lang onlines}<br>
  66. <tr><td>{lang welcome_newmember}:<a href="viewpro.php?username=$memberenc"><span class="bold">$lastmember</span></a>
  67. <table border="0" cellspacing="0" width="100%">
  68. <td  class="bold">
  69. 搜索论坛</td>
  70. <tr><td  class="smalltxt">
  71. <form method="get" action="search.php">
  72. <input size="15" name="srchtxt">
  73. <input type="submit" value="搜索" name="searchsubmit"><br>
  74. <a href="search.php">高级搜索</a>
  75. </td></tr>
  76. </form>
  77. </td></tr></table>
  78. </td></tr></table>

  79. <td bgcolor="{ALTBG2}" onMouseOver ="this.style.backgroundColor='{ALTBG1}'" onMouseOut ="this.style.backgroundColor='{ALTBG2}'">
  80. <!--{loop $_DCACHE['newthread'] $nthread}-->
  81. <a href="viewthread.php?tid=$nthread[tid]" title="论坛:$nthread[name]{LF}主题:$nthread[subject]{LF}作者:$nthread[author]{LF}浏览:$nthread[views] 次{LF}回覆:$nthread[replies] 次{LF}最后发表:$nthread[lastposter]">$nthread[subject]</a><br>
  82. <!--{/loop}-->
  83. </td>
  84. <td bgcolor="{ALTBG2}" onMouseOver ="this.style.backgroundColor='{ALTBG1}'" onMouseOut ="this.style.backgroundColor='{ALTBG2}'">
  85. <!--{loop $_DCACHE['replythread'] $rthread}-->
  86. <a href="viewthread.php?tid=$rthread[tid]#lastpost" title="论坛:$rthread[name]{LF}主题:$rthread[subject]{LF}作者:$rthread[author]{LF}浏览:$rthread[views] 次{LF}回覆:$rthread[replies] 次{LF}最后发表:$rthread[lastposter]">$rthread[subject]</a><br>
  87. <!--{/loop}--></td>
  88. </tr>
  89. </table></td></tr></table><br>
复制代码
多功能版:作者:JM
1.增加1查询
2.每次到访首页即时更新
3.轻微影响首页速度

1.打开index.php


  1. $newthreads = round(($timestamp - $lastvisit + 600) / 1000) * 1000;
复制代码

下加

  1. $hack_subject_len=30; //每个标题最多显示得字数
  2. $hack_subject_num=10; //需要显示记录数

  3. $hack_newthreads_threadlist = array();
  4. $thread = array();
  5. //最新贴
  6. $query = $db->query("SELECT t.dateline,t.tid,t.subject,t.author,t.views,t.replies,t.lastpost,t.lastposter,f.name,f.fid FROM {$tablepre}threads t, {$tablepre}forums f WHERE f.fid=t.fid ORDER BY dateline DESC LIMIT 0, $hack_subject_num");

  7. while($thread = $db->fetch_array($query)) {
  8.         $thread['forumname'] = $thread['name'];
  9.         $thread['date']= gmdate("$dateformat $timeformat", $thread['dateline'] + $timeoffset * 3600);
  10.         $thread['lastreplytime']= gmdate("$dateformat $timeformat", $thread[lastpost] + ($timeoffset * 3600));
  11.         $thread[subject0]=$thread[subject];
  12.         $thread['subject'] = cutstr($thread['subject'], $hack_subject_len);
  13.         $hack_newthreads_threadlist[] = $thread;
  14. }
  15. //最新贴

  16. $threadview = $threadreply = array();
  17. //最新回覆
  18. $query = $db->query("SELECT t.dateline,t.tid,t.subject,t.author,t.views,t.replies,t.lastpost,t.lastposter,f.name,f.fid FROM {$tablepre}threads t, {$tablepre}forums f WHERE replies !=0 AND f.fid=t.fid ORDER BY lastpost DESC LIMIT 0, $hack_subject_num");
  19.         while($thread = $db->fetch_array($query)) {
  20.                 $thread[subject0]=$thread[subject];
  21.                 $thread['forumname'] = $thread['name'];
  22.                 $thread['date']= gmdate("$dateformat $timeformat", $thread['dateline'] + $timeoffset * 3600);
  23.                 $thread['lastreplytime']= gmdate("$dateformat $timeformat", $thread[lastpost] + ($timeoffset * 3600));
  24.                 $thread[subject] = cutstr($thread[subject], $hack_subject_len);
  25.                 $threadreply[] = $thread;
  26.         }
  27. //最新回覆
复制代码

修改index.htm

  1. <table cellspacing="{TABLESPACE}" cellpadding="0" border="0" width="{TABLEWIDTH}" align="center" class="outertxt">
  2. <tr><td class="smalltxt">
  3. {lang timenow} $currenttime, {lang your_lastvisit} $lastvisittime<br>
  4. {lang credits}: <span class="bold">$credits</span>
  5. <!--{loop $extcredits $id $credit}-->
  6.         $credit[title]: <span class="bold">$GLOBALS[extcredits.$id]</span>$credit[unit]
  7. <!--{/loop}-->
  8. / {lang index_status}:
  9. <!--{if $validdays}--><a href="member.php?action=groupexpiry"><span class="bold">$grouptitle</span>($validdays)</a><!--{else}--><span class="bold">$grouptitle</span><!--{/if}-->
  10. <!--{if !empty($invisible)}--> / {lang login_invisible_mode}<!--{/if}-->
  11. </td><td align="right" nowrap class="smalltxt">
  12. <a href="search.php?srchfrom=$newthreads&searchsubmit=yes">{lang show_newthreads}</a> |
  13. <!--{if $discuz_uid}-->
  14.         <a href="search.php?srchuid=$discuz_uid&mytopics=yes&searchsubmit=yes">{lang show_mytopics}</a> |
  15.         <!--{if $allowuseblog}-->
  16.                 <a href="blog.php?uid=$discuz_uid" target="_blank">{lang blog}</a> |
  17.         <!--{/if}-->
  18. <!--{/if}-->
  19. <a href="digest.php">{lang digest}</a> |
  20. <a href="member.php?action=markread">{lang mark_read}</a>
  21. | {lang welcome_newmember} <a href="viewpro.php?username=$memberenc"><span class="bold">$lastmember</span></a><br>
  22. {lang total} <span class="bold">$threads</span> {lang index_threads} / <span class="bold">$posts</span> {lang index_posts} / {lang index_today} <span class="bold">$todayposts</span> {lang index_posts} / <span class="bold">$totalmembers</span> {lang index_members}
  23. </td></tr></table>
复制代码

修改为

  1. <table cellspacing="0" cellpadding="0" border="0" width="{TABLEWIDTH}" align="center" class="tableborder">
  2. <tr><td>
  3. <table border="0" cellspacing="{INNERBORDERWIDTH}" cellpadding="{TABLESPACE}" width="100%" style="table-layout: fixed; word-wrap: break-word"  >
  4. <tr class="header">
  5. <td width="25%" align="center">个人资料</td>
  6. <td width="23%" align="center">论坛资料</td>
  7. <td width="26%" align="center">最新讨论</td>
  8. <td width="26%" align="center">最新回覆</td>

  9. </tr>
  10. <tr>

  11. <td bgcolor="{ALTBG2}" onMouseOver ="this.style.backgroundColor='{ALTBG1}'" onMouseOut ="this.style.backgroundColor='{ALTBG2}'">
  12. <table cellspacing="0" cellpadding="0" border="0" width="100%">
  13. <!--{if !$discuz_uid}-->
  14. <tr><td>请先<a href="register.php">注册</a>成为会员
  15. <tr><td>
  16. <form method="post" name="login" action="logging.php?action=login">
  17. <input type="hidden" name="formhash" value="{FORMHASH}">
  18. <input type="hidden" name="referer" value="$referer">
  19. <input type="hidden" name="cookietime" value="2592000">
  20. <tr><td>用户 : <input type="text" name="username" size="12" maxlength="40" value="username" onfocus="this.value=''" tabindex="1" >
  21. <tr><td>{lang password} : <input type="password" name="password" size="12"  onfocus="this.value=''" value="password" tabindex="2">
  22. <tr><td>{lang security_question} : <select name="questionid" tabindex="3">
  23. <option value="0">{lang security_question_0}</option>
  24. <option value="1">{lang security_question_1}</option>
  25. <option value="2">{lang security_question_2}</option>
  26. <option value="3">{lang security_question_3}</option>
  27. <option value="4">{lang security_question_4}</option>
  28. <option value="5">{lang security_question_5}</option>
  29. <option value="6">{lang security_question_6}</option>
  30. <option value="7">{lang security_question_7}</option>
  31. </select>
  32. <tr><td><input type="text" name="answer" size="18" tabindex="4">
  33. <!--{if $seccodecheck}-->
  34.    {lang seccode} : <input type="text" name="seccodeverify" size="15" tabindex="3" maxlength="4" AUTOCOMPLETE="off"> <img src="seccode.php?sid=$sid" align="absmiddle">
  35. <!--{/if}-->
  36. <input type="submit" name="loginsubmit" value="{lang submit}" tabindex="4">
  37. </td></form></tr>
  38. <!--{else}-->

  39. <tr><td>{lang index_status}: <!--{if $validdays}--><a href="member.php?action=groupexpiry">$grouptitle</span>($validdays)</a><!--{else}-->$grouptitle<!--{/if}-->
  40. <tr><td>用户名: <span class="bold">$discuz_userss</span>
  41. <!--{if $invisible}--> / {lang login_invisible_mode}<!--{/if}-->
  42. <tr><td>{lang credits}: <span class="bold">$credits</span>
  43. <!--{loop $extcredits $id $credit}-->
  44. <tr><td>$credit[title]: <span class="bold">$GLOBALS[extcredits.$id]</span> $credit[unit]
  45. <!--{/loop}-->
  46. <!--{/if}-->
  47. <tr><td>IP: <span class="bold">$onlineip</span>
  48. <tr><td>上次访问: <span class="bold">$lastvisittime</span>
  49. <tr><td>{lang timenow}: <span class="bold">$currenttime</span>

  50. <tr><td><a href="search.php?srchfrom=$newthreads&searchsubmit=yes">新帖</a> |
  51. <!--{if $discuz_uid}-->
  52. <a href="search.php?srchuid=$discuz_uid&mytopics=yes&searchsubmit=yes">{lang show_mytopics}</a> |
  53. <!--{if $allowuseblog}-->
  54. <a href="blog.php?uid=$discuz_uid" target="_blank">{lang blog}</a> |
  55. <!--{/if}-->
  56. <!--{/if}-->
  57. <a href="digest.php">精华区</a> | <a href="member.php?action=markread">已读 </a>
  58. </td></tr></table>

  59. <td bgcolor="{ALTBG2}" onMouseOver ="this.style.backgroundColor='{ALTBG1}'" onMouseOut ="this.style.backgroundColor='{ALTBG2}'">
  60. <table cellspacing="0" cellpadding="0" border="0" width="100%">
  61. <tr><td>{lang index_today}发表: <span class="bold">$todayposts</span> 篇
  62. <tr><td>发表主题{lang total}: <span class="bold">$threads</span> 篇
  63. <tr><td>帖子总数{lang total}: <span class="bold">$posts</span> 篇
  64. <tr><td>会员总数: <span class="bold">$totalmembers</span> 人
  65. <tr><td>现时{lang total} <span class="bold">$onlinenum</span> {lang onlines}<br>
  66. <tr><td>{lang welcome_newmember}:<a href="viewpro.php?username=$memberenc"><span class="bold">$lastmember</span></a>
  67. <table border="0" cellspacing="0" width="100%">
  68. <td  class="bold">
  69. 搜索论坛</td>
  70. <tr><td  class="smalltxt">
  71. <form method="get" action="search.php">
  72. <input size="15" name="srchtxt">
  73. <input type="submit" value="搜索" name="searchsubmit"><br>
  74. <a href="search.php">高级搜索</a>
  75. </td></tr>
  76. </form>
  77. </td></tr></table>
  78. </td></tr></table>

  79. <td bgcolor="{ALTBG2}" onMouseOver ="this.style.backgroundColor='{ALTBG1}'" onMouseOut ="this.style.backgroundColor='{ALTBG2}'">
  80. <!--{loop $hack_newthreads_threadlist $thread}-->
  81. <table width="100%" cellpadding="0" cellspacing="0" border="0">
  82. <td>
  83. <!--{if $thread[replies] != 0}-->
  84. <a href="viewthread.php?tid=$thread[tid]" title="主题作者 : $thread[author]{LF}主题名称 : $thread[subject0]{LF}主题版区 : $thread[forumname]{LF}发表时间 : $thread[date]{LF}浏览次数 : $thread[views] 次{LF}回覆次数 : $thread[replies] 次{LF}回覆作者 : $thread[lastposter]{LF}回覆时间 : $thread[lastreplytime] $thread[displayorder] $thread[digest] $thread[rate] $thread[attachment] $thread[poll] $thread[blog] $thread[closed]" $thread[highlight]>$thread[subject]</a>
  85. <!--{else}-->
  86. <a href="viewthread.php?tid=$thread[tid]" title="主题作者 : $thread[author]{LF}主题名称 : $thread[subject0]<br>{LF}主题版区 : $thread[forumname]{LF}发表时间 : $thread[date]{LF}浏览次数 : $thread[views] 次{LF}回覆次数 : $thread[replies] 次{LF}回覆作者 : 暂时没有回覆{LF}回覆时间 : 暂时没有回覆 $thread[displayorder] $thread[digest] $thread[rate] $thread[attachment] $thread[poll] $thread[blog] $thread[closed]" $thread[highlight]>$thread[subject]</a>
  87. <!--{/if}-->
  88. </table>
  89. <!--{/loop}-->
  90. </td></td>
  91. <td bgcolor="{ALTBG2}" onMouseOver ="this.style.backgroundColor='{ALTBG1}'" onMouseOut ="this.style.backgroundColor='{ALTBG2}'">
  92. <!--{loop $threadreply $rthread}-->
  93. <table width="100%" cellpadding="0" cellspacing="0" border="0"><td><a href="redirect.php?tid=$rthread[tid]&goto=lastpost#lastpost" title="主题作者 : $rthread[author]{LF}主题名称 : $rthread[subject0]{LF}主题版区 : $rthread[forumname]{LF}发表时间 : $rthread[date]{LF}浏览次数 : $rthread[views] 次{LF}回覆次数 : $rthread[replies] 次{LF}回覆作者 : $rthread[lastposter]{LF}回覆时间 : $rthread[lastreplytime] $rthread[displayorder] $rthread[digest] $rthread[rate] $rthread[attachment] $rthread[poll] $rthread[blog] $rthread[closed]" $rthread[highlight]>$rthread[subject]</a></table>
  94. <!--{/loop}--></td>
  95. </tr>
  96. </table></td></tr></table><br>
复制代码

[ 本帖最后由 freddy 于 2005-12-26 09:16 编辑 ]

评分

1

查看全部评分

 楼主| jimmyjimmyqqq 发表于 2005-12-25 14:36:28 | 显示全部楼层
更新日誌:
暫時沒有....
演示:
美化版,不放出來....
===========================

===========================
Cache版

===========================
首頁查詢6,沒有改變

===========================
多功能版

===========================
首頁查詢7,增加一個!

===========================

[ 本帖最后由 jimmyjimmyqqq 于 2005-12-25 14:55 编辑 ]

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
回复

使用道具 举报

 楼主| jimmyjimmyqqq 发表于 2005-12-25 14:36:55 | 显示全部楼层
沙發先坐下,以免有危險!
回复

使用道具 举报

 楼主| jimmyjimmyqqq 发表于 2005-12-25 16:07:09 | 显示全部楼层
板凳自己坐,再頂上!
回复

使用道具 举报

thwx 发表于 2005-12-25 16:09:33 | 显示全部楼层
帮顶啊
回复

使用道具 举报

xslxld 发表于 2005-12-25 16:11:37 | 显示全部楼层
简体版
回复

使用道具 举报

 楼主| jimmyjimmyqqq 发表于 2005-12-25 16:14:49 | 显示全部楼层
轉了簡體了,去用吧!
回复

使用道具 举报

123223 发表于 2005-12-25 16:22:47 | 显示全部楼层
来了  感谢提供
回复

使用道具 举报

闪电 发表于 2005-12-25 16:25:13 | 显示全部楼层
简体在哪里,太好了,支持jm
回复

使用道具 举报

孤情一刀 发表于 2005-12-25 16:25:28 | 显示全部楼层
不顶对不起我
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-5-5 01:57 , Processed in 0.205164 second(s), 18 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

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