StoreGoods.php 967 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. namespace app\common\model;
  3. use think\Model;
  4. // 商品
  5. class StoreGoods extends Model
  6. {
  7. //protected $resultSetType = 'collection';// 设置返回类型
  8. public function itemList()
  9. {
  10. return $this->hasMany('StoreGoodsItem','goods_id','id')->where(['is_deleted'=>0,'status'=>1]);
  11. }
  12. /**
  13. * 获取商品规格详情
  14. * @param $goods_id 商品id
  15. * @param $spec_id 规格id
  16. * @return array
  17. * @throws \think\db\exception\DataNotFoundException
  18. * @throws \think\db\exception\ModelNotFoundException
  19. * @throws \think\exception\DbException
  20. */
  21. public static function getGoodsSpec($goods_id,$spec_id){
  22. $goods_info = self::with(['itemList'=>function($query)use($spec_id){
  23. return $query->where('id',$spec_id)->where('is_deleted',0);
  24. }])->where('id',$goods_id)->where('is_deleted',0)->where('status',1)->find();
  25. return $goods_info ? $goods_info->toArray() : [];
  26. }
  27. }