后台的商品列表显示商品缩略图

后台的商品列表显示商品缩略图,在管理商品的时候会比较方便一些

下面就由ecshop开发中心为大家讲解一下吧!

修改一:admin\includes\lib_goods.php  约898行

$sql = "SELECT goods_id, goods_name, goods_type, goods_sn, shop_price, goods_thumb, is_on_sale, is_best, is_new, is_hot, sort_order, goods_number, integral, " .
                    " (promote_price > 0 AND promote_start_date <= '$today' AND promote_end_date >= '$today') AS is_promote ".

在此sql中,增加goods_thumb  这个字段。

修改二:admin\templates\goods_list.htm

在大概20行左右增加     <th>{$lang.goods_thumb}</th>

大概37行左右增加

<td><img src="../{$goods.goods_thumb}"></td>

$goods.goods_thumb 实际上就是缩略图的存放路径。

修改三:在languages/zh_cn/goods.php这个语言包内在大概67行左右添加:  $_LANG['goods_thumb'] = '商品缩略图';  用于goods_list.html中。


你可能感兴趣的:(后台的商品列表显示商品缩略图)