fix: 修复兼容配件类型状态筛选bug
All checks were successful
Gitea Actions Official-website / deploy-dev (push) Successful in 3s
All checks were successful
Gitea Actions Official-website / deploy-dev (push) Successful in 3s
This commit is contained in:
@@ -27,7 +27,7 @@ class ProductCompatParts
|
|||||||
])
|
])
|
||||||
->language(request()->lang_id)
|
->language(request()->lang_id)
|
||||||
->where(function($query) use($params) {
|
->where(function($query) use($params) {
|
||||||
if (empty($params['is_show'])) return;
|
if (is_null($params['is_show'])) return;
|
||||||
$query->disabled($params['is_show'] == 1 ? 0 : 1);
|
$query->disabled($params['is_show'] == 1 ? 0 : 1);
|
||||||
})
|
})
|
||||||
->withSearch('name', [
|
->withSearch('name', [
|
||||||
|
|||||||
Reference in New Issue
Block a user