sun-pc-linux 1 сар өмнө
parent
commit
b3739dd0d1

+ 4 - 5
sku3d/sku3d/api/a-service-img.go

@@ -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
 		}

+ 1 - 0
sku3d/sku3d/db/model/category.go

@@ -9,6 +9,7 @@ import (
 type Category struct {
 	Id         primitive.ObjectID `bson:"_id,omitempty" json:"_id"`
 	Type       string             `bson:"type,omitempty" json:"type"`
+	IdStr      string             `bson:"idStr,omitempty" json:"idStr"`
 	Name       string             `bson:"name,omitempty" json:"name"`
 	Children   []*Category        `bson:"children,omitempty" json:"children"`
 	CreateTime time.Time          `bson:"createTime,omitempty" json:"createTime"`