fix: 修复后台产品分类关联tco分类验证问题
All checks were successful
Gitea Actions Official-website / deploy-dev (push) Successful in 5s

This commit is contained in:
2025-12-08 09:34:56 +08:00
parent 276d901875
commit 4d34d76c4f
2 changed files with 4 additions and 3 deletions

View File

@@ -32,7 +32,8 @@ class ProductCategoryModel extends ProductCategoryBaseModel
// 所属产品目录分类id查询
public function scopeTcoId($query, $value)
{
$query->where('related_tco_category', '=', $value);
// $query->where('related_tco_category', '=', $value);
$query->whereRaw('FIND_IN_SET(:ref_id, related_tco_category)', ['ref_id' => $value]);
}
/**