diff --git a/app/common/repositories/store/product/SpuRepository.php b/app/common/repositories/store/product/SpuRepository.php index 08177b6a..83951b66 100644 --- a/app/common/repositories/store/product/SpuRepository.php +++ b/app/common/repositories/store/product/SpuRepository.php @@ -165,7 +165,13 @@ class SpuRepository extends BaseRepository $count = $query->count(); // $Sql=$query->page($page, $limit)->setOption('field', [])->field($this->productFiled)->fetchSql(true); - $list = $query->page($page, $limit)->setOption('field', [])->field($this->productFiled)->select(); + $query->with([ + 'merchant' => function ($query) { + $query->field($this->merchantFiled)->with(['type_name']); + }, + 'issetCoupon', + ]); + $list = $query->page($page, $limit)->setOption('field', [])->field($this->productFiled)->orderRaw('rand()')->select(); $append = ['stop_time','svip_price','show_svip_info','is_svip_price']; $list->append($append);