仿京东首页调用分类下商品的问题

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

以前在首页是可以调用到两个栏目的商品的,如下图冰箱的分类
a.jpg

昨天把商品分类更改后首页就没有分类商品了,看了下代码调用的地方如下,这里哪个参数是定义调用的商品栏目ID的啊?或者是在后台哪里可以直接设置在首页显示哪个分类商品?


<!-- {if $cat_goods__86__18_11} -->
<div class="m m974">
<div class="mt">
<h2>{$goods_cat__86__18_11.name}</h2>
<div class="extra"><a href="{$goods_cat__86__18_11.url}">更多>></a></div>
</div>
<div class="mc">
<ul class="list-h w_b_232">
<!--{foreach from=$cat_goods__86__18_11 item=goods name=cat_goods}-->
<li{if $smarty.foreach.cat_goods.index < 2} class="fore"{/if}>
<div class="p-img"><a href="{$goods.url}" target="_blank"><img height="100" width="100" app="image:product" alt="{$goods.name|escape:html}" src="{$goods.thumb}"></a></div>
<div class="p-name"><a href="{$goods.url}" title="{$goods.name|escape:html}" target="_blank">{$goods.name}<font color="#ff6600">{$goods.brief}</font></a></div>
<div class="p-price" wi_p="{$goods.id}">
<!--{if $goods.promote_price neq ""} -->
{$lang.promote_price}<strong>{$goods.promote_price}</strong>
<!--{else}-->
{$lang.shop_price}<strong>{$goods.shop_price}</strong>
<!--{/if}-->
</div>
</li>
<!--{/foreach}-->
</ul>
</div>
</div>
<!--{/if}-->

回答:
你的数据怎么调用的

额我用的是2012京东的怎么跟你的不一样。