服务报价 | 域名主机 | 网络营销 | 软件工具| [加入收藏]
 热线电话: #
当前位置: 主页 > php教程 > ecshop教程 >

ECSHOP首页调用指定扩展分类商品

时间:2014-12-08 11:55来源:未知 作者:最模板 点击:
因为一些原因需要在网站首页调用扩展分类的商品,找了一天没找到具体方法,所以决定自己动手丰衣足食,现将此方法分享给大家 1.在后台给商品添加扩展分类 2.查看该扩展分类的

因为一些原因需要在网站首页调用扩展分类的商品,找了一天没找到具体方法,所以决定自己动手丰衣足食,现将此方法分享给大家

1.在后台给商品添加扩展分类

ECSHOP首页调用指定扩展分类商品

2.查看该扩展分类的cat_id

ECSHOP首页调用指定扩展分类商品
 

3.includes\lib_goods.php,添加方法

[php] view plaincopy在CODE上查看代码片派生到我的代码片
 
  1. function index_appoint_goods_list($cat_id = ''$num = '')  
  2. {  
  3.     $sql = 'select g.goods_id, g.cat_id,c.parent_id, g.goods_name, g.goods_name_style, g.market_price, g.shop_price AS org_price, g.promote_price, ' .  
  4.            "IFNULL(mp.user_price, g.shop_price * '$_SESSION[discount]') AS shop_price, ".  
  5.            "promote_start_date, promote_end_date, g.goods_brief, g.goods_thumb, goods_img, " .  
  6.            "g.is_best, g.is_new, g.is_hot, g.is_promote " .  
  7.            'FROM ' . $GLOBALS['ecs']->table('goods') . ' AS g ' .  
  8.            'LEFT JOIN ' . $GLOBALS['ecs']->table('category') . ' AS c ON c.cat_id = g.cat_id ' .  
  9.            'LEFT JOIN ' . $GLOBALS['ecs']->table('member_price') . ' AS mp ON mp.goods_id = g.goods_id AND mp.user_rank = '.$_SESSION[user_rank].' '.  
  10.            'LEFT JOIN ' . $GLOBALS['ecs']->table('goods_cat') . ' AS gc ON gc.goods_id = g.goods_id '.  
  11.            'Where g.is_on_sale = 1 AND g.is_alone_sale = 1 AND g.is_delete = 0 '.  
  12.     $sql .= " AND (gc.cat_id = " . $cat_id ." OR c.parent_id =" . $cat_id" OR g.cat_id = " . $cat_id ." OR g.cat_id ". db_create_in(array_unique(array_merge(array($cat_id), array_keys(cat_list($cat_id, 0, false))))) .")";  
  13.     $sql .= " LIMIT $num";  
  14.   
  15.     $res = $GLOBALS['db']->getAll($sql);  
  16.     $goods = array();  
  17.       
  18.     foreach ($res AS $idx => $row)  
  19.     {  
  20.         $goods[$idx]['id'] = $row['article_id'];  
  21.         $goods[$idx]['id'] = $row['goods_id'];  
  22.         $goods[$idx]['name'] = $row['goods_name'];  
  23.         $goods[$idx]['brief'] = $row['goods_brief'];  
  24.         $goods[$idx]['brand_name'] = $row['brand_name'];  
  25.         $goods[$idx]['goods_style_name'] = add_style($row['goods_name'],$row['goods_name_style']);  
  26.         $goods[$idx]['short_name'] = $GLOBALS['_CFG']['goods_name_length'] > 0 ?  
  27.         sub_str($row['goods_name'], $GLOBALS['_CFG']['goods_name_length']) : $row['goods_name'];  
  28.         $goods[$idx]['short_style_name'] = add_style($goods[$idx]['short_name'],$row['goods_name_style']);  
  29.         $goods[$idx]['market_price'] = price_format($row['market_price']);  
  30.         $goods[$idx]['shop_price'] = price_format($row['shop_price']);  
  31.         $goods[$idx]['thumb'] = empty($row['goods_thumb']) ? $GLOBALS['_CFG']['no_picture'] : $row['goods_thumb'];  
  32.         $goods[$idx]['goods_img'] = empty($row['goods_img']) ? $GLOBALS['_CFG']['no_picture'] : $row['goods_img'];  
  33.         $goods[$idx]['url'] = build_uri('goods'array('gid' => $row['goods_id']), $row['goods_name']);  
  34.     }  
  35.     return $goods;  
  36. }  

4.index.php

[php] view plaincopy在CODE上查看代码片派生到我的代码片
 
  1. $smarty->assign('hot_goods',       get_recommend_goods('hot'));     // 热点文章  

下,添加

[php] view plaincopy在CODE上查看代码片派生到我的代码片
 
  1. $smarty->assign('index_appoint2_goods', index_appoint_goods_list(2,4));      //(扩展分类id,调用4条数据)  

5.themes\default\index.dwt 的相应位置添加

[php] view plaincopy在CODE上查看代码片派生到我的代码片
 
  1. <!-- {foreach from=$index_appoint2_goods item=goods  name=no}-->  
  2. <div class="line">  
  3.     <div class="item">  
  4.     <span class="no">{$smarty.foreach.no.iteration}</span>  
  5.         <p class="pic"><a href="{$goods.url}"><img  src="{$goods.thumb}" alt="{$goods.name|escape:html}" class="B_blue" /></a></p>  
  6.         <p class="name">  <a href="{$goods.url}" title="{$goods.name|escape:html}">{$goods.name|escape}</a></p>  
  7.         <p class="price">  
  8.         <span class="goodsPrice">   
  9.         <!-- {if $goods.promote_price neq ""} -->  
  10.         {$goods.promote_price}  
  11.         <!-- {else}-->  
  12.         {$goods.shop_price}  
  13.         <!--{/if}-->  
  14.         </span>  
  15.         </p>  
  16.     </div>  
  17. </div>  
  18. <div style="clear:both"></div>          
  19. <!-- {/foreach} -->  

 

(责任编辑:最模板)
顶一下
(5)
100%
踩一下
(0)
0%
------分隔线----------------------------