调整商品预览

This commit is contained in:
luofei 2023-06-09 14:54:24 +08:00
parent 4092436eb4
commit 3a4bcecece
2 changed files with 6 additions and 2 deletions

View File

@ -1153,7 +1153,9 @@ class ProductRepository extends BaseRepository
];
$append = ['guaranteeTemplate','params'];
$where['product_type'] = $productType;
if (empty($where['product_id']) || $productType != 0) {
$where['product_type'] = $productType;
}
$res = $this->dao->getWhere($where, $field, $with);
if (!$res) return [];
switch ($res['product_type']) {

View File

@ -467,8 +467,10 @@ class SpuRepository extends BaseRepository
$where = [
'activity_id' => 0,
'product_id' => $id,
'product_type' => $productType,
];
if (empty($id) || $productType != 0) {
$where['product_type'] = $productType;
}
break;
case 1:
$_make = app()->make(StoreSeckillActiveRepository::class);