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

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

[DST|DAC]前后台相向共用_回收站 for D6.0 [含big5]

[复制链接]
伊泽浩 发表于 2007-10-12 23:18:16 | 显示全部楼层 |阅读模式
=========================

插件名称:前后台相向共用_回收站D6.0

适用版本:Discuz!6.0 GBK (9月4日为基础修改)

原 作 者:别问我是谁

修 改 者: [DST]小铭铭

DAC制作:Eric03,伊泽浩


插件功能演示




修改档案

admin/home.inc.php
admin/settings.inc.php
admin/recyclebin.inc.php

forumdisplay.php
viewthread.php
topicadmin.php

templates/default/admincp.lang.php
templates/default/templates.lang.php

templates/default/forumdisplay.htm
templates/default/viewthread.htm
templates/default/topicadmin_moderate.htm
templates/default/topicadmin_reason.htm

修改完成 谨记更新缓存

=========================
安装方法:

一、DAC安装
一、下载DAC资源包
http://17dst.com/dacpage.php?act ... iden=dst_recycle_60

另附big5版本的DAC资源包(由Eric03制作):


二、上传至论坛根目录,访问dac.php开始安装(前提是您已经安装了DAC)

——————————————————
使用DAC安装包进行一键安装之前请确定您已经安装了DAC客户端:
http://17dst.com/dacpage.php?action=oneplugin&iden=dac01
相关阅读:
Tips:什么是DAC,我为什么要选择DAC?  
Tips:什么是DAC标准
DAC客户端试用报告(DAC使用图片教程)
第三方协作计划,DAC开始测试,方便站长和作者[内含更新作品集]

——————————————————

三、若有手动操作,请按照手动操作的提示文档手动修改

四、后台设定回收站版区
Discuz! 选项 --> 基本设置 -->  论坛功能 --> 编辑器相关设置  -->  回收站版区 -->



二、手动安装
一楼发不下,请参阅2楼


本Hack唯一反馈地址
http://17dst.com/thread-3293-1-1.html

其他地方的反馈不保证收集和回复。

[ 本帖最后由 伊泽浩 于 2007-10-31 11:35 编辑 ]
 楼主| 伊泽浩 发表于 2007-10-12 23:18:56 | 显示全部楼层
一.升级数据库 ( 这升级,是可将主题还原到被删的版区,不像以往不知在那区被删除 )
  1. ALTER TABLE `cdb_posts` ADD `returnfid` mediumint(8) unsigned NOT NULL default '0';
  2. ALTER TABLE `cdb_threads` ADD `returnfid` mediumint(8) unsigned NOT NULL default '0';
  3. INSERT INTO cdb_settings VALUES ('recyclefid', '0');
复制代码
二.后台升级 开启 所有版块 主题回收站。

三.全新安装开始

1.admin/home.inc.php 找
  1.         $threadsdel = $threadsmod = 0;
  2.         $query = $db->query("SELECT displayorder FROM {$tablepre}threads WHERE displayorder<'0'");
  3.         while($thread = $db->fetch_array($query)) {
  4.                 if($thread['displayorder'] == -1) {
  5.                         $threadsdel++;
  6.                 } elseif($thread['displayorder'] == -2) {
  7.                         $threadsmod++;
  8.                 }
  9.         }
复制代码
改为:
  1.         if($recyclefid) {
  2.         $query1 = $db->query("SELECT COUNT(*) FROM {$tablepre}threads WHERE fid='$recyclefid'");
  3.         $threadsdel = $db->result($query1, 0);
  4.         }
  5.         $query2 = $db->query("SELECT COUNT(*) FROM {$tablepre}threads WHERE displayorder='-2'");
  6.         $threadsmod = $db->result($query2, 0);
复制代码
----------------------------------------------------------------------------------------------------


2.admin/settings.inc.php 

查找:
  1. showsetting('settings_smcols', 'settingsnew[smcols]', $settings['smcols'], 'text');
复制代码
在下面加上:
  1.                 showsetting('settings_recyclefid', 'settingsnew[recyclefid]', $settings['recyclefid'], 'text');
复制代码
再查找:
  1. 'maxavatarpixel', 'maxpolloptions', 'karmaratelimit', 'losslessdel', 'edittimelimit', 'smcols',
复制代码
后面加入上:
  1. 'recyclefid',
复制代码
----------------------------------------------------------------------------------------------------

3.admin/recyclebin.inc.php
查找:
  1. WHERE tm.dateline<$timestamp-'$days'*86400 AND tm.action='DEL' AND t.tid=tm.tid AND t.displayorder='-1'");
复制代码
改为:
  1.                         WHERE tm.dateline<$timestamp-'$days'*86400 AND tm.action='DEL' AND t.tid=tm.tid AND t.fid='$recyclefid'");
复制代码
再查找:
  1.         if($moderation['delete']) {
  2.                 $deletetids = '\''.implode('\',\'', $moderation['delete']).'\'';

  3.                 $query = $db->query("SELECT attachment, thumb, remote FROM {$tablepre}attachments WHERE tid IN ($deletetids)");
  4.                 while($attach = $db->fetch_array($query)) {
  5.                         dunlink($attach['attachment'], $attach['thumb'], $attach['remote']);
  6.                 }

  7.                 $db->query("DELETE FROM {$tablepre}posts WHERE tid IN ($deletetids)", 'UNBUFFERED');
  8.                 $db->query("DELETE FROM {$tablepre}polloptions WHERE tid IN ($deletetids)", 'UNBUFFERED');
  9.                 $db->query("DELETE FROM {$tablepre}polls WHERE tid IN ($deletetids)", 'UNBUFFERED');
  10.                 $db->query("DELETE FROM {$tablepre}rewardlog WHERE tid IN ($deletetids)", 'UNBUFFERED');
  11.                 $db->query("DELETE FROM {$tablepre}trades WHERE tid IN ($deletetids)", 'UNBUFFERED');
  12.                 $db->query("DELETE FROM {$tablepre}attachments WHERE tid IN ($deletetids)", 'UNBUFFERED');
  13.                 $db->query("DELETE FROM {$tablepre}threads WHERE tid IN ($deletetids)");
  14.                 $threadsdel = $db->affected_rows();
  15.         }

  16.         if($moderation['undelete']) {
  17.                 $undeletetids = '\''.implode('\',\'', $moderation['undelete']).'\'';

  18.                 $tuidarray = $ruidarray = $fidarray = array();
  19.                 $query = $db->query("SELECT fid, first, authorid FROM {$tablepre}posts WHERE tid IN ($undeletetids)");
  20.                 while($post = $db->fetch_array($query)) {
  21.                         if($post['first']) {
  22.                                 $tuidarray[] = $post['authorid'];
  23.                         } else {
  24.                                 $ruidarray[] = $post['authorid'];
  25.                         }
  26.                         if(!in_array($post['fid'], $fidarray)) {
  27.                                 $fidarray[] = $post['fid'];
  28.                         }
  29.                 }
  30.                 if($tuidarray) {
  31.                         updatepostcredits('+', $tuidarray, $creditspolicy['post']);
  32.                 }
  33.                 if($ruidarray) {
  34.                         updatepostcredits('+', $ruidarray, $creditspolicy['reply']);
  35.                 }

  36.                 $db->query("UPDATE {$tablepre}posts SET invisible='0' WHERE tid IN ($undeletetids)", 'UNBUFFERED');
  37.                 $db->query("UPDATE {$tablepre}threads SET displayorder='0', moderated='1' WHERE tid IN ($undeletetids)");
  38.                 $threadsundel = $db->affected_rows();

  39.                 updatemodlog($undeletetids, 'UDL');
  40.                 updatemodworks('UDL', $threadsundel);

  41.                 foreach($fidarray as $fid) {
  42.                         updateforumcount($fid);
  43.                 }
  44.         }

  45.         cpmsg('recyclebin_succeed');
复制代码
替挨为:
  1.         if($moderation['delete']) {
  2.                 $deletetids = '\''.implode('\',\'', $moderation['delete']).'\'';

  3.                 $threads = array();
  4.                 $query = $db->query("SELECT * FROM {$tablepre}threads WHERE tid IN ($deletetids)");
  5.                 while($thread = $db->fetch_array($query)) {
  6.                         $threads[] = $thread;
  7.                 }
  8.                         foreach($threads as $thread) {
  9.                                 if($thread['digest']) {
  10.                                         updatecredits($thread['authorid'], $creditspolicy['digest'], -$thread['digest'], 'digestposts=digestposts-1');
  11.                                 }
  12.                         }

  13.                 $query = $db->query("SELECT attachment, thumb, remote FROM {$tablepre}attachments WHERE tid IN ($deletetids)");
  14.                 while($attach = $db->fetch_array($query)) {
  15.                         dunlink($attach['attachment'], $attach['thumb'], $attach['remote']);
  16.                 }

  17.                 if($tuidarray) {
  18.                         updatepostcredits('-', $tuidarray, $creditspolicy['post']);
  19.                 }
  20.                 if($ruidarray) {
  21.                         updatepostcredits('-', $ruidarray, $creditspolicy['reply']);
  22.                 }

  23.                 $db->query("DELETE FROM {$tablepre}posts WHERE tid IN ($deletetids)", 'UNBUFFERED');
  24.                 $db->query("DELETE FROM {$tablepre}polloptions WHERE tid IN ($deletetids)", 'UNBUFFERED');
  25.                 $db->query("DELETE FROM {$tablepre}polls WHERE tid IN ($deletetids)", 'UNBUFFERED');
  26.                 $db->query("DELETE FROM {$tablepre}rewardlog WHERE tid IN ($deletetids)", 'UNBUFFERED');
  27.                 $db->query("DELETE FROM {$tablepre}trades WHERE tid IN ($deletetids)", 'UNBUFFERED');
  28.                 $db->query("DELETE FROM {$tablepre}attachments WHERE tid IN ($deletetids)", 'UNBUFFERED');
  29.                 $db->query("DELETE FROM {$tablepre}threads WHERE tid IN ($deletetids)");
  30.                 $threadsdel = $db->affected_rows();

  31.                 foreach($fidarray as $fid) {
  32.                         updateforumcount($fid);
  33.                 }
  34.         }

  35.         if($moderation['undelete']) {
  36.                 $undeletetids = '\''.implode('\',\'', $moderation['undelete']).'\'';
  37.                 $fidarray = array();
  38.                 $query = $db->query("SELECT fid, tid, first, authorid, returnfid FROM {$tablepre}posts WHERE tid IN ($undeletetids)");
  39.                 while($post = $db->fetch_array($query)) {

  40.                         if(!in_array($post['fid'], $fidarray)) {
  41.                                 $returnarray[] = $post['returnfid'];
  42.                         }
  43.                         if(!in_array($post['fid'], $fidarray)) {
  44.                                 $fidarray[] = $post['fid'];
  45.                         }
  46.                                 $returtid = $post['tid'];
  47.                                 $returnfid = $post['returnfid'];

  48.                 $db->query("UPDATE {$tablepre}threads SET fid='$returnfid', returnfid='0', moderated='1' WHERE tid='$returtid'");
  49.                 $threadsundel = $db->affected_rows();
  50.                 $db->query("UPDATE {$tablepre}posts SET fid='$returnfid', returnfid='0' WHERE tid='$returtid'");
  51.                 }
  52.                 $threadsundel = $db->affected_rows();

  53.                 updatemodlog($undeletetids, 'UDL');
  54.                 updatemodworks('UDL', $threadsundel);

  55.                 foreach($returnarray as $fid) {
  56.                         updateforumcount($fid);
  57.                 }
  58.                 foreach($fidarray as $fid) {
  59.                         updateforumcount($fid);
  60.                 }        
  61.         }

  62.         cpmsg('recyclebin_succeed');
复制代码
再查找:
  1. $sql .= $inforum                ? " AND t.fid='$inforum'" : '';
复制代码
替换为:
  1.         $sql .= $inforum                ? " AND t.returnfid='$inforum'" : '';
复制代码
最后查找:
  1. WHERE t.displayorder='-1' $sql
复制代码
替换为:
  1.                 WHERE t.fid='$recyclefid' $sql
复制代码
----------------------------------------------------------------------------------------------------


4.forumdisplay.php 

查找:
  1. require_once DISCUZ_ROOT.'./include/forum.func.php';
复制代码
之下加上:
  1. require_once './forumdata/cache/cache_forums.php';
复制代码
再查找:
  1. $thread['lastpost'] = gmdate("$dateformat $timeformat", $thread['lastpost'] + $timeoffset * 3600);
复制代码
之下加上:
  1.         $thread['returnname'] = $_DCACHE['forums'][$thread['returnfid']]['name'];
复制代码
----------------------------------------------------------------------------------------------------

5.viewthread.php 

查找:
  1. require_once DISCUZ_ROOT.'./include/discuzcode.func.php';
复制代码
之下加上:
  1. require_once './forumdata/cache/cache_forums.php';
复制代码
再查找:
  1. $thread['subjectenc']         = rawurlencode($thread['subject']);
复制代码
之下加上:
  1. $thread['returnname']   = $_DCACHE['forums'][$thread['returnfid']]['name'];
复制代码
----------------------------------------------------------------------------------------------------

6.include/moderation.inc.php

查找:
  1. array('delete', '
复制代码
后面加上:
  1. undelete', '
复制代码
再查找:
  1.         if($operation == 'delete') {

  2.                 $stickmodify = 0;
  3.                 foreach($threadlist as $thread) {
  4.                         if($thread['digest']) {
  5.                                 updatecredits($thread['authorid'], $digestcredits, -$thread['digest'], 'digestposts=digestposts-1');
  6.                         }
  7.                         if(in_array($thread['displayorder'], array(2, 3))) {
  8.                                 $stickmodify = 1;
  9.                         }
  10.                 }

  11.                 $losslessdel = $losslessdel > 0 ? $timestamp - $losslessdel * 86400 : 0;

  12.                 //Update members' credits and post counter
  13.                 $uidarray = $tuidarray = $ruidarray = array();
  14.                 $query = $db->query("SELECT first, authorid, dateline FROM {$tablepre}posts WHERE tid IN ($moderatetids)");
  15.                 while($post = $db->fetch_array($query)) {
  16.                         if($post['dateline'] < $losslessdel) {
  17.                                 $uidarray[] = $post['authorid'];
  18.                         } else {
  19.                                 if($post['first']) {
  20.                                         $tuidarray[] = $post['authorid'];
  21.                                 } else {
  22.                                         $ruidarray[] = $post['authorid'];
  23.                                 }
  24.                         }
  25.                 }

  26.                 if($uidarray) {
  27.                         updatepostcredits('-', $uidarray, array());
  28.                 }
  29.                 if($tuidarray) {
  30.                         updatepostcredits('-', $tuidarray, $postcredits);
  31.                 }
  32.                 if($ruidarray) {
  33.                         updatepostcredits('-', $ruidarray, $replycredits);
  34.                 }
  35.                 $modaction = 'DEL';

  36.                 if($forum['recyclebin']) {

  37.                         $db->query("UPDATE {$tablepre}threads SET displayorder='-1', digest='0', moderated='1' WHERE tid IN ($moderatetids)");
  38.                         $db->query("UPDATE {$tablepre}posts SET invisible='-1' WHERE tid IN ($moderatetids)");

  39.                 } else {
复制代码
替换为:
  1.         if($operation == 'delete') {

  2.         if(!$recycleadminid && $recyclefid != $fid && $forum['recyclebin']) {

  3.                 $displayorderadd = $adminid == 3 ? ', displayorder=\'0\'' : '';

  4.                 $db->query("UPDATE {$tablepre}threads SET fid='$recyclefid', moderated='1', returnfid='$fid' $displayorderadd WHERE tid IN ($moderatetids)");
  5.                 $db->query("UPDATE {$tablepre}posts SET fid='$recyclefid', returnfid='$fid' WHERE tid IN ($moderatetids)");

  6.                 if($globalstick && $stickmodify) {
  7.                         require_once DISCUZ_ROOT.'./include/cache.func.php';
  8.                         updatecache('globalstick');
  9.                 }

  10.                 $modaction = 'DEL';

  11.                 updateforumcount($recyclefid);
  12.                 updateforumcount($fid);

  13.                 } else {

  14.                 $stickmodify = 0;
  15.                 foreach($threadlist as $thread) {
  16.                         if($thread['digest']) {
  17.                                 updatecredits($thread['authorid'], $digestcredits, -$thread['digest'], 'digestposts=digestposts-1');
  18.                         }
  19.                         if(in_array($thread['displayorder'], array(2, 3))) {
  20.                                 $stickmodify = 1;
  21.                         }
  22.                 }

  23.                 $losslessdel = $losslessdel > 0 ? $timestamp - $losslessdel * 86400 : 0;

  24.                 //Update members' credits and post counter
  25.                 $uidarray = $tuidarray = $ruidarray = array();
  26.                 $query = $db->query("SELECT first, authorid, dateline FROM {$tablepre}posts WHERE tid IN ($moderatetids)");
  27.                 while($post = $db->fetch_array($query)) {
  28.                         if($post['dateline'] < $losslessdel) {
  29.                                 $uidarray[] = $post['authorid'];
  30.                         } else {
  31.                                 if($post['first']) {
  32.                                         $tuidarray[] = $post['authorid'];
  33.                                 } else {
  34.                                         $ruidarray[] = $post['authorid'];
  35.                                 }
  36.                         }
  37.                 }

  38.                 if($uidarray) {
  39.                         updatepostcredits('-', $uidarray, array());
  40.                 }
  41.                 if($tuidarray) {
  42.                         updatepostcredits('-', $tuidarray, $postcredits);
  43.                 }
  44.                 if($ruidarray) {
  45.                         updatepostcredits('-', $ruidarray, $replycredits);
  46.                 }
  47.                 $modaction = 'DEL';
复制代码
再查找:
  1. } elseif($operation == 'move') {
复制代码
之下加上:
  1.                 if($recyclefid && $recyclefid == $moveto && $forum['recyclebin']) {
  2.                         showmessage("抱歉!主题不可移到 [ 回收站版区 ],但您可选用删除主题<p>当您选用删除主题,被删除的主题便会自动搬到回收站<p>而且被删除到回收站的主题,亦可看到由那区被删除<p>若是错误被删除,亦有批量还原主题功能,请返回修改。");
  3.                 }
复制代码
 
再查找:
  1. $db->query("UPDATE {$tablepre}threads SET fid='$moveto', moderated='1' $displayorderadd WHERE tid IN ($moderatetids)");
  2. $db->query("UPDATE {$tablepre}posts SET fid='$moveto' WHERE tid IN ($moderatetids)");
复制代码
替换为:
  1.                                 $db->query("UPDATE {$tablepre}threads SET fid='$moveto', moderated='1', returnfid='0' $displayorderadd WHERE tid IN ($moderatetids)");
  2.                                 $db->query("UPDATE {$tablepre}posts SET fid='$moveto', returnfid='0' WHERE tid IN ($moderatetids)");
复制代码
最后再查找:
  1. } elseif($operation == 'close') {
复制代码
在其上面加上 ( 紧记加在上面 ):
  1.                         } elseif($operation == 'undelete') {

  2.                         foreach($threadlist as $thread) {

  3.                 $returnfid = $thread['returnfid'];
  4.                 $returntid = $thread['tid'];
  5.                 $forumname = "点击进入所在版区";
  6.                 $db->query("UPDATE {$tablepre}threads SET fid='$returnfid', moderated='1', returnfid='0' WHERE tid='$returntid'");
  7.                 $db->query("UPDATE {$tablepre}posts SET fid='$returnfid', returnfid='0' WHERE tid='$returntid'");

  8.                 updateforumcount($returnfid);
  9.                                 }

  10.                 if($globalstick && $stickmodify) {
  11.                         require_once DISCUZ_ROOT.'./include/cache.func.php';
  12.                         updatecache('globalstick');
  13.                 }

  14.                 $modaction = 'UDL';

  15.                 updateforumcount($recyclefid);
复制代码
----------------------------------------------------------------------------------------------------

7.topicadmin.php

查找:
  1. array('moderate', 'delete', '
复制代码
后面加入:
  1. undelete', '
复制代码
----------------------------------------------------------------------------------------------------

8.templates/default/admincp.lang.php 

查找:
  1. 'recyclebin_search_forum' => '所在版块:',
复制代码
更改为:
  1. 'recyclebin_search_forum' => '原主题所在版块:',
复制代码
最后再查找:
  1. 'recyclebin_delete_time' => '删除时间',
复制代码
之下加上:
  1.         'settings_recyclefid' => '回收站版区:',
  2.         'settings_recyclefid_comment' => '开启一个版区作回收站,设置回收站版区的 fid 号码。',
复制代码
----------------------------------------------------------------------------------------------------


9.templates/default/templates.lang.php 

查找:
  1. 'admin_delthread' => '删除主题',
复制代码
之下加上:
  1.         'admin_returnthread' => '还原主题',
复制代码
----------------------------------------------------------------------------------------------------

10.templates/default/forumdisplay.htm

查找:
  1.                                         <!--{if $thread['new']}-->
  2.                                                 <a href="redirect.php?tid=$thread[tid]&goto=newpost$highlight#newpost" class="new">New</a>
  3.                                         <!--{/if}-->
复制代码
之下加上:
  1.                                         <!--{if $thread['returnfid']}--><div align="right">[<a href="forumdisplay.php?fid=$thread[returnfid]" target="_blank" title="原主题所在版区 - $thread[returnname]">原区 ? $thread[returnname]</a>]</div><!--{/if}-->
复制代码
再查找:
  1. <label><input class="checkbox" type="checkbox" name="chkall" onclick="checkall(this.form, 'moderate')" /> {lang checkall}</label>
复制代码
之下加上:
  1.         <!--{if $recyclefid == $fid}--><button onclick="operation.value = 'undelete';submit()">{lang admin_returnthread}<!--{/if}-->
复制代码
----------------------------------------------------------------------------------------------------

11.templates/default/viewthread.htm 

查找:
  1. <!--{if $thread['readperm']}-->{lang readperm_thread} $thread[readperm]<!--{/if}-->
复制代码
之下加入
  1.                         <!--{if $thread['returnfid']}--> <a href="forumdisplay.php?fid=$thread[returnfid]" target="_blank" title="原主题所在版区 - $thread[returnname]">原区 ? $thread[returnname]</a><!--{/if}-->
复制代码
再查找:
  1. <!--{if $thread['digest'] >= 0}--><option value="delete">{lang admin_delthread}</option><!--{/if}-->
复制代码
之下加上:
  1.                         <!--{if $thread['fid'] == $recyclefid}--><option value="undelete">{lang admin_returnthread}</option><!--{/if}-->
复制代码
----------------------------------------------------------------------------------------------------
12.templates/default/topicadmin_moderate.htm 

查找2 次:
  1. {lang admin_delthread}
复制代码
之下加上(2次都加上):
  1. <!--{elseif $operation == 'undelete'}-->
  2.         {lang admin_returnthread}
复制代码
----------------------------------------------------------------------------------------------------

13.后台设定回收站版区 --> Discuz! 选项 --> 基本设置 -->  论坛功能 --> 编辑器相关设置  -->  回收站版区 -->


----------------------------------------------------------------------------------------------------

14.反安装代码:
  1. ALTER TABLE `cdb_posts` DROP `returnfid`;
  2. ALTER TABLE `cdb_threads` DROP `returnfid`;
  3. DELETE FROM cdb_settings WHERE `variable`='recyclefid';
复制代码
----------------------------------------------------------------------------------------------------
                                             ~全新安装完成 ~
----------------------------------------------------------------------------------------------------

[ 本帖最后由 伊泽浩 于 2007-10-31 11:35 编辑 ]
回复

使用道具 举报

rpai 发表于 2007-10-12 23:58:38 | 显示全部楼层
第一次占了沙发哦。。。。
回复

使用道具 举报

flywolf 发表于 2007-10-13 00:29:25 | 显示全部楼层
哈哈还有板凳等着我啊,我也是第一次抢楼的
回复

使用道具 举报

flywolf 发表于 2007-10-13 00:41:13 | 显示全部楼层
不过不明白这是什么意思啊,这个在前台删除了放到回收站里,那和积分关联么?是不是积分也删除了?
回复

使用道具 举报

fkeuaii 发表于 2007-10-13 02:40:20 | 显示全部楼层
这个貌似很不错,还带反安装的,楼主辛苦了,团队辛苦了
回复

使用道具 举报

songsong20 发表于 2007-10-13 09:14:31 | 显示全部楼层
支持下    测试下  呵呵
回复

使用道具 举报

chf 发表于 2007-10-13 22:38:06 | 显示全部楼层
谢谢分享
回复

使用道具 举报

lxy365 发表于 2007-10-13 23:14:20 | 显示全部楼层
楼主辛苦了,谢谢分享
回复

使用道具 举报

紫蝶仙子 发表于 2007-10-13 23:22:43 | 显示全部楼层
好复杂啊.

想问下用DAC如果开始这些文件改过了会有问题么?
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-3-29 15:43 , Processed in 0.120392 second(s), 17 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

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