最模板 - 外贸网站建设,外贸网站模板

最模板

当前位置: 首页 > 建站教程 > CMS教程 > ECShop教程 >

Ecshop实现商品分类树显示分类下商品数量

时间:2014-12-20 15:47来源:未知 作者:最模板zuimoban 点击:
我们会看到很多的网站可以看到有分类并且可以显示当前分类有多少商品数量了,下面我来给大家介绍实现方法. 非常简单的改动 1、includes/lib_goods.php下,找到这两个函数改成我这样就行

我们会看到很多的网站可以看到有分类并且可以显示当前分类有多少商品数量了,下面我来给大家介绍实现方法.

非常简单的改动

1、includes/lib_goods.php下,找到这两个函数改成我这样就行,代码如下:

  1. function get_categories_tree($cat_id = 0) 
  2. function get_child_tree($tree_id = 0) 
  3.  
  4. /** 
  5.  * 获得指定分类同级的所有分类以及该分类下的子分类 
  6.  * 
  7.  * @access  public 
  8.  * @param   integer     $cat_id     分类编号 
  9.  * @return  array 
  10.  */ 
  11. function get_categories_tree($cat_id = 0) 
  12.     if ($cat_id > 0) 
  13.     { 
  14.         $sql = 'SELECT parent_id FROM ' . $GLOBALS['ecs']->table('category') . " WHERE cat_id = '$cat_id'"
  15.         $parent_id = $GLOBALS['db']->getOne($sql); 
  16.     } 
  17.     else 
  18.     { 
  19.         $parent_id = 0; 
  20.     } 
  21.  
  22.     /* 
  23.      判断当前分类中全是是否是底级分类, 
  24.      如果是取出底级分类上级分类, 
  25.      如果不是取当前分类及其下的子分类 
  26.     */ 
  27.     $sql = 'SELECT count(*) FROM ' . $GLOBALS['ecs']->table('category') . " WHERE parent_id = '$parent_id' AND is_show = 1 "
  28.     if ($GLOBALS['db']->getOne($sql) || $parent_id == 0) 
  29.     { 
  30.         /* 获取当前分类及其子分类 */ 
  31.         $sql = 'SELECT cat_id,cat_name ,parent_id,is_show ' . 
  32.                 'FROM ' . $GLOBALS['ecs']->table('category') . 
  33.                 "WHERE parent_id = '$parent_id' AND is_show = 1 ORDER BY sort_order ASC, cat_id ASC"
  34.  
  35.         $res = $GLOBALS['db']->getAll($sql); 
  36.  
  37.         foreach ($res AS $row
  38.         { 
  39.             if ($row['is_show']) 
  40.             { 
  41.                 /*获得分类下商品总数 雕鹰团队:QQ284265134 */ 
  42.                 $children = get_children($row['cat_id']); 
  43.                 $sql = 'SELECT count(*)' . "FROM " . $GLOBALS['ecs']->table('goods') . ' AS g '
  44.                 'WHERE g.is_on_sale = 1 AND g.is_alone_sale = 1 AND '
  45.                  'g.is_delete = 0 AND (' . $children . 'OR ' . get_extension_goods($children) . ') '
  46.                 $cat_goods_num=$GLOBALS['db']->getOne($sql); 
  47.                 $cat_arr[$row['cat_id']]['goods_num']   = $cat_goods_num == '' ? 0 : $cat_goods_num
  48.                 
  49.                 $cat_arr[$row['cat_id']]['id']   = $row['cat_id']; 
  50.                 $cat_arr[$row['cat_id']]['name'] = $row['cat_name']; 
  51.                 $cat_arr[$row['cat_id']]['url']  = build_uri('category'array('cid' => $row['cat_id']), $row['cat_name']); 
  52.  
  53.                 if (isset($row['cat_id']) != NULL) 
  54.                 { 
  55.                     $cat_arr[$row['cat_id']]['cat_id'] = get_child_tree($row['cat_id']); 
  56.                 } 
  57.             } 
  58.         } 
  59.     } 
  60.     if(isset($cat_arr)) 
  61.     { 
  62.         return $cat_arr
  63.     } 
  64.  
  65. function get_child_tree($tree_id = 0) 
  66.     $three_arr = array(); 
  67.     $sql = 'SELECT count(*) FROM ' . $GLOBALS['ecs']->table('category') . " WHERE parent_id = '$tree_id' AND is_show = 1 "
  68.     if ($GLOBALS['db']->getOne($sql) || $tree_id == 0) 
  69.     { 
  70.         $child_sql = 'SELECT cat_id, cat_name, parent_id, is_show ' . 
  71.                 'FROM ' . $GLOBALS['ecs']->table('category') . 
  72.                 "WHERE parent_id = '$tree_id' AND is_show = 1 ORDER BY sort_order ASC, cat_id ASC"
  73.         $res = $GLOBALS['db']->getAll($child_sql); 
  74.         foreach ($res AS $row
  75.         { 
  76.                 /*获得分类下商品总数 雕鹰团队:QQ284265134 */ 
  77.                 $children = get_children($row['cat_id']); 
  78.                 $sql = 'SELECT count(*)' . "FROM " . $GLOBALS['ecs']->table('goods') . ' AS g '
  79.                 'WHERE g.is_on_sale = 1 AND g.is_alone_sale = 1 AND '
  80.                  'g.is_delete = 0 AND (' . $children . 'OR ' . get_extension_goods($children) . ') '
  81.                 $cat_goods_num=$GLOBALS['db']->getOne($sql); 
  82.                 $three_arr[$row['cat_id']]['goods_num']   = $cat_goods_num == '' ? 0 : $cat_goods_num
  83.                 
  84.             if ($row['is_show']) 
  85.  
  86.                $three_arr[$row['cat_id']]['id']   = $row['cat_id']; 
  87.                $three_arr[$row['cat_id']]['name'] = $row['cat_name']; 
  88.                $three_arr[$row['cat_id']]['url']  = build_uri('category'array('cid' => $row['cat_id']), $row['cat_name']); 
  89.  
  90.                if (isset($row['cat_id']) != NULL) 
  91.                    { 
  92.                        $three_arr[$row['cat_id']]['cat_id'] = get_child_tree($row['cat_id']);  //开源软件:vcphp.com 
  93.  
  94.             } 
  95.         } 
  96.     } 
  97.     return $three_arr

library/group_buy.lbi

注意这里:原版的lefttime.js是定义的单个ID

<font id="leftTime" class="f1"> 这里循环了,ID重复一定报错,这里怎么解决呢?你可以自己从JS文件夹里新复制一个lefttime.js这里我命名为:lefttime1.js;调用如下代码:

  1. <script type="text/javascript" src="js/lefttime1.js"></script> 
  2.  
  3.  
  4. <meta http-equiv="Content-Type" content="text/html; charset=gbk"
  5. <script type="text/javascript" src="js/lefttime.js"></script> 
  6.  
  7.  
  8. <!-- {if $group_buy_goods} --> 
  9. <div class="box" style="border:1px solid #e2e2e2; width:198px;"
  10. <h3><span>{$lang.group_buy_goods}</span></h3> 
  11. <div class="box_1" style="border:none;"
  12. <div class="boxCenterList clearfix"
  13.       <!--{foreach from=$group_buy_goods item=goods}--> 
  14.       <ul class="clearfix" style="position:relative;"
  15.            <li class="goodsimg" style="width:190px; height:190px; margin:0px;"><a style=" margin:0px;width:190px; height:190px;" href="{$goods.url}"><img src="{$goods.thumb}" alt="{$goods.goods_name|escape:html}" class="goodsimg" style=" margin:0;width:190px; height:190px;" /></a></li> 
  16.                 <li style="text-align:center; width:200px; overflow:hidden; font-size:14px; font-weight:bold;"><a href="{$goods.url}" title="{$goods.goods_name|escape:html}">{$goods.short_style_name|escape:html}</a></li> 
  17.                 <li style="width:100%;"><font class="shop_s">{$goods.last_price}</font></li> 
  18.                 <div class="index_group">售出 <strong>{$goods.vn}</strong> 件</div> 
  19.                 剩余时间:<span id="leftTime">结束时间:{$goods.gmt_end_date}</span> 
  20.         </ul> 
  21.       <!--{/foreach}--> 
  22.     </div> 
  23.      
  24. </div> 
  25. </div> 
  26. <div class="blank"></div> 
  27. <!-- {/if} --> 
  28.  
  29. <script type="text/javascript"
  30. var gmt_end_time = "{$goods.gmt_end_date|default:0}"
  31. {foreach from=$lang.goods_js item=item key=key} 
  32. var {$key} = "{$item}"
  33. {/foreach} 
  34. var now_time = "{$goods.gmt_now_date|default:0}"
  35. <!-- {literal} --> 
  36. //开源软件:vcphp.com 
  37. onload = function() 
  38.   try 
  39.   { 
  40.     onload_leftTime(); 
  41.   } 
  42.   catch (e) 
  43.   {} 
  44. <!-- {/literal} --> 
  45. </script>
(责任编辑:最模板)
------分隔线----------------------------
栏目列表
推荐内容