|
@@ -160,14 +160,13 @@ func ProductDetail(c *gin.Context, apictx *ApiSession) (interface{}, error) {
|
|
|
asset := model.Asset360Fake3d{}
|
|
|
repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{
|
|
|
CollectName: repo.CollectionAssets,
|
|
|
- Query: repo.Map{"assetId": product.AssetId},
|
|
|
+ Query: repo.Map{"_id": product.AssetId},
|
|
|
}, &asset)
|
|
|
|
|
|
// 用户登录状态 是否收藏
|
|
|
if apictx.User != nil {
|
|
|
_userId := apictx.User.ID
|
|
|
userId, _ := primitive.ObjectIDFromHex(_userId)
|
|
|
-
|
|
|
var collect model.Collect
|
|
|
found, _ = repo.RepoSeachDoc(apictx.CreateRepoCtx(), &repo.DocSearchOptions{
|
|
|
CollectName: repo.CollectionCollect,
|