我想实现在分类页面按品牌分别列出产品

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

我想实现在分类页面按品牌分表列出产品,

就是取代现在的商品列表部分,

先显示品牌一的标志,然后下面换行跟着显示品牌一在该分类下的所有商品,

显示完了,再接着现实品牌二的标志,品牌二在该分类下的所有商品,依次类推,如附件图片里面所显示的效果。



品牌页面反过来,按分类分别列出产品.先显示该品牌分类一的所有商品,再显示分类二的商品......

我试图用下面两个办法,都不能正确实现我要的效果:

一、后台设置模板,调用品牌的商品brand_goods.lbi,但是这个lbi不管你在哪个分类页面都是显示这个品牌的所有商品,而不是该分类下的商品。

二、生成商品代码,但是生成的的代码也是有些问题的,比如说cat_id=1,我不要这个确定的1,而是一个表示当前cat_id的变量。这里面能不能引入变量?应该怎么写?
  1. <script src="http://localhost/shop1/goods_script.php?cat_id=1&brand_id=1&need_image=true&goods_num=99&arrange=h&charset=UTF8&sitename="></script>
复制代码
请问各位有没有看到那里已经实现这个功能?或者谁可以修改代码达到这个效果?


我自己不懂程序,瞎研究了下,好象在includes/lib_goods.php里面本身就有一个获得指定的品牌下的商品的功能,是不是brand_goods.lbi通过调用这个来实现,那只要在这里加上一个判断当前分类的语句好象就可以了啊,这样可以实现在首页等地方,显示这个品牌的所有产品;在分类下,比如分类id是15,那就显示这个品牌所有分类id为15的产品


  1. /**
  2. * 获得指定的品牌下的商品
  3. *
  4. * @access public
  5. * @param integer $brand_id 品牌的ID
  6. * @param integer $num 数量
  7. * @param integer $cat_id 分类编号
  8. * @return void
  9. */
  10. function assign_brand_goods($brand_id, $num = 0, $cat_id = 0)
  11. {
  12. $sql = 'SELECT g.goods_id, g.goods_name, g.market_price, g.shop_price AS org_price, ' .
  13. "IFNULL(mp.user_price, g.shop_price * '$_SESSION[discount]') AS shop_price, ".
  14. 'g.promote_price, g.promote_start_date, g.promote_end_date, g.goods_brief, g.goods_thumb, g.goods_img ' .
  15. 'FROM ' . $GLOBALS['ecs']->table('goods') . ' AS g ' .
  16. "LEFT JOIN " . $GLOBALS['ecs']->table('member_price') . " AS mp ".
  17. "ON mp.goods_id = g.goods_id AND mp.user_rank = '$_SESSION[user_rank]' ".
  18. "WHERE g.is_on_sale = 1 AND g.is_alone_sale = 1 AND g.is_delete = 0 AND g.brand_id = '$brand_id'";

  19. if ($cat_id > 0)
  20. {
  21. $sql .= get_children($cat_id);
  22. }

  23. $sql .= ' ORDER BY g.sort_order, g.goods_id DESC';
  24. if ($num > 0)
  25. {
  26. $res = $GLOBALS['db']->selectLimit($sql, $num);
  27. }
  28. else
  29. {
  30. $res = $GLOBALS['db']->query($sql);
  31. }

  32. $idx = 0;
  33. $goods = array();
  34. while ($row = $GLOBALS['db']->fetchRow($res))
  35. {
  36. if ($row['promote_price'] > 0)
  37. {
  38. $promote_price = bargain_price($row['promote_price'], $row['promote_start_date'], $row['promote_end_date']);
  39. }
  40. else
  41. {
  42. $promote_price = 0;
  43. }

  44. $goods[$idx]['id'] = $row['goods_id'];
  45. $goods[$idx]['name'] = $row['goods_name'];
  46. $goods[$idx]['short_name'] = $GLOBALS['_CFG']['goods_name_length'] > 0 ?
  47. sub_str($row['goods_name'], $GLOBALS['_CFG']['goods_name_length']) : $row['goods_name'];
  48. $goods[$idx]['market_price'] = $row['market_price'];
  49. $goods[$idx]['shop_price'] = price_format($row['shop_price']);
  50. $goods[$idx]['promote_price'] = $promote_price > 0 ? price_format($promote_price) : '';
  51. $goods[$idx]['brief'] = $row['goods_brief'];
  52. $goods[$idx]['thumb'] = get_image_path($row['goods_id'], $row['goods_thumb'], true);
  53. $goods[$idx]['goods_img'] = get_image_path($row['goods_id'], $row['goods_img']);
  54. $goods[$idx]['url'] = build_uri('goods', array('gid' => $row['goods_id']), $row['goods_name']);

  55. $idx++;
  56. }

  57. /* 分类信息 */
  58. $sql = 'SELECT brand_name FROM ' . $GLOBALS['ecs']->table('brand') . " WHERE brand_id = '$brand_id'";

  59. $brand['id'] = $brand_id;
  60. $brand['name'] = $GLOBALS['db']->getOne($sql);
  61. $brand['url'] = build_uri('brand', array('bid' => $brand_id), $brand['name']);

  62. $brand_goods = array('brand' => $brand, 'goods' => $goods);

  63. return $brand_goods;
  64. }
复制代码


回答:
笨办法 在添加分类让可以选择分类。这样调起来就方便了