如何在首页分类树栏目后面加上商品数量? 如: 手机(30)

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

如何在首页分类树栏目后面加上商品数量? 如: 手机(30)

用360模板,它的选购中心(categorys.lbi)已经有这样的功能了,所以想在首页的分类树(category_tree.lbi)也实现和选购中心一样的功能,对比了一下他们的代码(如下),可不知从哪里改,望各位给点建议,先谢了!
另外,后台的商品管理-商品分类中也能显示商品数量

categorys.lbi的代码:
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<!-- {if $cat_list} -->
<div class="modTitle clearfix">
<span class="left"></span><span class="right"></span>
<div class="f_l">{$lang.goods_category}</div>
</div>
<div class="modBox">
<dl id="category_tree">
<!-- {foreach from=$cat_list item=cat} -->
<dl>
<dt><a href="{$cat.url}">{$cat.cat_name|escape:html} {if $cat.goods_num}({$cat.goods_num}){/if}</a></dt>
</dl>
<!--{/foreach}-->

</dl>
</div>
<!-- {/if} -->


category_tree.lbi的代码:
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<div class="modTitle clearfix">
<span class="left"></span><span class="right"></span>
<div class="f_l">{$lang.goods_category}</div>
<div class="more"><a href="catalog.php" target="_blank">{$lang.catalog}</a></div>
</div>
<div class="modBox">
<dl id="category_tree">
<!--{foreach from=$categories item=cat}-->
<div class="toggleblock">
<dt class="clearfix">
<a href="{$cat.url}" class="f_l">{$cat.name|escape:html}</a></dt>
<!--{if $cat.cat_id}-->
<dd>
<!--{foreach from=$cat.cat_id item=child}-->
<a href="{$child.url}" title="{$child.name|escape:html}">{$child.name|escape:html}{想在这里也加入数量显示}</a>
<!--{/foreach}-->

</dd>
<!--{/if}-->
</div>
<!--{/foreach}-->
</dl>
</div>

回答:
你直接做一次count(goods_id) as gc调用$goods.gc