index.js 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326
  1. // nova-werun/components/home/index.js
  2. const Parse = getApp().Parse;
  3. const company = getApp().globalData.company;
  4. let getSportData = require('../../service/getSportData')
  5. const uid = Parse.User.current()?.id
  6. Component({
  7. /**
  8. * 组件的属性列表
  9. */
  10. properties: {
  11. },
  12. /**
  13. * 组件的初始数据
  14. */
  15. data: {
  16. //屏幕高度
  17. statusBarHeight: 0, // 状态栏高度
  18. screenHeight: 0, // 屏幕高度
  19. customHeight: 0, // 自定义导航栏高度(如小程序右上角胶囊按钮)
  20. bottomNavHeight: 0, // 底部导航栏高度
  21. contentHeight: 0, // 可用内容高度
  22. contentpadding: 0, //顶部padding高度
  23. navheight: 0,
  24. percentage: 0,
  25. //选择
  26. rows: [{
  27. image: 'https://file-cloud.fmode.cn/qpFbRRSZrO/20241225/r5j1uc041211788.png',
  28. text: '签到打卡',
  29. url: '../../pages/home/signin/index'
  30. },
  31. {
  32. image: 'https://file-cloud.fmode.cn/qpFbRRSZrO/20241225/n1pin1040819673.png',
  33. text: '实时步行',
  34. url: '../../pages/home/sport/sport-home/index',
  35. },
  36. {
  37. image: 'https://file-cloud.fmode.cn/qpFbRRSZrO/20241225/9vfr1l040831635.png',
  38. text: '转发分享',
  39. url: '../../pages/home/share/index'
  40. },
  41. {
  42. image: 'https://file-cloud.fmode.cn/qpFbRRSZrO/20241225/it1rna040843179.png',
  43. text: '我的勋章',
  44. url: '../../pages/home/medal/index'
  45. },
  46. {
  47. image: 'https://file-cloud.fmode.cn/qpFbRRSZrO/20241225/r5193r040853498.png',
  48. text: '我的统计',
  49. url: '../../pages/home/statistics/index'
  50. },
  51. // {
  52. // image: 'https://file-cloud.fmode.cn/qpFbRRSZrO/20241102/v6p4fm041343296.png?imageView2/1/w/200/h/200',
  53. // text: '排行榜',
  54. // url: '../../pages/home/ranking/index'
  55. // },
  56. // {
  57. // image: 'https://file-cloud.fmode.cn/qpFbRRSZrO/20241102/71svpg041343669.png?imageView2/1/w/200/h/200',
  58. // text: '跑步',
  59. // url: '../../pages/home/sport/sport-home/index',
  60. // active: 1
  61. // },
  62. // {
  63. // image: 'https://file-cloud.fmode.cn/qpFbRRSZrO/20241104/k1q4no034958681.png?imageView2/1/w/200/h/200',
  64. // text: '积分',
  65. // url: '../../pages/home/integral/index'
  66. // },
  67. ],
  68. target: 0,
  69. sharList: [],
  70. address: "",
  71. //排行榜
  72. todayList: [],
  73. changetitle: 0,
  74. changetitleMap: {
  75. 0: '历史',
  76. 'today': '本日',
  77. 'toweek': '本周',
  78. 'tomonth': '本月',
  79. },
  80. steps: 0,
  81. //正序
  82. rank: 'DESC',
  83. meContinuousChick: 0, //当前用户连续打卡数
  84. sportTotal: 0, //当前用户累计运动
  85. notice: '', //公告
  86. },
  87. lifetimes: {
  88. detached: function () {
  89. // 在组件实例被从页面节点树移除时执行
  90. },
  91. attached: async function () {
  92. // getSportData.setEndSport("NwzxcVxCV1")
  93. // 在组件实例进入页面节点树时执行
  94. // 计算
  95. const systemInfo = wx.getSystemInfoSync();
  96. const statusBarHeight = systemInfo.statusBarHeight || 0;
  97. const screenHeight = systemInfo.screenHeight || 0;
  98. const custom = wx.getMenuButtonBoundingClientRect();
  99. const customHeight = custom.height + 10 + 2 || 0;
  100. const bottomNavHeight = systemInfo.screenHeight - systemInfo.safeArea.bottom || 0;
  101. const contentpadding = (statusBarHeight + customHeight) * 750 / systemInfo.windowWidth;
  102. const contentHeight = (screenHeight - bottomNavHeight - 50 - statusBarHeight - customHeight) * 750 / systemInfo.windowWidth;
  103. const navheight = (statusBarHeight + customHeight) * 750 / systemInfo.windowWidth;
  104. this.setData({
  105. statusBarHeight,
  106. screenHeight: (screenHeight - 50 - bottomNavHeight) * 750 / systemInfo.windowWidth,
  107. customHeight,
  108. bottomNavHeight,
  109. contentHeight,
  110. contentpadding,
  111. navheight,
  112. });
  113. this.Getlocation()
  114. this.refersh()
  115. },
  116. },
  117. /**
  118. * 组件的方法列表
  119. */
  120. methods: {
  121. async refersh() {
  122. await this.gettarget()
  123. this.order()
  124. this.gettoday()
  125. this.getMeChick()
  126. let sportTotal = await getSportData.getChickCount(uid, 'ActivityData')
  127. this.setData({
  128. sportTotal
  129. })
  130. this.getNotice()
  131. },
  132. async getNotice() {
  133. let query = new Parse.Query('Notice');
  134. query.equalTo('company', company);
  135. query.notEqualTo('isDeleted', true)
  136. let n = await query.first();
  137. this.setData({
  138. notice: n?.get('content') || '欢迎加入儒乐湖健身~'
  139. })
  140. },
  141. /**当前用户连续打卡数 */
  142. async getMeChick() {
  143. let meContinuousChick = await getSportData.getContinuousCount(uid, 'ActivityData') || 0
  144. this.setData({
  145. meContinuousChick
  146. })
  147. },
  148. //跳转
  149. gourl(e) {
  150. const url = e.currentTarget.dataset.url
  151. const active = e.currentTarget.dataset.active
  152. if (active) {
  153. wx.navigateTo({
  154. url: `${url}?id=` + active // 目标页面的路径
  155. });
  156. console.log(active);
  157. } else {
  158. wx.navigateTo({
  159. url: `${url}` // 目标页面的路径
  160. });
  161. }
  162. },
  163. //获取目标步数
  164. async gettarget() {
  165. const currentUser = Parse.User.current();
  166. let userquery = new Parse.Query('_User');
  167. userquery.equalTo('company', company);
  168. userquery.equalTo('objectId', currentUser?.id);
  169. userquery.notEqualTo('isDeleted', true)
  170. let user = await userquery.first();
  171. let num = user?.toJSON()
  172. if (num?.num) {
  173. this.setData({
  174. target: num?.num
  175. })
  176. console.log('当前步数', this.data.target);
  177. } else {
  178. const currentUser2 = Parse.User.current();
  179. let userquery2 = new Parse.Query('_User');
  180. userquery2.equalTo('company', company);
  181. userquery2.equalTo('objectId', currentUser2?.id);
  182. userquery2.notEqualTo('isDeleted', true)
  183. let user2 = await userquery2.first();
  184. user2.set('num', 5000)
  185. try {
  186. let saveDate2 = await user2.save();
  187. console.log(saveDate2);
  188. this.setData({
  189. target: 5000
  190. })
  191. console.log("目标步数更改成功");
  192. } catch (error) {
  193. console.error("保存数据时出现错误:", error);
  194. }
  195. }
  196. },
  197. /** 获取当天运动数据*/
  198. async order() {
  199. let steps = await getSportData.getwalk('steps')
  200. this.setData({
  201. steps,
  202. })
  203. this.getBackgroundColor()
  204. // console.log('sharList', steps);
  205. },
  206. /** 修改进度条*/
  207. getBackgroundColor() {
  208. console.log(this.data.steps, this.data.target)
  209. let percentage = (this.data.steps / this.data.target) * 100;
  210. if (percentage > 100) {
  211. percentage = 100;
  212. }
  213. this.setData({
  214. percentage: `conic-gradient(from 0deg, #015EEA ${percentage}%, white 0%)`,
  215. })
  216. console.log('百分比', this.data.percentage);
  217. },
  218. /** 获取当前位置信息*/
  219. Getlocation() {
  220. // 获取当前位置信息
  221. wx.getLocation({
  222. type: 'wgs84',
  223. success: (res) => {
  224. const {
  225. latitude,
  226. longitude
  227. } = res;
  228. //调用api解析地址
  229. wx.request({
  230. url: 'https://api.map.baidu.com/reverse_geocoding/v3/?ak=sHZTomd7grslfP7sPKB8tRgT49FK9TEu&output=json&coordtype=gcj02&location=' + latitude + ',' + longitude,
  231. data: {},
  232. header: {
  233. 'Content-Type': 'application/json'
  234. },
  235. success: (ops) => { // 使用箭头函数
  236. console.log(ops);
  237. // const address = ops.data.result.formatted_address;//详细地址
  238. const address = ops.data.result.addressComponent.city; //市
  239. this.setData({
  240. address: address,
  241. });
  242. console.log(this.data.address);
  243. },
  244. fail: function (resq) {
  245. wx.showModal({
  246. title: '信息提示',
  247. content: '请求失败',
  248. showCancel: false,
  249. confirmColor: '#f37938'
  250. });
  251. },
  252. complete: function () {}
  253. })
  254. },
  255. fail: (err) => {
  256. console.error(err);
  257. wx.showToast({
  258. title: '获取位置失败',
  259. icon: 'none'
  260. });
  261. }
  262. });
  263. },
  264. /** 切换 历史/本日/本周/本月*/
  265. change() {
  266. // 使用数组来简化切换逻辑
  267. const titles = [0, 'today', 'toweek', 'tomonth'];
  268. const currentIndex = titles.indexOf(this.data.changetitle); //获取index
  269. const nextIndex = (currentIndex + 1) % titles.length; // 循环切换
  270. this.setData({
  271. changetitle: titles[nextIndex]
  272. });
  273. this.gettoday()
  274. },
  275. /**获取排行榜 */
  276. async gettoday() {
  277. let {
  278. rank,
  279. changetitle
  280. } = this.data
  281. let data = await getSportData.getRanking('', changetitle, '', '', rank)
  282. let todayList = []
  283. for (let i in data) {
  284. let obj = data[i]
  285. obj.count = await getSportData.getChickCount(obj.user, 'ActivityData')
  286. todayList.push(obj)
  287. }
  288. this.setData({
  289. todayList
  290. });
  291. },
  292. /** 正序逆序*/
  293. async changeup() {
  294. if (this.data.rank == 'DESC') {
  295. await this.setData({
  296. rank: 'ASC'
  297. })
  298. } else {
  299. await this.setData({
  300. rank: 'DESC'
  301. })
  302. }
  303. this.gettoday()
  304. },
  305. }
  306. })