商品筛选
This commit is contained in:
parent
671a7f18d0
commit
a3d2236df8
|
|
@ -235,8 +235,8 @@ class ProductRepo
|
|||
return [
|
||||
'min' => $min,
|
||||
'max' => $max,
|
||||
'select_min' => $selectMin ?: $min,
|
||||
'select_max' => $selectMax ?: $max,
|
||||
'select_min' => ($selectMin && $selectMin > $min) ? $selectMin : $min,
|
||||
'select_max' => ($selectMax && $selectMax < $max) ? $selectMax: $max,
|
||||
];
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue