index.js 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. // nova-werun/components/circle/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, //nav栏高度
  22. //朋友圈
  23. cardList: [],
  24. loadedItems: 0, // 已加载的商品数量
  25. pageSize: 6, // 每次加载的商品数量
  26. noMoreItems: false, // 是否还有更多商品
  27. ActivityList:[],
  28. },
  29. lifetimes: {
  30. detached: function () {
  31. // 在组件实例被从页面节点树移除时执行
  32. },
  33. attached: async function () {
  34. // 在组件实例进入页面节点树时执行
  35. // 计算
  36. const systemInfo = wx.getSystemInfoSync();
  37. const statusBarHeight = systemInfo.statusBarHeight || 0;
  38. const screenHeight = systemInfo.screenHeight || 0;
  39. const custom = wx.getMenuButtonBoundingClientRect();
  40. const customHeight = custom.height + 10 + 2 || 0;
  41. const bottomNavHeight = systemInfo.screenHeight - systemInfo.safeArea.bottom || 0;
  42. const contentHeight = (screenHeight - 50 - bottomNavHeight - statusBarHeight - customHeight) * 750 / systemInfo.windowWidth;
  43. const navheight = (statusBarHeight + customHeight) * 750 / systemInfo.windowWidth;
  44. this.setData({
  45. statusBarHeight,
  46. screenHeight: (screenHeight - 50 - bottomNavHeight) * 750 / systemInfo.windowWidth,
  47. customHeight,
  48. bottomNavHeight,
  49. contentHeight,
  50. navheight
  51. });
  52. // console.log('123', contentHeight);
  53. // this.iddepe()
  54. this.getcircle()
  55. this.getact()
  56. },
  57. },
  58. /**
  59. * 组件的方法列表
  60. */
  61. methods: {
  62. //查全部朋友圈
  63. async getcircle() {
  64. // const currentUser = Parse.User.current();
  65. // let Profilequery2 = new Parse.Query('Profile');
  66. // Profilequery2.equalTo('company', company);
  67. // Profilequery2.equalTo('user', currentUser.id);
  68. // Profilequery2.equalTo('isCheck', true);
  69. // Profilequery2.notEqualTo('isDeleted', true)
  70. // let P2 = await Profilequery2.find();
  71. // let profile1List2 = P2.map(item => item.toJSON());
  72. // // console.log(profile1List2);
  73. // const department = profile1List2[0].department.objectId
  74. // // console.log(department);
  75. // let queryWhere = {
  76. // where: {
  77. // profile: {
  78. // $inQuery: {
  79. // where: {
  80. // department: department
  81. // },
  82. // className: 'Profile',
  83. // },
  84. // }
  85. // }
  86. // }
  87. // let Profilequery = Parse.Query.fromJSON('AIMoment', queryWhere);
  88. let Profilequery = new Parse.Query('AIMoment');
  89. Profilequery.equalTo('company', company);
  90. Profilequery.equalTo('isVisible', true);
  91. Profilequery.notEqualTo('isDeleted', true)
  92. Profilequery.descending('createdAt');
  93. // 设置查询的限制和偏移
  94. Profilequery.limit(this.data.pageSize);
  95. Profilequery.skip(this.data.loadedItems);
  96. let P = await Profilequery.find();
  97. let profile1List = P.map(item => item.toJSON());
  98. // 检查是否还有更多商品
  99. if (profile1List.length < this.data.pageSize) {
  100. this.setData({
  101. noMoreItems: true
  102. });
  103. } else {
  104. this.setData({
  105. noMoreItems: false
  106. });
  107. }
  108. this.setData({
  109. cardList: this.data.cardList.concat(profile1List),
  110. loadedItems: this.data.loadedItems + profile1List.length,
  111. })
  112. console.log(this.data.cardList);
  113. },
  114. loadMoreData: async function () {
  115. // 触底时加载更多数据
  116. if (!this.data.noMoreItems) {
  117. await this.getcircle();
  118. }
  119. },
  120. getcircle2() {
  121. this.setData({
  122. cardList: [],
  123. loadedItems: 0,
  124. noMoreItems: false
  125. })
  126. console.log('运行了');
  127. this.getcircle()
  128. },
  129. //跳转
  130. gourl(e) {
  131. const url = e.currentTarget.dataset.url
  132. wx.navigateTo({
  133. url: `${url}` // 目标页面的路径
  134. });
  135. },
  136. //跳转活动
  137. goactivity(e){
  138. const url = e.currentTarget.dataset.url
  139. const acid = e.currentTarget.dataset.acid
  140. wx.navigateTo({
  141. url: `${url}?id=` + acid // 目标页面的路径
  142. });
  143. },
  144. //判断是否有部门
  145. // async iddepe(){
  146. // const currentUser = Parse.User.current();
  147. // let Profilequery2 = new Parse.Query('Profile');
  148. // Profilequery2.equalTo('company', company);
  149. // Profilequery2.equalTo('user', currentUser.id);
  150. // Profilequery2.equalTo('isCheck', true);
  151. // Profilequery2.notEqualTo('isDeleted', true)
  152. // let P2 = await Profilequery2.first();
  153. // if(P2){
  154. // this.getcircle()
  155. // }else{
  156. // wx.navigateTo({
  157. // url: '../../pages/my/my-profile/index?type='+'资料认证'// 目标页面的路径
  158. // });
  159. // }
  160. // }
  161. //首页活动
  162. async getact() {
  163. let Activityquery = new Parse.Query('Activity');
  164. Activityquery.equalTo('company', company);
  165. Activityquery.notEqualTo('isDeleted', true);
  166. Activityquery.equalTo('isEnabled', true);
  167. Activityquery.ascending('index'); // 按index升序排序
  168. Activityquery.limit(4); // 限制结果为前四个
  169. let P = await Activityquery.find();
  170. let ActivityList = P.map(item => item.toJSON());
  171. this.setData({
  172. ActivityList,
  173. });
  174. },
  175. }
  176. })