目前很多商城網(wǎng)站上的第一樓和第二樓等都有顯示某一級(jí)欄目下(父類別)所有的子欄目(子類別)的最新商品。根據(jù)客戶網(wǎng)站的需求,長(zhǎng)沙做網(wǎng)站的站長(zhǎng)在好朋友的指導(dǎo)下,實(shí)現(xiàn)了該功能;下面列出方法供大家參考:
步驟【1】:
文件位置:includes/lib_goods.php
/** *根據(jù)類別ID獲取最新商品(按商品序號(hào)倒序排列) * @param int $limit */ function get_latest_goods_by_category($catid,$limit){ $sql="SELECT goods_id,goods_name,goods_thumb,ROUND(shop_price,0) AS `price` FROM ecs_goods WHERE cat_id IN(SELECT cat_id FROM `ecs_category` WHERE parent_id=".$catid.") AND is_on_sale=1 ORDER BY goods_id DESC LIMIT ".$limit; return $GLOBALS['db']->getAll($sql);
步驟【2】:
文件位置:index.php
$smarty->assign('latest_goods_1', get_latest_goods_by_category(1,5)); //指定分類名稱 $smarty->assign('latest_goods_2', get_latest_goods_by_category(2,5)); //指定分類名稱2
latest_goods_1,latest_goods_2是需要調(diào)用的;
get_latest_goods_by_category(1,5)里的(1,5),1代表分類id;5代表獲取5條數(shù)據(jù)。
步驟【3】:
文件位置:index.dwt
<!-- #BeginLibraryItem "/library/recommend_one.lbi" --><!-- #EndLibraryItem -->
recommend_one.lbi這個(gè)文件庫是根據(jù)自己需求命名。
步驟【4】:
在library里新增這個(gè)庫recommend_one.lbi
<!-- {if 1 eq 1} --> <!-- {if $cat_rec_sign neq 1} --> <div class="index_class_top"> <h1 class="title02"></h1> <ul> <li> <!--{foreach from=$categories.2.cat_id item=lower}--> <a href="{$lower.url}" title="{$lower.name|escape:html}" target="_blank">{$lower.name|escape:html}</a> | <!--{/foreach}--> </li> </ul> <span><a href="category.php?id=2" target="_blank">更多</a></span> </div> <div class="index_class_content"> <div class="class_content_area"> <ul> <!-- {/if} --> <!--{foreach from=$latest_goods_1 item=goods}--> <li> <a href="goods.php?id={$goods.goods_id}" target="_blank"><img src="{$goods.goods_thumb}" alt="{$goods.goods_name}" width="180" height="210" border="0" /></a> <dl class="detail"> <dt class="name"><a href="goods.php?id={$goods.goods_id}" title="{$goods.goods_name}" target="_blank">{$goods.goods_name}</a></dt> <dd><span class="price-irubao-label">市場(chǎng)價(jià):<span class="price-irubao">¥{$goods.price}</span></span></dd> </dl> </li> <!--{/foreach}--> <!-- {if $cat_rec_sign neq 1} --> </ul> </div> </div> <!-- {/if} --> <!-- {/if} -->
latest_goods_1的1或者2,對(duì)應(yīng)步驟2,不多解釋。
Copyright © 2009-2019 Ywcms.Com All Right Reserved. 湘ICP備16006489號(hào)-2