fix: 兼容配件遗漏状态筛选问题
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:
@@ -16,6 +16,7 @@ class ProductCompatParts
|
|||||||
{
|
{
|
||||||
$params = request()->param([
|
$params = request()->param([
|
||||||
'name',
|
'name',
|
||||||
|
'is_show',
|
||||||
'page/d' => 1,
|
'page/d' => 1,
|
||||||
'size/d' => 10
|
'size/d' => 10
|
||||||
]);
|
]);
|
||||||
@@ -25,6 +26,10 @@ class ProductCompatParts
|
|||||||
'deleted_at'
|
'deleted_at'
|
||||||
])
|
])
|
||||||
->language(request()->lang_id)
|
->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', [
|
->withSearch('name', [
|
||||||
'name' => $params['name']??null
|
'name' => $params['name']??null
|
||||||
])
|
])
|
||||||
|
|||||||
@@ -39,6 +39,13 @@ class ProductCompatPartsModel extends ProductCompatPartsBaseModel
|
|||||||
$query->where('name', '=', $value);
|
$query->where('name', '=', $value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 按状态查询
|
||||||
|
public function scopeDisabled(\think\db\Query $query, int|null $disabled)
|
||||||
|
{
|
||||||
|
if (is_null($disabled)) return;
|
||||||
|
$query->where('disabled', '=', $disabled);
|
||||||
|
}
|
||||||
|
|
||||||
// 查询配件类型名称搜索
|
// 查询配件类型名称搜索
|
||||||
public function searchNameAttr(\think\db\Query $query, string|null $value, array $data)
|
public function searchNameAttr(\think\db\Query $query, string|null $value, array $data)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user