index.js 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. // nova-werun/components/my/index.js
  2. const Parse = getApp().Parse;
  3. const company = getApp().globalData.company;
  4. Component({
  5. /**
  6. * 组件的属性列表
  7. */
  8. properties: {
  9. },
  10. /**
  11. * 组件的初始数据
  12. */
  13. data: {
  14. //屏幕高度
  15. statusBarHeight: 0, // 状态栏高度
  16. screenHeight: 0, // 屏幕高度
  17. customHeight: 0, // 自定义导航栏高度(如小程序右上角胶囊按钮)
  18. bottomNavHeight: 0, // 底部导航栏高度
  19. contentHeight: 0, // 可用内容高度
  20. contentpadding: 0, //顶部padding高度
  21. navheight: 0,
  22. circlecount: 0,
  23. likesCount: 0,
  24. User1List: [],
  25. profile1List2: []
  26. },
  27. lifetimes: {
  28. detached: function () {
  29. // 在组件实例被从页面节点树移除时执行
  30. },
  31. attached: async function () {
  32. // 在组件实例进入页面节点树时执行
  33. // 计算
  34. const systemInfo = wx.getSystemInfoSync();
  35. const statusBarHeight = systemInfo.statusBarHeight || 0;
  36. const screenHeight = systemInfo.screenHeight || 0;
  37. const custom = wx.getMenuButtonBoundingClientRect();
  38. const customHeight = custom.height + 10 + 2 || 0;
  39. const bottomNavHeight = systemInfo.screenHeight - systemInfo.safeArea.bottom || 0;
  40. const contentpadding = (statusBarHeight + customHeight) * 750 / systemInfo.windowWidth;
  41. const contentHeight = (screenHeight - bottomNavHeight - 50 - statusBarHeight - customHeight) * 750 / systemInfo.windowWidth;
  42. const navheight = (statusBarHeight + customHeight) * 750 / systemInfo.windowWidth;
  43. this.setData({
  44. statusBarHeight,
  45. screenHeight: (screenHeight - 50 - bottomNavHeight) * 750 / systemInfo.windowWidth,
  46. customHeight,
  47. bottomNavHeight,
  48. contentHeight,
  49. contentpadding,
  50. navheight
  51. });
  52. this.getcircle()
  53. this.getname()
  54. },
  55. },
  56. /**
  57. * 组件的方法列表
  58. */
  59. methods: {
  60. gourl(e) {
  61. const url = e.currentTarget.dataset.url
  62. wx.navigateTo({
  63. url: `${url}` // 目标页面的路径
  64. });
  65. },
  66. gourl2(e) {
  67. const type = e.currentTarget.dataset.type
  68. const url = e.currentTarget.dataset.url
  69. wx.navigateTo({
  70. url: `${url}?type=` + type // 目标页面的路径
  71. });
  72. },
  73. //查全部朋友圈
  74. // async getcircle() {
  75. // const currentUser = Parse.User.current();
  76. // let Profilequery2 = new Parse.Query('Profile');
  77. // Profilequery2.equalTo('company', company);
  78. // Profilequery2.equalTo('user', currentUser.id);
  79. // Profilequery2.equalTo('isCheck', true);
  80. // Profilequery2.notEqualTo('isDeleted', true)
  81. // let P2 = await Profilequery2.find();
  82. // let profile1List2 = P2.map(item => item.toJSON());
  83. // let Profilequery = new Parse.Query('AIMoment');
  84. // Profilequery.equalTo('company', company);
  85. // Profilequery.equalTo('isVisible', true);
  86. // Profilequery.notEqualTo('isDeleted', true)
  87. // Profilequery.equalTo('profile', profile1List2[0].objectId);
  88. // Profilequery.descending('createdAt');
  89. // let count = await Profilequery.count();
  90. // if (count) {
  91. // this.setData({
  92. // circlecount: count
  93. // })
  94. // }
  95. // },
  96. async getcircle() {
  97. const currentUser = Parse.User.current();
  98. let Profilequery2 = new Parse.Query('Profile');
  99. Profilequery2.equalTo('company', company);
  100. Profilequery2.equalTo('user', currentUser.id);
  101. Profilequery2.equalTo('isCheck', true);
  102. Profilequery2.notEqualTo('isDeleted', true);
  103. Profilequery2.include('user');
  104. Profilequery2.include('center');
  105. Profilequery2.include('department');
  106. let P2 = await Profilequery2.find();
  107. let profile1List2 = P2.map(item => item.toJSON());
  108. this.setData({
  109. profile1List2,
  110. })
  111. console.log('信息', this.data.profile1List2);
  112. let Profilequery = new Parse.Query('AIMoment');
  113. Profilequery.equalTo('company', company);
  114. Profilequery.equalTo('isVisible', true);
  115. Profilequery.notEqualTo('isDeleted', true);
  116. // Profilequery.equalTo('profile', profile1List2[0].objectId);
  117. Profilequery.equalTo('user', currentUser.id);
  118. Profilequery.descending('createdAt');
  119. let moments = await Profilequery.find(); // 查找所有动态
  120. if (moments.length) {
  121. this.setData({
  122. circlecount: moments.length
  123. });
  124. // 获取所有动态的ID
  125. let momentIds = moments.map(moment => moment.id);
  126. // 创建对 AIMomentLike 表的查询
  127. let LikeQuery = new Parse.Query('AIMomentLike');
  128. LikeQuery.equalTo('isLiked', true);
  129. LikeQuery.equalTo('company', company);
  130. LikeQuery.notEqualTo('isDeleted', true);
  131. LikeQuery.containedIn('moment', momentIds); // 使用 containedIn 来一次性查询多个动态的点赞
  132. // 统计点赞数量
  133. let likesCount = await LikeQuery.count();
  134. // 这里可以进一步处理 likesCount,按动态分配点赞数量
  135. console.log(`总点赞数量: ${likesCount}`);
  136. this.setData({
  137. likesCount,
  138. })
  139. }
  140. },
  141. //查看积分
  142. async getpoint() {
  143. },
  144. //获取头像名称
  145. async getname() {
  146. const currentUser = Parse.User.current();
  147. let Userquery = new Parse.Query('_User');
  148. Userquery.equalTo('company', company);
  149. Userquery.equalTo('objectId', currentUser.id);
  150. Userquery.notEqualTo('isDeleted', true)
  151. let P2 = await Userquery.find();
  152. let User1List = P2.map(item => item.toJSON());
  153. this.setData({
  154. User1List
  155. })
  156. console.log(this.data.User1List);
  157. },
  158. gourl(e) {
  159. const url = e.currentTarget.dataset.url
  160. wx.navigateTo({
  161. url: `${url}` // 目标页面的路径
  162. });
  163. },
  164. }
  165. })