在后台管理商品列表是时,增加缩略图显示

2016-07-07 15:02 来源:www.chinab4c.com 作者:ecshop专家

在管理 商品列表时,光看商品名称,总觉得不直观,通过本人小小改动,让商品列表,也能出现商品缩略图,其间只需做两个页面的小小改动既可,ecshop的代码结构,规范,值得学习和借签,比上个破zen cart 强多了
对象库中,admin/includes/lib_goods.php,查询语句中加缩略图字段,goods_thumb

  1. $sql = "SELECT goods_id, goods_name, goods_thumb, goods_sn, shop_price, is_on_sale, is_best, is_new, is_hot, goods_number, integral, " .
  2. " (promote_price > 0 AND promote_start_date <= '$today' AND promote_end_date >= '$today') AS is_promote ".
  3. " FROM " . $GLOBALS['ecs']->table('goods') . " AS g WHERE is_delete='$is_delete' $where" .
  4. " ORDER BY $filter[sort_by] $filter[sort_order] ".
  5. " LIMIT " . $filter['start'] . ",$filter[page_size]";
  6. $filter['keyword'] = stripslashes($filter['keyword']);
  7. set_filter($filter, $sql, $param_str);
复制代码
模板文件中 admin\templates\goods_list.htm 加一列显示图片既可
  1. <td class="first-cell" style="{if $goods.is_promote}color:red;{/if}"><img src="../{$goods.goods_thumb}" /></td>
复制代码


电池商城 提供




回答:
论坛早有人分享了 搜索下

不能做个插件直接 覆盖上传吗

请问支持2.62嘛?

如果商品照片以网络地址为主(非上传图片),则应改为:<img src="{$goods.goods_thumb}">

2。7不行吗??????