|
@@ -20,12 +20,12 @@ Component({
|
|
|
bottomNavHeight: 0, // 底部导航栏高度
|
|
|
contentHeight: 0, // 可用内容高度
|
|
|
contentpadding: 0, //顶部padding高度
|
|
|
- navheight:0,
|
|
|
+ navheight: 0,
|
|
|
|
|
|
circlecount: 0,
|
|
|
- likesCount:0,
|
|
|
- User1List:[],
|
|
|
- profile1List2:[]
|
|
|
+ likesCount: 0,
|
|
|
+ User1List: [],
|
|
|
+ profile1List2: []
|
|
|
},
|
|
|
lifetimes: {
|
|
|
|
|
@@ -44,10 +44,10 @@ Component({
|
|
|
|
|
|
const contentpadding = (statusBarHeight + customHeight) * 750 / systemInfo.windowWidth;
|
|
|
const contentHeight = (screenHeight - bottomNavHeight - 50 - statusBarHeight - customHeight) * 750 / systemInfo.windowWidth;
|
|
|
- const navheight = (statusBarHeight+customHeight) * 750 / systemInfo.windowWidth;
|
|
|
+ const navheight = (statusBarHeight + customHeight) * 750 / systemInfo.windowWidth;
|
|
|
this.setData({
|
|
|
statusBarHeight,
|
|
|
- screenHeight:(screenHeight-50-bottomNavHeight) * 750 / systemInfo.windowWidth,
|
|
|
+ screenHeight: (screenHeight - 50 - bottomNavHeight) * 750 / systemInfo.windowWidth,
|
|
|
customHeight,
|
|
|
bottomNavHeight,
|
|
|
contentHeight,
|
|
@@ -70,10 +70,10 @@ Component({
|
|
|
});
|
|
|
},
|
|
|
gourl2(e) {
|
|
|
- const type = e.currentTarget.dataset.type
|
|
|
+ const type = e.currentTarget.dataset.type
|
|
|
const url = e.currentTarget.dataset.url
|
|
|
wx.navigateTo({
|
|
|
- url: `${url}?type=`+type // 目标页面的路径
|
|
|
+ url: `${url}?type=` + type // 目标页面的路径
|
|
|
});
|
|
|
},
|
|
|
//查全部朋友圈
|
|
@@ -117,47 +117,50 @@ Component({
|
|
|
this.setData({
|
|
|
profile1List2,
|
|
|
})
|
|
|
- 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
|
|
|
- });
|
|
|
-
|
|
|
- // 获取所有动态的ID
|
|
|
- let momentIds = moments.map(moment => moment.id);
|
|
|
-
|
|
|
- // 创建对 AIMomentLike 表的查询
|
|
|
- let LikeQuery = new Parse.Query('AIMomentLike');
|
|
|
- LikeQuery.equalTo('isLiked', true);
|
|
|
- LikeQuery.equalTo('company', company);
|
|
|
- LikeQuery.notEqualTo('isDeleted', true);
|
|
|
- LikeQuery.containedIn('moment', momentIds); // 使用 containedIn 来一次性查询多个动态的点赞
|
|
|
-
|
|
|
- // 统计点赞数量
|
|
|
- let likesCount = await LikeQuery.count();
|
|
|
-
|
|
|
- // 这里可以进一步处理 likesCount,按动态分配点赞数量
|
|
|
- console.log(`总点赞数量: ${likesCount}`);
|
|
|
- this.setData({
|
|
|
- likesCount,
|
|
|
- })
|
|
|
+ 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
|
|
|
+ });
|
|
|
+
|
|
|
+ // 获取所有动态的ID
|
|
|
+ let momentIds = moments.map(moment => moment.id);
|
|
|
+
|
|
|
+ // 创建对 AIMomentLike 表的查询
|
|
|
+ let LikeQuery = new Parse.Query('AIMomentLike');
|
|
|
+ LikeQuery.equalTo('isLiked', true);
|
|
|
+ LikeQuery.equalTo('company', company);
|
|
|
+ LikeQuery.notEqualTo('isDeleted', true);
|
|
|
+ LikeQuery.containedIn('moment', momentIds); // 使用 containedIn 来一次性查询多个动态的点赞
|
|
|
+
|
|
|
+ // 统计点赞数量
|
|
|
+ let likesCount = await LikeQuery.count();
|
|
|
+
|
|
|
+ // 这里可以进一步处理 likesCount,按动态分配点赞数量
|
|
|
+ console.log(`总点赞数量: ${likesCount}`);
|
|
|
+ this.setData({
|
|
|
+ likesCount,
|
|
|
+ })
|
|
|
+ }
|
|
|
}
|
|
|
+
|
|
|
},
|
|
|
//查看积分
|
|
|
- async getpoint(){
|
|
|
+ async getpoint() {
|
|
|
|
|
|
},
|
|
|
//获取头像名称
|
|
|
- async getname(){
|
|
|
+ async getname() {
|
|
|
const currentUser = Parse.User.current();
|
|
|
let Userquery = new Parse.Query('_User');
|
|
|
Userquery.equalTo('company', company);
|
|
@@ -173,7 +176,7 @@ Component({
|
|
|
gourl(e) {
|
|
|
const url = e.currentTarget.dataset.url
|
|
|
wx.navigateTo({
|
|
|
- url: `${url}`// 目标页面的路径
|
|
|
+ url: `${url}` // 目标页面的路径
|
|
|
});
|
|
|
},
|
|
|
}
|