index.js 8.4 KB

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