...
|
...
|
@@ -28,7 +28,7 @@ func (l *SearchTagLogic) SearchTag(req *types.TagListRequest) (resp *types.TagLi |
|
|
queryOptions := domain.NewQueryOptions().WithOffsetLimit(req.Page, req.Size)
|
|
|
|
|
|
if len(req.Category) > 0 {
|
|
|
queryOptions = queryOptions.MustWithKV("group", "%"+req.Category+"%")
|
|
|
queryOptions = queryOptions.MustWithKV("category", "%"+req.Category+"%")
|
|
|
}
|
|
|
if len(req.TagName) > 0 {
|
|
|
queryOptions = queryOptions.MustWithKV("name", "%"+req.TagName+"%")
|
...
|
...
|
|