|
@@ -75,11 +75,10 @@ func SearchByFields(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
|
page, size, query := UtilQueryPageSize(c)
|
|
|
|
|
|
// 查询所有分类
|
|
|
- confCate := &model.Category{}
|
|
|
cates := []*model.Category{}
|
|
|
repo.RepoDocsSearch(apictx.CreateRepoCtx(), &repo.PageSearchOptions{CollectName: repo.CollectionCategory}, &cates)
|
|
|
- confCate.Children = cates
|
|
|
- err := parseCategories(query, confCate)
|
|
|
+
|
|
|
+ err := parseCategories(query, cates[0])
|
|
|
if err != nil {
|
|
|
return nil, err
|
|
|
}
|
|
@@ -175,7 +174,7 @@ func FindCategoryIds(c *model.Category, parents []string) ([]string, [][]string)
|
|
|
if n == nil {
|
|
|
return ids
|
|
|
}
|
|
|
- ids = append(ids, n.Id.Hex())
|
|
|
+ ids = append(ids, n.IdStr)
|
|
|
if n.Children != nil {
|
|
|
for _, c := range n.Children {
|
|
|
cids := allChildren(c)
|
|
@@ -193,7 +192,7 @@ func FindCategoryIds(c *model.Category, parents []string) ([]string, [][]string)
|
|
|
return ids
|
|
|
}
|
|
|
|
|
|
- if n.Id.Hex() == id {
|
|
|
+ if n.IdStr == id {
|
|
|
ids = allChildren(n)
|
|
|
return ids
|
|
|
}
|