|
@@ -97,17 +97,19 @@ func ProductList(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
option1 := &repo.PageSearchOptions{
|
|
option1 := &repo.PageSearchOptions{
|
|
CollectName: repo.CollectionCollect,
|
|
CollectName: repo.CollectionCollect,
|
|
Query: repo.Map{"userId": userId, "supplyId": supplyId},
|
|
Query: repo.Map{"userId": userId, "supplyId": supplyId},
|
|
- Project: []string{"productId"},
|
|
|
|
|
|
+ Project: []string{"_id", "productId"},
|
|
}
|
|
}
|
|
err1 := repo.RepoDocsSearch(apictx.CreateRepoCtx(), option1, &collects)
|
|
err1 := repo.RepoDocsSearch(apictx.CreateRepoCtx(), option1, &collects)
|
|
|
|
|
|
if len(pageResult.List) > 0 {
|
|
if len(pageResult.List) > 0 {
|
|
for _, v := range pageResult.List {
|
|
for _, v := range pageResult.List {
|
|
v["isCollect"] = false
|
|
v["isCollect"] = false
|
|
|
|
+ v["collectId"] = ""
|
|
if len(collects) > 0 && err1 == nil {
|
|
if len(collects) > 0 && err1 == nil {
|
|
for _, col := range collects {
|
|
for _, col := range collects {
|
|
if v["_id"].(primitive.ObjectID) == col.ProductId { // productId唯一
|
|
if v["_id"].(primitive.ObjectID) == col.ProductId { // productId唯一
|
|
v["isCollect"] = true
|
|
v["isCollect"] = true
|
|
|
|
+ v["collectId"] = col.Id.Hex()
|
|
break
|
|
break
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -134,7 +136,8 @@ func ProductUpdate(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
// 产品信息
|
|
// 产品信息
|
|
type ProudctDetailRes struct {
|
|
type ProudctDetailRes struct {
|
|
model.Product
|
|
model.Product
|
|
- IsCollect bool `json:"isCollect"`
|
|
|
|
|
|
+ IsCollect bool `json:"isCollect"`
|
|
|
|
+ CollectId string `json:"collectId"`
|
|
}
|
|
}
|
|
|
|
|
|
func ProductDetail(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
func ProductDetail(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
@@ -164,9 +167,9 @@ func ProductDetail(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
var collect model.Collect
|
|
var collect model.Collect
|
|
found, _ = repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{
|
|
found, _ = repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{
|
|
CollectName: repo.CollectionCollect,
|
|
CollectName: repo.CollectionCollect,
|
|
- Query: repo.Map{"userId": userId},
|
|
|
|
|
|
+ Query: repo.Map{"userId": userId, "productId": id},
|
|
}, &collect)
|
|
}, &collect)
|
|
- return ProudctDetailRes{Product: product, IsCollect: found}, nil
|
|
|
|
|
|
+ return ProudctDetailRes{Product: product, IsCollect: found, CollectId: collect.Id.Hex()}, nil
|
|
}
|
|
}
|
|
|
|
|
|
return product, nil
|
|
return product, nil
|