index.js 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409
  1. // nova-werun/components/home/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. percentage: 0,
  23. //选择
  24. rows: [{
  25. image: 'https://file-cloud.fmode.cn/qpFbRRSZrO/20241225/r5j1uc041211788.png',
  26. text: '签到打卡',
  27. url: '../../pages/home/signin/index'
  28. },
  29. {
  30. image: 'https://file-cloud.fmode.cn/qpFbRRSZrO/20241225/n1pin1040819673.png',
  31. text: '实时步行',
  32. url: '../../pages/home/sport/sport-home/index',
  33. },
  34. {
  35. image: 'https://file-cloud.fmode.cn/qpFbRRSZrO/20241225/9vfr1l040831635.png',
  36. text: '转发分享',
  37. url: '../../pages/home/share/index'
  38. },
  39. {
  40. image: 'https://file-cloud.fmode.cn/qpFbRRSZrO/20241225/it1rna040843179.png',
  41. text: '我的勋章',
  42. url: '../../pages/home/medal/index'
  43. },
  44. {
  45. image: 'https://file-cloud.fmode.cn/qpFbRRSZrO/20241225/r5193r040853498.png',
  46. text: '我的统计',
  47. url: '../../pages/home/statistics/index'
  48. },
  49. // {
  50. // image: 'https://file-cloud.fmode.cn/qpFbRRSZrO/20241102/v6p4fm041343296.png?imageView2/1/w/200/h/200',
  51. // text: '排行榜',
  52. // url: '../../pages/home/ranking/index'
  53. // },
  54. // {
  55. // image: 'https://file-cloud.fmode.cn/qpFbRRSZrO/20241102/71svpg041343669.png?imageView2/1/w/200/h/200',
  56. // text: '跑步',
  57. // url: '../../pages/home/sport/sport-home/index',
  58. // active: 1
  59. // },
  60. // {
  61. // image: 'https://file-cloud.fmode.cn/qpFbRRSZrO/20241104/k1q4no034958681.png?imageView2/1/w/200/h/200',
  62. // text: '积分',
  63. // url: '../../pages/home/integral/index'
  64. // },
  65. ],
  66. target: 0,
  67. sharList: [],
  68. address: "",
  69. //排行榜
  70. todayList: [],
  71. changetitle: 'today',
  72. steps:0,
  73. //正序
  74. rank: 'up'
  75. },
  76. lifetimes: {
  77. detached: function () {
  78. // 在组件实例被从页面节点树移除时执行
  79. },
  80. attached: async function () {
  81. // 在组件实例进入页面节点树时执行
  82. // 计算
  83. const systemInfo = wx.getSystemInfoSync();
  84. const statusBarHeight = systemInfo.statusBarHeight || 0;
  85. const screenHeight = systemInfo.screenHeight || 0;
  86. const custom = wx.getMenuButtonBoundingClientRect();
  87. const customHeight = custom.height + 10 + 2 || 0;
  88. const bottomNavHeight = systemInfo.screenHeight - systemInfo.safeArea.bottom || 0;
  89. const contentpadding = (statusBarHeight + customHeight) * 750 / systemInfo.windowWidth;
  90. const contentHeight = (screenHeight - bottomNavHeight - 50 - statusBarHeight - customHeight) * 750 / systemInfo.windowWidth;
  91. const navheight = (statusBarHeight + customHeight) * 750 / systemInfo.windowWidth;
  92. this.setData({
  93. statusBarHeight,
  94. screenHeight: (screenHeight - 50 - bottomNavHeight) * 750 / systemInfo.windowWidth,
  95. customHeight,
  96. bottomNavHeight,
  97. contentHeight,
  98. contentpadding,
  99. navheight,
  100. });
  101. this.gettarget()
  102. this.order()
  103. this.Getlocation()
  104. this.gettoday()
  105. },
  106. },
  107. /**
  108. * 组件的方法列表
  109. */
  110. methods: {
  111. //跳转
  112. gourl(e) {
  113. const url = e.currentTarget.dataset.url
  114. const active = e.currentTarget.dataset.active
  115. if (active) {
  116. wx.navigateTo({
  117. url: `${url}?id=` + active // 目标页面的路径
  118. });
  119. console.log(active);
  120. } else {
  121. wx.navigateTo({
  122. url: `${url}` // 目标页面的路径
  123. });
  124. }
  125. },
  126. //获取目标步数
  127. async gettarget() {
  128. const currentUser = Parse.User.current();
  129. let userquery = new Parse.Query('_User');
  130. userquery.equalTo('company', company);
  131. userquery.equalTo('objectId', currentUser.id);
  132. userquery.notEqualTo('isDeleted', true)
  133. let user = await userquery.find();
  134. let num = user.map(item => item.toJSON());
  135. if (num[0].num) {
  136. this.setData({
  137. target: num[0].num
  138. })
  139. console.log('当前步数', this.data.target);
  140. } else {
  141. const currentUser2 = Parse.User.current();
  142. let userquery2 = new Parse.Query('_User');
  143. userquery2.equalTo('company', company);
  144. userquery2.equalTo('objectId', currentUser2.id);
  145. userquery2.notEqualTo('isDeleted', true)
  146. let user2 = await userquery2.first();
  147. user2.set('num', 5000)
  148. try {
  149. let saveDate2 = await user2.save();
  150. console.log(saveDate2);
  151. this.setData({
  152. target: 5000
  153. })
  154. console.log("目标步数更改成功");
  155. } catch (error) {
  156. console.error("保存数据时出现错误:", error);
  157. }
  158. }
  159. },
  160. //获取当天运动数据
  161. async order() {
  162. const currentUser = Parse.User.current();
  163. let ActivityDataquery = new Parse.Query('ActivityData');
  164. ActivityDataquery.equalTo('user', currentUser.id);
  165. ActivityDataquery.equalTo('company', company);
  166. ActivityDataquery.notEqualTo('isDeleted', true);
  167. // 获取今天的日期
  168. const today = new Date();
  169. const todayStart = new Date(today.getFullYear(), today.getMonth(), today.getDate()); // 今天的开始时间
  170. const todayEnd = new Date(todayStart);
  171. todayEnd.setHours(23, 59, 59, 999); // 今天的结束时间
  172. // 在查询条件中添加对 createdAt 的限制
  173. ActivityDataquery.greaterThanOrEqualTo('createdAt', todayStart);
  174. ActivityDataquery.lessThanOrEqualTo('createdAt', todayEnd);
  175. ActivityDataquery.include('user');
  176. let r = await ActivityDataquery.find();
  177. let sharList = r.map(item => item.toJSON());
  178. let steps = 0
  179. sharList.forEach((item)=>{
  180. if(item.steps){
  181. steps = steps+item.steps
  182. }
  183. })
  184. this.setData({
  185. steps,
  186. })
  187. this.getBackgroundColor()
  188. console.log('sharList',steps);
  189. },
  190. //获取当前位置信息
  191. Getlocation() {
  192. // 获取当前位置信息
  193. wx.getLocation({
  194. type: 'wgs84',
  195. success: (res) => {
  196. const {
  197. latitude,
  198. longitude
  199. } = res;
  200. //调用api解析地址
  201. wx.request({
  202. url: 'https://api.map.baidu.com/reverse_geocoding/v3/?ak=sHZTomd7grslfP7sPKB8tRgT49FK9TEu&output=json&coordtype=gcj02&location=' + latitude + ',' + longitude,
  203. data: {},
  204. header: {
  205. 'Content-Type': 'application/json'
  206. },
  207. success: (ops) => { // 使用箭头函数
  208. console.log(ops);
  209. // const address = ops.data.result.formatted_address;//详细地址
  210. const address = ops.data.result.addressComponent.city; //市
  211. this.setData({
  212. address: address,
  213. });
  214. console.log(this.data.address);
  215. },
  216. fail: function (resq) {
  217. wx.showModal({
  218. title: '信息提示',
  219. content: '请求失败',
  220. showCancel: false,
  221. confirmColor: '#f37938'
  222. });
  223. },
  224. complete: function () {}
  225. })
  226. },
  227. fail: (err) => {
  228. console.error(err);
  229. wx.showToast({
  230. title: '获取位置失败',
  231. icon: 'none'
  232. });
  233. }
  234. });
  235. },
  236. // 判断日期是否是今天
  237. isToday(item) {
  238. const today = new Date();
  239. const date = new Date(item.timestamp * 1000); // 假设时间戳是以秒为单位
  240. // 比较年、月、日
  241. return date.getFullYear() === today.getFullYear() &&
  242. date.getMonth() === today.getMonth() &&
  243. date.getDate() === today.getDate();
  244. },
  245. //切换
  246. change() {
  247. // 使用数组来简化切换逻辑
  248. const titles = ['today', 'weekdday', 'month'];
  249. const currentIndex = titles.indexOf(this.data.changetitle); //获取index
  250. const nextIndex = (currentIndex + 1) % titles.length; // 循环切换
  251. this.setData({
  252. changetitle: titles[nextIndex]
  253. });
  254. if (this.data.changetitle == 'today') {
  255. this.setData({
  256. rank: 'up'
  257. })
  258. this.gettoday()
  259. }
  260. if (this.data.changetitle == 'weekdday') {
  261. this.setData({
  262. rank: 'up'
  263. })
  264. console.log('weekdday');
  265. }
  266. if (this.data.changetitle == 'month') {
  267. this.setData({
  268. rank: 'up'
  269. })
  270. console.log('month');
  271. }
  272. },
  273. // 获取本日排行
  274. async gettoday() {
  275. const currentUser = Parse.User.current();
  276. let ActivityDataquery = new Parse.Query('ActivityData');
  277. ActivityDataquery.equalTo('company', company);
  278. ActivityDataquery.notEqualTo('isDeleted', true);
  279. // 获取今天的日期
  280. const today = new Date();
  281. const todayStart = new Date(today.getFullYear(), today.getMonth(), today.getDate()); // 今天的开始时间
  282. const todayEnd = new Date(todayStart);
  283. todayEnd.setHours(23, 59, 59, 999); // 今天的结束时间
  284. console.log(todayStart, todayEnd);
  285. // 在查询条件中添加对 createdAt 的限制
  286. ActivityDataquery.greaterThanOrEqualTo('createdAt', todayStart);
  287. ActivityDataquery.lessThanOrEqualTo('createdAt', todayEnd);
  288. // 根据 steps 字段进行降序排序
  289. ActivityDataquery.include('user');
  290. try {
  291. let P = await ActivityDataquery.find();
  292. let todayList = P.map(item => item.toJSON());
  293. // 创建一个对象来存储用户的总步数
  294. const userStepsMap = {};
  295. // 遍历数据,累加相同用户的步数
  296. todayList.forEach(item => {
  297. const userId = item.user.objectId;
  298. const steps = item.steps;
  299. if (steps) {
  300. if (!userStepsMap[userId]) {
  301. userStepsMap[userId] = {
  302. ...item.user, // 包含用户信息
  303. totalSteps: 0 // 初始化总步数
  304. };
  305. }
  306. userStepsMap[userId].totalSteps += steps; // 累加步数
  307. }
  308. });
  309. // 将对象转换为数组
  310. const aggregatedList = Object.values(userStepsMap);
  311. // 按总步数降序排序
  312. aggregatedList.sort((a, b) => b.totalSteps - a.totalSteps);
  313. // 添加排名
  314. let currentRank = 1; // 当前排名
  315. for (let i = 0; i < aggregatedList.length; i++) {
  316. if (i > 0 && aggregatedList[i].totalSteps === aggregatedList[i - 1].totalSteps) {
  317. // 如果步数相同,排名相同
  318. aggregatedList[i].rank = aggregatedList[i - 1].rank;
  319. } else {
  320. // 否则,更新当前排名
  321. aggregatedList[i].rank = currentRank;
  322. }
  323. currentRank++;
  324. }
  325. // 更新页面数据
  326. this.setData({
  327. todayList: aggregatedList,
  328. });
  329. console.log(this.data.todayList);
  330. } catch (error) {
  331. console.error('Error fetching today\'s data:', error);
  332. }
  333. },
  334. //正序逆序
  335. changeup() {
  336. if (this.data.rank == 'up') {
  337. this.setData({
  338. rank: 'down'
  339. })
  340. if (this.data.changetitle == 'today') {
  341. this.setData({
  342. todayList: this.data.todayList.reverse(),
  343. })
  344. console.log('逆序');
  345. }
  346. if (this.data.changetitle == 'weekdday') {
  347. console.log('weekdday逆序');
  348. }
  349. if (this.data.changetitle == 'month') {
  350. console.log('month逆序');
  351. }
  352. } else {
  353. this.setData({
  354. rank: 'up'
  355. })
  356. if (this.data.changetitle == 'today') {
  357. this.setData({
  358. todayList: this.data.todayList.reverse(),
  359. })
  360. console.log('顺序');
  361. }
  362. if (this.data.changetitle == 'weekdday') {
  363. console.log('weekdday顺序');
  364. }
  365. if (this.data.changetitle == 'month') {
  366. console.log('month顺序');
  367. }
  368. }
  369. },
  370. //修改进度条
  371. getBackgroundColor() {
  372. let percentage = (this.data.steps / this.data.target) * 100;
  373. if (percentage > 100) {
  374. percentage = 100;
  375. }
  376. this.setData({
  377. percentage: `conic-gradient(from 0deg, #015EEA ${percentage}%, white 0%)`,
  378. })
  379. console.log('百分比', this.data.percentage);
  380. },
  381. }
  382. })