index.js 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. // nova-werun/pages/home/sport/sport-home/index.js
  2. const Parse = getApp().Parse;
  3. const company = getApp().globalData.company;
  4. const uid = Parse.User.current()?.id
  5. let request = require('../../../../../utils/request')
  6. let getSportData = require('../../../../service/getSportData')
  7. Page({
  8. /**
  9. * 页面的初始数据
  10. */
  11. data: {
  12. //屏幕高度
  13. statusBarHeight: 0, // 状态栏高度
  14. screenHeight: 0, // 屏幕高度
  15. customHeight: 0, // 自定义导航栏高度(如小程序右上角胶囊按钮)
  16. bottomNavHeight: 0, // 底部导航栏高度
  17. contentHeight: 0, // 可用内容高度
  18. contentHeight2: 0,
  19. contentpadding: 0, //顶部padding高度
  20. //
  21. currentTab: 0,
  22. //地图
  23. longitude: 0,
  24. latitude: 0,
  25. markers: [],
  26. //
  27. distance: 0,
  28. type: 'walk',
  29. show: false,
  30. },
  31. /**
  32. * 生命周期函数--监听页面加载
  33. */
  34. onLoad: function (options) {
  35. // 计算
  36. const systemInfo = wx.getSystemInfoSync();
  37. const statusBarHeight = systemInfo.statusBarHeight || 0;
  38. const screenHeight = systemInfo.screenHeight || 0;
  39. const custom = wx.getMenuButtonBoundingClientRect();
  40. const customHeight = custom.height + 10 + 2 || 0;
  41. const bottomNavHeight = systemInfo.screenHeight - systemInfo.safeArea.bottom || 0;
  42. const contentpadding = (statusBarHeight + customHeight) * 750 / systemInfo.windowWidth;
  43. const contentHeight = (screenHeight - bottomNavHeight - statusBarHeight - customHeight) * 750 / systemInfo.windowWidth;
  44. this.setData({
  45. statusBarHeight,
  46. screenHeight,
  47. customHeight,
  48. bottomNavHeight,
  49. contentpadding,
  50. contentHeight,
  51. });
  52. if (Number(options.id)) {
  53. this.setData({
  54. active: Number(options.id)
  55. })
  56. }
  57. //地图
  58. this.Getlocation()
  59. this.getwalk()
  60. },
  61. /** 获取行走公里*/
  62. async getwalk() {
  63. let distance = await getSportData.getwalk('distance')
  64. this.setData({
  65. distance: distance.toFixed(2),
  66. })
  67. console.log('距离', this.data.distance);
  68. },
  69. showPopup() {
  70. this.setData({
  71. show: true
  72. });
  73. },
  74. onClose() {
  75. this.setData({
  76. show: false
  77. });
  78. },
  79. /** 跳转*/
  80. gourl(e) {
  81. this.onClose()
  82. const url = e.currentTarget.dataset.url
  83. wx.navigateTo({
  84. url: `${url}` // 目标页面的路径
  85. });
  86. },
  87. /**
  88. * 生命周期函数--监听页面初次渲染完成
  89. */
  90. onReady: function () {
  91. },
  92. /**
  93. * 生命周期函数--监听页面显示
  94. */
  95. onShow: function () {
  96. },
  97. /**
  98. * 生命周期函数--监听页面隐藏
  99. */
  100. onHide: function () {
  101. },
  102. /**
  103. * 生命周期函数--监听页面卸载
  104. */
  105. onUnload: function () {
  106. },
  107. /**
  108. * 页面相关事件处理函数--监听用户下拉动作
  109. */
  110. onPullDownRefresh: function () {
  111. },
  112. /**
  113. * 页面上拉触底事件的处理函数
  114. */
  115. onReachBottom: function () {
  116. },
  117. /**
  118. * 用户点击右上角分享
  119. */
  120. onShareAppMessage: function () {
  121. },
  122. //获取当前位置信息
  123. Getlocation() {
  124. // 获取当前位置信息
  125. wx.getLocation({
  126. type: 'gcj02',
  127. success: (res) => {
  128. const {
  129. latitude,
  130. longitude
  131. } = res;
  132. // console.log('获取到的经纬度:', latitude, longitude); // 添加日志
  133. //调用api解析地址
  134. wx.request({
  135. url: 'https://api.map.baidu.com/reverse_geocoding/v3/?ak=sHZTomd7grslfP7sPKB8tRgT49FK9TEu&output=json&coordtype=gcj02&location=' + latitude + ',' + longitude,
  136. data: {},
  137. header: {
  138. 'Content-Type': 'application/json'
  139. },
  140. success: (ops) => { // 使用箭头函数
  141. console.log(ops);
  142. const address = ops.data.result.formatted_address;
  143. this.setData({
  144. address: address,
  145. latitude: latitude, // 保证 latitude 被设置
  146. longitude: longitude, // 保证 longitude 被设置
  147. markers: [{ // 设置 markers
  148. id: 1,
  149. latitude: latitude,
  150. longitude: longitude,
  151. iconPath: 'https://file-cloud.fmode.cn/13WZ0W7u3l/20240724/7ebg0k104325941.png?imageView2/1/w/200/h/200', // 自定义标记图标
  152. width: 40,
  153. height: 40,
  154. // callout: {
  155. // content: address, // 可以显示解析出的地址
  156. // color: '#ffffff',
  157. // bgColor: '#7F56B2',
  158. // padding: 10,
  159. // borderRadius: 5,
  160. // display: 'ALWAYS'
  161. // }
  162. }]
  163. });
  164. // console.log(this.data.address);
  165. },
  166. fail: function (resq) {
  167. wx.showModal({
  168. title: '信息提示',
  169. content: '请求失败',
  170. showCancel: false,
  171. confirmColor: '#f37938'
  172. });
  173. },
  174. complete: function () {}
  175. })
  176. },
  177. fail: (err) => {
  178. console.error(err);
  179. wx.showToast({
  180. title: '获取位置失败',
  181. icon: 'none'
  182. });
  183. }
  184. });
  185. },
  186. })