fix: 修复兼容配件类型状态筛选bug
All checks were successful
Gitea Actions Official-website / deploy-dev (push) Successful in 3s

This commit is contained in:
2026-07-09 10:05:50 +08:00
parent d71251fecf
commit b4b4b914c2

View File

@@ -16,9 +16,9 @@ class ProductCompatParts
{
$params = request()->param([
'name',
'is_show',
'page/d' => 1,
'size/d' => 10
'is_show' => null,
'page/d' => 1,
'size/d' => 10
]);
$list = ProductCompatPartsModel::withoutField([
@@ -26,10 +26,7 @@ class ProductCompatParts
'deleted_at'
])
->language(request()->lang_id)
->where(function($query) use($params) {
if (empty($params['is_show'])) return;
$query->disabled($params['is_show'] == 1 ? 0 : 1);
})
->disabled(is_null($params['is_show']) ? null : ($params['is_show'] == 1 ? 0 : 1))
->withSearch('name', [
'name' => $params['name']??null
])