Goods.php 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. <?php
  2. namespace addons\shopro\controller;
  3. use addons\shopro\exception\Exception;
  4. class Goods extends Base
  5. {
  6. protected $noNeedLogin = ['index', 'detail', 'lists', 'activity', 'seckillList', 'grouponList', 'store'];
  7. protected $noNeedRight = ['*'];
  8. public function index()
  9. {
  10. }
  11. public function detail()
  12. {
  13. $id = $this->request->get('id');
  14. $detail = \addons\shopro\model\Goods::getGoodsDetail($id);
  15. // 记录足记
  16. \addons\shopro\model\UserView::addView($detail);
  17. $sku_price = $detail['sku_price']; // 处理过的规格
  18. // tp bug json_encode 或者 toArray 的时候 sku_price 会重新查询数据库,导致被处理过的规格又还原回去了
  19. $detail = json_decode(json_encode($detail), true);
  20. $detail['sku_price'] = $sku_price;
  21. $this->success('商品详情', $detail);
  22. }
  23. public function lists()
  24. {
  25. $params = $this->request->get();
  26. $data = \addons\shopro\model\Goods::getGoodsList($params);
  27. $this->success('商品列表', $data);
  28. }
  29. /**
  30. * 获取商品支持的 自提点
  31. */
  32. public function store()
  33. {
  34. $params = $this->request->get();
  35. $data = \addons\shopro\model\Goods::getGoodsStore($params);
  36. $this->success('自提列表', $data);
  37. }
  38. // 秒杀列表
  39. public function seckillList() {
  40. $params = $this->request->get();
  41. $this->success('秒杀商品列表', \addons\shopro\model\Goods::getSeckillGoodsList($params));
  42. }
  43. // 拼团列表
  44. public function grouponList() {
  45. $params = $this->request->get();
  46. $this->success('拼团商品列表', \addons\shopro\model\Goods::getGrouponGoodsList($params));
  47. }
  48. public function activity()
  49. {
  50. $activity_id = $this->request->get('activity_id');
  51. $activity = \addons\shopro\model\Activity::get($activity_id);
  52. if (!$activity) {
  53. $this->error('活动不存在', null, -1);
  54. }
  55. $goods = \addons\shopro\model\Goods::getGoodsList(['goods_ids' => $activity->goods_ids]);
  56. $activity->goods = $goods;
  57. $this->success('活动列表', $activity);
  58. }
  59. public function favorite()
  60. {
  61. $params = $this->request->post();
  62. $result = \addons\shopro\model\UserFavorite::edit($params);
  63. $this->success($result ? '收藏成功' : '取消收藏', $result);
  64. }
  65. public function favoriteList()
  66. {
  67. $data = \addons\shopro\model\UserFavorite::getGoodsList();
  68. $this->success('商品收藏列表', $data);
  69. }
  70. public function viewDelete()
  71. {
  72. $params = $this->request->post();
  73. $result = \addons\shopro\model\UserView::del($params);
  74. $this->success('删除成功', $result);
  75. }
  76. public function viewList()
  77. {
  78. $data = \addons\shopro\model\UserView::getGoodsList();
  79. $this->success('商品浏览列表', $data);
  80. }
  81. }