码迷,mamicode.com
首页 > 其他好文 > 详细

ecshop调用积分商城里面的商品或时热销的商品

时间:2015-08-30 14:19:22      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:

1.首先打开index.php 文件在下面加上:

function index_get_exchange($limit=3,$ishot=0)
{
 
$sql_ishot=$ishot ? " AND eg.is_hot=1 " : "";
$sql = SELECT g.goods_id, g.goods_name, g.goods_name_style, eg.exchange_integral,  .
 g.goods_type,g.goods_brief, g.goods_thumb, g.goods_img, eg.is_hot  .
 FROM  . $GLOBALS[ecs]->table(exchange_goods) .  AS eg LEFT JOIN  . $GLOBALS[ecs]->table(goods) .  AS g ON g.goods_id = eg.goods_id   .
 WHERE eg.is_exchange = 1 AND g.is_delete = 0 . $sql_ishot .  limit .$limit;
$res = $GLOBALS[db]->getAll($sql);
    $arr = array();
   foreach($res AS $idx => $row)
    {
$arr[$idx][name]              = $row[goods_name];
$arr[$idx][goods_brief]       = $row[goods_brief];
$arr[$idx][goods_style_name] = add_style($row[goods_name],$row[goods_name_style]);
$arr[$idx][exchange_integral] = $row[exchange_integral];
$arr[$idx][type]              = $row[goods_type];
$arr[$idx][goods_thumb]       = get_image_path($row[goods_id], $row[goods_thumb], true);
$arr[$idx][goods_img]         = get_image_path($row[goods_id], $row[goods_img]);
$arr[$idx][url]               = build_uri(exchange_goods, array(gid=>$row[goods_id]), $row[goods_name]);
    }
    return $arr;
}


2.然后在大概127行左右找到

 

  $smarty->assign(auction_list,    index_get_auction());        // 拍卖活动
    $smarty->assign(shop_notice,     $_CFG[shop_notice]);       // 商店公告
仿照上面在他下面加上:
$smarty->assign(goods_exchange_list,index_get_exchange(10,0));  //积分商城
注:10表示显示10条数据

 


3.然后打开index.dwt文件,加上:

<!--积分商城列表-->
<div class="box">
 <div class="box_1">
  <h3><span><a href="/exchange.php" class="f6">积分商城</a></span></h3>
    <div class="centerPadd">
    <div class="clearfix goodsBox" style="border:none;">
      <!--{foreach name=goods_exchange_list from=$goods_exchange_list item=exchange_goods}-->
      <div class="goodsItem">
  <a href="{$exchange_goods.url}" target="_blank"><img src="{$exchange_goods.goods_thumb}" alt="{$exchange_goods.goods_name}" class="goodsimg" /></a><br />
   <p><a href="{$exchange_goods.url}" target="_blank">
  <!-- {if $exchange_goods.goods_style_name} -->
  <font class="f3">{$exchange_goods.goods_style_name}</font><br />
  <!-- {else} -->
  <font class="f3">{$exchange_goods.goods_name}</font><br />
  <!-- {/if} -->
  </a>
  </p>
{$lang.exchange_integral}<font class="price">{$exchange_goods.exchange_integral}</font>
        </div>
      <!--{/foreach}-->
      <div class="more"><a href="/exchange.php"><img src="images/more.gif" /></a></div>
    </div>
    </div>
 </div>
</div>
<div class="blank5"></div>

 

ecshop调用积分商城里面的商品或时热销的商品

标签:

原文地址:http://www.cnblogs.com/yundu/p/4770777.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!