时间:2020-11-30 编辑:
1.先给数据库中的dede_arctype表增加一个字段
后台 - 系统 - 系统设置 - SQL命令行工具
ALTER TABLE dede_arctype
ADD typeimage
CHAR( 255 ) NOT NULL DEFAULT
2.打开 \dede\templets\catalog_add.htm 搜索
name="typename"
在它的下面加入
<tr>
<td height="65" style="padding-left:10px;">栏目图片:</td>
<td>
<input name="typeimage" type="text" style="width:250px" id="typeimage" class="alltxt" value="" />
<input type="button" name="set10" value="浏览... "class="coolbg np" style="width:60px" onClick="SelectImage('form1.typeimage','');" />
</td>
</tr>
3.打开 \dede\templets\catalog_edit.htm 搜索
name=“typename”
在它的下面加入
<tr>
<td height="65" style="padding-left:10px;">栏目图片:</td>
<td>
<input name="typeimage" type="text" style="width:250px" id="typeimage" class="alltxt" value="<?php echo $myrow['typeimage']?>" />
<input type="button" name="set10" value="浏览... "class="coolbg np" style="width:60px" onClick="SelectImage('form1.typeimage','');" />
</td>
</tr>
$in_query = "INSERT INTO `#@__arctype`(reid,topid,sortrank,typename,
改成
$in_query = "INSERT INTO `#@__arctype`(reid,topid,sortrank,typename,typeimage
继续搜索
VALUES('$reid','$topid','$sortrank','$typename',
改成
VALUES('$reid','$topid','$sortrank','$typename','$typeimage',
typeimage='$typeimage',
typedir,
改成 typedir,typeimage,
typedir,
改成 typedir,typeimage,
注意:这个文件有4处都需要改
typedir,
改成 typedir,typeimage
//设置环境变量
在它下面添加
$this->Fields['typeimage'] = $this->TypeLink->TypeInfos['typeimage'];
清下缓存,重新登录网站后台查看栏目效果 有啥问题可以咨询我