Goods.php 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\store\controller\api;
  15. use library\Controller;
  16. use think\Db;
  17. /**
  18. * 商品管理接口
  19. * Class Goods
  20. * @package app\store\controller\api
  21. */
  22. class Goods extends Controller
  23. {
  24. /**
  25. * 获取商品列表
  26. * @throws \think\db\exception\DataNotFoundException
  27. * @throws \think\db\exception\ModelNotFoundException
  28. * @throws \think\exception\DbException
  29. */
  30. public function gets()
  31. {
  32. $where = [['status', 'eq', '1'], ['is_deleted', 'eq', '0']];
  33. $this->success('获取商品列表成功!', ['list' => $this->_getGoodsList($where)]);
  34. }
  35. /**
  36. * 获取礼包商品列表
  37. * @throws \think\db\exception\DataNotFoundException
  38. * @throws \think\db\exception\ModelNotFoundException
  39. * @throws \think\exception\DbException
  40. */
  41. public function vips()
  42. {
  43. $where = [['status', 'eq', '1'], ['is_deleted', 'eq', '0']];
  44. $this->success('获取礼包列表成功!', ['list' => $this->_getGoodsList($where)]);
  45. }
  46. /**
  47. * 获取商品列表
  48. * @param array $where
  49. * @return array
  50. * @throws \think\db\exception\DataNotFoundException
  51. * @throws \think\db\exception\ModelNotFoundException
  52. * @throws \think\exception\DbException
  53. */
  54. private function _getGoodsList($where = [])
  55. {
  56. if ($this->request->has('title', 'post', true)) {
  57. $where[] = ['title', 'like', "%{$this->request->post('title')}%"];
  58. }
  59. if ($this->request->has('cate_id', 'post', true)) {
  60. $where[] = ['cate_id', 'eq', $this->request->post('cate_id')];
  61. }
  62. $field = 'id,title,logo,cate_id,image,number_sales,number_stock,content,specs,lists';
  63. $list = Db::name('StoreGoods')->field($field)->where($where)->order('sort desc,id desc')->select();
  64. $goodsList = Db::name('StoreGoodsList')->whereIn('goods_id', array_unique(array_column($list, 'id')))->select();
  65. foreach ($list as &$vo) {
  66. $vo['list'] = [];
  67. $vo['image'] = explode('|', $vo['image']);
  68. $vo['specs'] = json_decode($vo['specs'], true);
  69. $vo['lists'] = json_decode($vo['lists'], true);
  70. foreach ($goodsList as $goods) if ($goods['goods_id'] === $vo['id']) {
  71. array_push($vo['list'], $goods);
  72. }
  73. }
  74. return $list;
  75. }
  76. /**
  77. * 获取单个商品信息
  78. * @throws \think\db\exception\DataNotFoundException
  79. * @throws \think\db\exception\ModelNotFoundException
  80. * @throws \think\exception\DbException
  81. */
  82. public function get()
  83. {
  84. $goods_id = input('goods_id');
  85. $where = ['is_deleted' => '0', 'status' => '1', 'id' => $goods_id];
  86. $field = 'id,title,logo,cate_id,image,number_sales,number_stock,content,specs,lists';
  87. $goods = Db::name('StoreGoods')->field($field)->where($where)->find();
  88. if (empty($goods)) $this->error('指定商品不存在,请更换商品ID重试!');
  89. $goods['image'] = explode('|', $goods['image']);
  90. $goods['specs'] = json_decode($goods['specs'], true);
  91. $goods['lists'] = json_decode($goods['lists'], true);
  92. $goods['list'] = Db::name('StoreGoodsList')->where(['goods_id' => $goods_id])->select();
  93. if (empty($goods['list'])) {
  94. $this->error('指定商品规格不存在,请更换商品ID重试!');
  95. } else {
  96. $this->success('获取商品信息成功!', $goods);
  97. }
  98. }
  99. /**
  100. * 获取商品分类信息
  101. * @throws \think\db\exception\DataNotFoundException
  102. * @throws \think\db\exception\ModelNotFoundException
  103. * @throws \think\exception\DbException
  104. */
  105. public function cate()
  106. {
  107. $where = ['is_deleted' => '0', 'status' => '1'];
  108. $field = 'id cate_id,logo cate_logo,title cate_title';
  109. $list = Db::name('StoreGoodsCate')->field($field)->where($where)->order('sort desc,id desc')->select();
  110. $this->success('获取商品分类成功!', ['list' => $list]);
  111. }
  112. }