|
@@ -117,41 +117,41 @@ Component({
|
|
|
this.setData({
|
|
|
profile1List2,
|
|
|
})
|
|
|
- if (profile1List2.length != 0) {
|
|
|
- console.log('信息', this.data.profile1List2);
|
|
|
- let Profilequery = new Parse.Query('AIMoment');
|
|
|
- Profilequery.equalTo('company', company);
|
|
|
- Profilequery.equalTo('isVisible', true);
|
|
|
- Profilequery.notEqualTo('isDeleted', true);
|
|
|
- Profilequery.equalTo('profile', profile1List2[0].objectId);
|
|
|
- Profilequery.descending('createdAt');
|
|
|
-
|
|
|
- let moments = await Profilequery.find();
|
|
|
-
|
|
|
- if (moments.length) {
|
|
|
- this.setData({
|
|
|
- circlecount: moments.length
|
|
|
- });
|
|
|
-
|
|
|
-
|
|
|
- let momentIds = moments.map(moment => moment.id);
|
|
|
-
|
|
|
-
|
|
|
- let LikeQuery = new Parse.Query('AIMomentLike');
|
|
|
- LikeQuery.equalTo('isLiked', true);
|
|
|
- LikeQuery.equalTo('company', company);
|
|
|
- LikeQuery.notEqualTo('isDeleted', true);
|
|
|
- LikeQuery.containedIn('moment', momentIds);
|
|
|
-
|
|
|
-
|
|
|
- let likesCount = await LikeQuery.count();
|
|
|
-
|
|
|
-
|
|
|
- console.log(`总点赞数量: ${likesCount}`);
|
|
|
- this.setData({
|
|
|
- likesCount,
|
|
|
- })
|
|
|
- }
|
|
|
+
|
|
|
+ console.log('信息', this.data.profile1List2);
|
|
|
+ let Profilequery = new Parse.Query('AIMoment');
|
|
|
+ Profilequery.equalTo('company', company);
|
|
|
+ Profilequery.equalTo('isVisible', true);
|
|
|
+ Profilequery.notEqualTo('isDeleted', true);
|
|
|
+
|
|
|
+ Profilequery.equalTo('user', currentUser.id);
|
|
|
+ Profilequery.descending('createdAt');
|
|
|
+
|
|
|
+ let moments = await Profilequery.find();
|
|
|
+
|
|
|
+ if (moments.length) {
|
|
|
+ this.setData({
|
|
|
+ circlecount: moments.length
|
|
|
+ });
|
|
|
+
|
|
|
+
|
|
|
+ let momentIds = moments.map(moment => moment.id);
|
|
|
+
|
|
|
+
|
|
|
+ let LikeQuery = new Parse.Query('AIMomentLike');
|
|
|
+ LikeQuery.equalTo('isLiked', true);
|
|
|
+ LikeQuery.equalTo('company', company);
|
|
|
+ LikeQuery.notEqualTo('isDeleted', true);
|
|
|
+ LikeQuery.containedIn('moment', momentIds);
|
|
|
+
|
|
|
+
|
|
|
+ let likesCount = await LikeQuery.count();
|
|
|
+
|
|
|
+
|
|
|
+ console.log(`总点赞数量: ${likesCount}`);
|
|
|
+ this.setData({
|
|
|
+ likesCount,
|
|
|
+ })
|
|
|
}
|
|
|
|
|
|
},
|