refactor: 修改banner分类搜索

This commit is contained in:
2025-03-25 15:55:47 +08:00
parent bae2542a1e
commit acef10018c

View File

@@ -23,6 +23,6 @@ class SysBannerModel extends SysBannerBaseModel
if (is_null($value)) { if (is_null($value)) {
return; return;
} }
$query->where('name', 'like', "%{$value}"); $query->where('name', 'like', "%{$value}%");
} }
} }