fix: 兼容配件遗漏状态筛选问题
All checks were successful
Gitea Actions Official-website / deploy-dev (push) Successful in 3s

This commit is contained in:
2026-07-09 09:37:38 +08:00
parent 116d788ecc
commit 77e60ef482
2 changed files with 12 additions and 0 deletions

View File

@@ -16,6 +16,7 @@ class ProductCompatParts
{
$params = request()->param([
'name',
'is_show',
'page/d' => 1,
'size/d' => 10
]);
@@ -25,6 +26,10 @@ 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);
})
->withSearch('name', [
'name' => $params['name']??null
])