index.js 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  1. // nova-werun/pages/home/signin/index.js
  2. const Parse = getApp().Parse;
  3. const company = getApp().globalData.company;
  4. const uid = Parse.User.current()?.id
  5. const getSportData = require('../../../service/getSportData')
  6. const {
  7. getConsecutiveSignIns
  8. } = require("../../../service/day")
  9. Page({
  10. /**
  11. * 页面的初始数据
  12. */
  13. data: {
  14. //屏幕高度
  15. statusBarHeight: 0, // 状态栏高度
  16. screenHeight: 0, // 屏幕高度
  17. customHeight: 0, // 自定义导航栏高度(如小程序右上角胶囊按钮)
  18. bottomNavHeight: 0, // 底部导航栏高度
  19. contentHeight: 0, // 可用内容高度
  20. contentHeight2: 0,
  21. contentpadding: 0, //顶部padding高度
  22. //是否打卡
  23. issigin: false,
  24. images: [
  25. // 'https://file-cloud.fmode.cn/qpFbRRSZrO/20250113/1p97lf053250915.png',
  26. // 'https://file-cloud.fmode.cn/qpFbRRSZrO/20250113/bt19fm050427168.png',
  27. 'https://file-cloud.fmode.cn/qpFbRRSZrO/20250113/191d1m053251615.png'
  28. ],
  29. randomImage: '',
  30. accumulateChink: 0,
  31. continuousChink: 0
  32. },
  33. /**
  34. * 生命周期函数--监听页面加载
  35. */
  36. onLoad: function (options) {
  37. // 计算
  38. const systemInfo = wx.getSystemInfoSync();
  39. const statusBarHeight = systemInfo.statusBarHeight || 0;
  40. const screenHeight = systemInfo.screenHeight || 0;
  41. const custom = wx.getMenuButtonBoundingClientRect();
  42. const customHeight = custom.height + 10 + 2 || 0;
  43. const bottomNavHeight = systemInfo.screenHeight - systemInfo.safeArea.bottom || 0;
  44. const contentpadding = (statusBarHeight + customHeight) * 750 / systemInfo.windowWidth;
  45. const contentHeight = (screenHeight - bottomNavHeight - statusBarHeight - customHeight) * 750 / systemInfo.windowWidth;
  46. this.setData({
  47. statusBarHeight,
  48. screenHeight,
  49. customHeight,
  50. bottomNavHeight,
  51. contentpadding,
  52. contentHeight
  53. });
  54. this.showRandomImage()
  55. this.order()
  56. this.accumulateChink()
  57. this.continuousChink()
  58. },
  59. /**连续打卡 */
  60. async continuousChink() {
  61. console.log(uid)
  62. let d = await getSportData.getContinuousCount(uid, 'EventLog')
  63. this.setData({
  64. continuousChink: d||0
  65. })
  66. },
  67. /** 积累打卡*/
  68. async accumulateChink() {
  69. const currentUser = Parse.User.current();
  70. let EventLogquery = new Parse.Query('EventLog');
  71. EventLogquery.equalTo('user', currentUser.id);
  72. EventLogquery.equalTo('company', company);
  73. EventLogquery.notEqualTo('isDeleted', true)
  74. let count = await EventLogquery.count();
  75. this.setData({
  76. accumulateChink: count || 0
  77. })
  78. },
  79. /** 随机展示图片*/
  80. showRandomImage: function () {
  81. const randomIndex = Math.floor(Math.random() * this.data.images.length);
  82. this.setData({
  83. randomImage: this.data.images[randomIndex]
  84. });
  85. },
  86. /**检查当天是否签到 */
  87. async order() {
  88. const currentUser = Parse.User.current();
  89. let EventLogquery = new Parse.Query('EventLog');
  90. EventLogquery.equalTo('user', currentUser.id);
  91. EventLogquery.equalTo('company', company);
  92. EventLogquery.notEqualTo('isDeleted', true)
  93. // 获取今天的日期
  94. const today = new Date();
  95. const todayStart = new Date(today.getFullYear(), today.getMonth(), today.getDate()); // 今天的开始时间
  96. const todayEnd = new Date(todayStart);
  97. todayEnd.setHours(23, 59, 59, 999); // 今天的结束时间
  98. // 在查询条件中添加对 createdAt 的限制
  99. EventLogquery.greaterThanOrEqualTo('createdAt', todayStart);
  100. EventLogquery.lessThanOrEqualTo('createdAt', todayEnd);
  101. let P = await EventLogquery.first();
  102. if (P) {
  103. this.setData({
  104. issigin: true
  105. })
  106. return;
  107. }
  108. },
  109. /**打卡 */
  110. async submit() {
  111. const currentUser = Parse.User.current();
  112. let EventLogquery = new Parse.Query('EventLog');
  113. EventLogquery.equalTo('user', currentUser.id);
  114. EventLogquery.equalTo('company', company);
  115. EventLogquery.notEqualTo('isDeleted', true)
  116. // 获取今天的日期
  117. const today = new Date();
  118. const todayStart = new Date(today.getFullYear(), today.getMonth(), today.getDate()); // 今天的开始时间
  119. const todayEnd = new Date(todayStart);
  120. todayEnd.setHours(23, 59, 59, 999); // 今天的结束时间
  121. // 在查询条件中添加对 createdAt 的限制
  122. EventLogquery.greaterThanOrEqualTo('createdAt', todayStart);
  123. EventLogquery.lessThanOrEqualTo('createdAt', todayEnd);
  124. let P = await EventLogquery.first();
  125. if (P) {
  126. this.setData({
  127. issigin: true
  128. })
  129. console.log('今日已打卡');
  130. return;
  131. } else {
  132. const currentUser = Parse.User.current();
  133. let userquery = new Parse.Query('_User');
  134. userquery.equalTo('company', company);
  135. userquery.equalTo('objectId', currentUser.id);
  136. userquery.notEqualTo('isDeleted', true)
  137. let user = await userquery.first();
  138. let companyPointer = Parse.Object.extend('Company').createWithoutData(company);
  139. let EventLog = new Parse.Object('EventLog');
  140. EventLog.set('points', 10)
  141. EventLog.set('company', companyPointer);
  142. EventLog.set('user', user.toPointer());
  143. try {
  144. let saveDate = await EventLog.save();
  145. console.log(saveDate);
  146. this.accumulateChink()
  147. this.setData({
  148. issigin: true
  149. })
  150. console.log("打卡成功");
  151. this.accumulateChink()
  152. this.continuousChink()
  153. } catch (error) {
  154. console.error("保存数据时出现错误:", error);
  155. }
  156. }
  157. },
  158. /**
  159. * 生命周期函数--监听页面初次渲染完成
  160. */
  161. onReady: function () {
  162. },
  163. /**
  164. * 生命周期函数--监听页面显示
  165. */
  166. onShow: function () {
  167. },
  168. /**
  169. * 生命周期函数--监听页面隐藏
  170. */
  171. onHide: function () {
  172. },
  173. /**
  174. * 生命周期函数--监听页面卸载
  175. */
  176. onUnload: function () {
  177. },
  178. /**
  179. * 页面相关事件处理函数--监听用户下拉动作
  180. */
  181. onPullDownRefresh: function () {
  182. },
  183. /**
  184. * 页面上拉触底事件的处理函数
  185. */
  186. onReachBottom: function () {
  187. },
  188. /**
  189. * 用户点击右上角分享
  190. */
  191. onShareAppMessage: function () {
  192. },
  193. })