index.js 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314
  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. },
  86. lifetimes: {
  87. detached: function () {
  88. // 在组件实例被从页面节点树移除时执行
  89. },
  90. attached: async function () {
  91. // getSportData.setEndSport("NwzxcVxCV1")
  92. // 在组件实例进入页面节点树时执行
  93. // 计算
  94. const systemInfo = wx.getSystemInfoSync();
  95. const statusBarHeight = systemInfo.statusBarHeight || 0;
  96. const screenHeight = systemInfo.screenHeight || 0;
  97. const custom = wx.getMenuButtonBoundingClientRect();
  98. const customHeight = custom.height + 10 + 2 || 0;
  99. const bottomNavHeight = systemInfo.screenHeight - systemInfo.safeArea.bottom || 0;
  100. const contentpadding = (statusBarHeight + customHeight) * 750 / systemInfo.windowWidth;
  101. const contentHeight = (screenHeight - bottomNavHeight - 50 - statusBarHeight - customHeight) * 750 / systemInfo.windowWidth;
  102. const navheight = (statusBarHeight + customHeight) * 750 / systemInfo.windowWidth;
  103. this.setData({
  104. statusBarHeight,
  105. screenHeight: (screenHeight - 50 - bottomNavHeight) * 750 / systemInfo.windowWidth,
  106. customHeight,
  107. bottomNavHeight,
  108. contentHeight,
  109. contentpadding,
  110. navheight,
  111. });
  112. this.Getlocation()
  113. this.refersh()
  114. },
  115. },
  116. /**
  117. * 组件的方法列表
  118. */
  119. methods: {
  120. async refersh() {
  121. await this.gettarget()
  122. this.order()
  123. this.gettoday()
  124. this.getMeChick()
  125. let sportTotal =await getSportData.getChickCount(uid,'ActivityData')
  126. this.setData({sportTotal})
  127. },
  128. /**当前用户连续打卡数 */
  129. async getMeChick() {
  130. let meContinuousChick = await getSportData.getContinuousCount(uid, 'ActivityData') || 0
  131. this.setData({
  132. meContinuousChick
  133. })
  134. },
  135. //跳转
  136. gourl(e) {
  137. const url = e.currentTarget.dataset.url
  138. const active = e.currentTarget.dataset.active
  139. if (active) {
  140. wx.navigateTo({
  141. url: `${url}?id=` + active // 目标页面的路径
  142. });
  143. console.log(active);
  144. } else {
  145. wx.navigateTo({
  146. url: `${url}` // 目标页面的路径
  147. });
  148. }
  149. },
  150. //获取目标步数
  151. async gettarget() {
  152. const currentUser = Parse.User.current();
  153. let userquery = new Parse.Query('_User');
  154. userquery.equalTo('company', company);
  155. userquery.equalTo('objectId', currentUser?.id);
  156. userquery.notEqualTo('isDeleted', true)
  157. let user = await userquery.first();
  158. let num = user?.toJSON()
  159. if (num?.num) {
  160. this.setData({
  161. target: num?.num
  162. })
  163. console.log('当前步数', this.data.target);
  164. } else {
  165. const currentUser2 = Parse.User.current();
  166. let userquery2 = new Parse.Query('_User');
  167. userquery2.equalTo('company', company);
  168. userquery2.equalTo('objectId', currentUser2?.id);
  169. userquery2.notEqualTo('isDeleted', true)
  170. let user2 = await userquery2.first();
  171. user2.set('num', 5000)
  172. try {
  173. let saveDate2 = await user2.save();
  174. console.log(saveDate2);
  175. this.setData({
  176. target: 5000
  177. })
  178. console.log("目标步数更改成功");
  179. } catch (error) {
  180. console.error("保存数据时出现错误:", error);
  181. }
  182. }
  183. },
  184. /** 获取当天运动数据*/
  185. async order() {
  186. let steps = await getSportData.getwalk('steps')
  187. this.setData({
  188. steps,
  189. })
  190. this.getBackgroundColor()
  191. // console.log('sharList', steps);
  192. },
  193. /** 修改进度条*/
  194. getBackgroundColor() {
  195. console.log(this.data.steps, this.data.target)
  196. let percentage = (this.data.steps / this.data.target) * 100;
  197. if (percentage > 100) {
  198. percentage = 100;
  199. }
  200. this.setData({
  201. percentage: `conic-gradient(from 0deg, #015EEA ${percentage}%, white 0%)`,
  202. })
  203. console.log('百分比', this.data.percentage);
  204. },
  205. /** 获取当前位置信息*/
  206. Getlocation() {
  207. // 获取当前位置信息
  208. wx.getLocation({
  209. type: 'wgs84',
  210. success: (res) => {
  211. const {
  212. latitude,
  213. longitude
  214. } = res;
  215. //调用api解析地址
  216. wx.request({
  217. url: 'https://api.map.baidu.com/reverse_geocoding/v3/?ak=sHZTomd7grslfP7sPKB8tRgT49FK9TEu&output=json&coordtype=gcj02&location=' + latitude + ',' + longitude,
  218. data: {},
  219. header: {
  220. 'Content-Type': 'application/json'
  221. },
  222. success: (ops) => { // 使用箭头函数
  223. console.log(ops);
  224. // const address = ops.data.result.formatted_address;//详细地址
  225. const address = ops.data.result.addressComponent.city; //市
  226. this.setData({
  227. address: address,
  228. });
  229. console.log(this.data.address);
  230. },
  231. fail: function (resq) {
  232. wx.showModal({
  233. title: '信息提示',
  234. content: '请求失败',
  235. showCancel: false,
  236. confirmColor: '#f37938'
  237. });
  238. },
  239. complete: function () {}
  240. })
  241. },
  242. fail: (err) => {
  243. console.error(err);
  244. wx.showToast({
  245. title: '获取位置失败',
  246. icon: 'none'
  247. });
  248. }
  249. });
  250. },
  251. /** 切换 历史/本日/本周/本月*/
  252. change() {
  253. // 使用数组来简化切换逻辑
  254. const titles = [0, 'today', 'toweek', 'tomonth'];
  255. const currentIndex = titles.indexOf(this.data.changetitle); //获取index
  256. const nextIndex = (currentIndex + 1) % titles.length; // 循环切换
  257. this.setData({
  258. changetitle: titles[nextIndex]
  259. });
  260. this.gettoday()
  261. },
  262. /**获取排行榜 */
  263. async gettoday() {
  264. let {
  265. rank,
  266. changetitle
  267. } = this.data
  268. let data = await getSportData.getRanking('', changetitle, '', '', rank)
  269. let todayList = []
  270. for (let i in data) {
  271. let obj = data[i]
  272. obj.count = await getSportData.getChickCount(obj.user, 'ActivityData')
  273. todayList.push(obj)
  274. }
  275. this.setData({
  276. todayList
  277. });
  278. },
  279. /** 正序逆序*/
  280. async changeup() {
  281. if (this.data.rank == 'DESC') {
  282. await this.setData({
  283. rank: 'ASC'
  284. })
  285. } else {
  286. await this.setData({
  287. rank: 'DESC'
  288. })
  289. }
  290. this.gettoday()
  291. },
  292. }
  293. })