1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006 |
- // nova-werun/pages/home/sport/sport-start/index.js
- const Parse = getApp().Parse;
- const company = getApp().globalData.company;
- const uid = Parse.User.current()?.id
- let request = require('../../../../../utils/request')
- const dateF = require("../../../../../utils/date")
- let {
- statusBarHeight
- } = wx.getSystemInfoSync()
- let custom = wx.getMenuButtonBoundingClientRect()
- let customHeight = custom.height
- Page({
- /**
- * 页面的初始数据
- */
- data: {
- navheight: 0, //导航高度px
- isStop: false, //计时是否暂停
- longitude: 0, //经度
- latitude: 0, //纬度
- markers: [], //地图标记点
- showPermissions: true, //权限弹框-开
- journey: 0, //运动的路程-米
- calorie: 0, //卡路里-千卡
- pace: 0, //配速-m/s
- timer: 0, //已记的时长-秒
- status: 'noStart', //运动状态 'noStart'未开始,'inSports'运动中,'paused'暂停
- percentage: '', //长按结束运动百分比
- endHaloInterval: null, //光环计时器
- endHaloStartDate: null, //光环开始时间戳
- endHaloEndDate: null, //光环结束时间戳
- isRefershLaLo: true, //是否刷新经纬度
- stage: 'start', //运动过程 start,progress,end
- actData: null, //运动数据
- formattedTime: '00:00:00', // 用于存储格式化后的时间
- step: 0, //运动步数
- type: 'walk', //运动类型-步行
- actDataList: [], //未运动结束数据
- isShowActDataList: false, //是否展示未运动结束的数据
- checkActDataId: null, //点击的未结束运动
- lastSpeed: 0, //上次记录的速度-m/s
- lastTime: 0, //上次记录的时间点-Date
- intervalStartTime: 0, //计时器开始时间-Date用于获取实时秒数
- saveTime: 0, //上次保存log时间-Date用于熄屏后持续每10s记录log
- hideTime: 0, //熄屏时间点
- timerInterval: null, //运动时长计时器
- pageStatus: 'show', //当前页面状态 show/hide 展示中/未展示
- polyline: null, //运动轨迹
- },
- /**
- * 生命周期函数--监听页面加载
- */
- onLoad: async function (options) {
- wx.offLocationChange()
- this.setData({
- navheight: customHeight + statusBarHeight + 5,
- type: options.type || 'walk', //运动方式 run/walk
- a_reg: options.a_reg || '', //所属报名记录 ActivityRegister.id
- })
- console.log(options)
- this.getActivityData()
- this.beforeUnload()
- // this.getWeRun()
- },
- /**监听位置变化 */
- monitorLocationChange() {
- let that = this
- wx.startLocationUpdateBackground({
- success: (res) => {
- wx.onLocationChange(async (change_res) => {
- // console.log(change_res.speed, change_res.longitude, change_res.latitude)
- let currentTime = new Date()
- let currentSpeed = change_res.speed
- if(currentSpeed>=200)return
- let {
- longitude, //经度
- latitude, //纬度
- journey, //路程-m
- calorie, //卡路里-千卡
- pace, //配速-m/s
- isRefershLaLo,
- lastSpeed, //上次记录的配速-m/s
- lastTime, //上次记录的时间点-Date
- pageStatus, //当前页面状态 show/hide 展示中/未展示
- saveTime, //上次保存log时间-Date用于息屏后持续每10s记录log
- } = that.data
- /**相距时长-s */
- let during = (currentTime - lastTime) / 1000
- /** 平均速度-m/s*/
- let svg_speed = (currentSpeed + lastSpeed) / 2
- if (isRefershLaLo) {
- longitude = change_res.longitude
- latitude = change_res.latitude
- let {
- actData
- } = that.data
- console.log(actData)
- actData.set('status', 'inSports')
- await actData.save()
- //首次获取速度
- svg_speed = currentSpeed
- that.setData({
- isRefershLaLo: false,
- actData,
- longitude: change_res.longitude,
- latitude: change_res.latitude,
- lastSpeed: currentSpeed,
- })
-
- }
- /**相隔距离 */
- let distance = during * svg_speed
- journey = (parseFloat(journey || 0) + parseFloat(distance || 0))?.toFixed(2)
- calorie = that.getCalorie(50, journey) //体重50kg
- pace = svg_speed
- let step = parseInt(parseInt(journey) / 0.6)
- console.log(step, journey, calorie, pace)
- console.log(`运动步数:${step},运动距离${journey},卡路里${calorie},速度${pace}`)
- await that.setData({
- step: step < 0 ? 0 : step,
- journey: journey < 0 ? 0 : journey,
- longitude: change_res.longitude,
- latitude: change_res.latitude,
- calorie: calorie < 0 ? 0 : calorie,
- pace: parseFloat(pace)?.toFixed(2) < 0 ? 0 : parseFloat(pace)?.toFixed(2),
- lastTime: currentTime,
- lastSpeed: currentSpeed
- })
- if (pageStatus == 'hide') {
- let duTimer = new Date() - saveTime
- if (duTimer >= 10000) {
- // let dut = parseInt(duTimer / 1000)
- // let {
- // timer
- // } = that.data
- // timer = timer + dut
- // that.setData({
- // timer
- // })
- await that.setActivityRunLog()
- }
- }
- });
- },
- fail: (res) => {
- this.openPermissions()
- }
- });
- },
- /**
- * 位置监听开启
- */
- async setTime() {
- await this.setData({
- status: 'inSports',
- isRefershLaLo: true,
- })
- let that = this
- wx.offLocationChange()
- setTimeout(() => {
- that.monitorLocationChange()
- console.log('执行经纬度获取')
- }, 1000);
- },
- /**计时器计算秒数 */
- async intervalGetTimer() {
- let {
- intervalStartTime, //计时器开始时间-Date用于获取实时秒数
- saveTime, //上次保存log时间-Date用于息屏后持续每10s记录log
- timer,
- } = this.data
- let that = this
- this.setData({
- intervalStartTime: new Date()
- })
- let timerInterval = setInterval(async () => {
- timer = timer + 1 || 0
- let formattedTime = that.formatTime(parseInt(timer))
- this.setData({
- timer,
- formattedTime
- })
- let time = timer % 10
- if (time === 0) {
- await that.setActivityRunLog()
- that.setData({
- stage: 'progress',
- saveTime: new Date(),
- })
- }
- }, 1000);
- this.setData({
- timerInterval
- })
- },
- /**开始运动 */
- async startInterval() {
- await this.setData({
- longitude: 0, //经度
- latitude: 0, //纬度
- markers: [], //地图标记点
- journey: 0, //运动的路程-米
- step: 0,
- calorie: 0, //卡路里-千卡
- pace: 0, //配速-m/s
- interval: null, //计时器
- timer: 0, //已记的时长-秒
- formattedTime: '00:00:00', // 用于存储格式化后的时间
- status: 'inSports', //运动中
- stage: 'start',
- })
- setTimeout(() => {
- this.intervalGetTimer()
- this.setTime()
- }, 1000);
- },
- /** 暂停运动*/
- async pausedInterval() {
- wx.offLocationChange()
- this.setData({
- status: 'paused',
- })
- let {
- actData,
- timer,
- pace,
- calorie,
- journey,
- step,
- timerInterval
- } = this.data
- clearInterval(timerInterval)
- this.setData({
- timerInterval: null,
- isRefershLaLo: true,
- })
- console.log(actData)
- actData.set('status', 'paused')
- actData.set('distance', parseFloat(journey))
- actData.set('steps', parseInt(step))
- actData.set('sportDate', parseInt(timer))
- actData.set('matchSpeed', parseFloat(pace))
- actData.set('burnCalories', parseFloat(calorie))
- await actData.save()
- console.log('暂停')
- },
- /**继续运动 */
- goOn() {
- this.intervalGetTimer()
- this.setTime()
- },
- /**获取运动数据 */
- async getActivityData() {
- let {
- a_reg,
- type
- } = this.data
- let query = new Parse.Query('ActivityData')
- query.equalTo('company', company)
- query.equalTo('user', uid)
- query.equalTo('type', type)
- query.notEqualTo('isDeleted', true)
- query.descending('createdAt')
- if (a_reg) { //如果传递了报名记录-直接进行这个运动
- console.log('如果传递了报名记录-直接进行这个运动')
- let actData
- query.equalTo('actRegister', a_reg)
- actData = await query.first()
- if (actData?.get('status') == 'end') {
- wx.showToast({
- title: '已结算成绩',
- icon: 'none'
- })
- wx.navigateBack({
- delta: 1
- })
- return
- }
- if (!actData?.id) {
- console.log('未查询出运动数据')
- let regQuery = new Parse.Query('ActivityRegister')
- let act_reg = await regQuery.get(a_reg)
- await this.creatActDateFun(act_reg)
- return
- } else {
- console.log('运动未结束')
- wx.showToast({
- title: '运动未结束',
- icon: 'none'
- })
- await this.assignmentFun(actData?.id)
- this.setData({
- actData
- })
- }
- } else { //未传递-显示当前类型(run/walk)所有未结束的运动
- console.log('未传递-显示当前类型所有未结束的运动')
- let actDataCount
- actDataCount = await query.count()
- if (actDataCount <= 0 || !actDataCount) {
- await this.creatActDateFun()
- return
- } else {
- let sql = `SELECT act_d."objectId",act_d."startDate",act_d."createdAt",act."title",act_r."booking",act."endDate" AS act_end
- FROM "ActivityData" act_d
- LEFT JOIN "Activity" act ON act."objectId" = act_d."activity"
- LEFT JOIN "ActivityRegister" act_r ON act_r."objectId" = act_d."actRegister" AND act_r."isDeleted" IS NOT TRUE
- WHERE act_d."company"='${company}'
- AND act_d."user"='${uid}'
- AND act_d."status" NOT IN ('end')
- AND act_d."type"='${type}'
- AND act_d."isDeleted" IS NOT TRUE
- ORDER BY act_d."startDate" DESC
- LIMIT 20`
- let actDataList = await request.customSQL(sql) || []
- if (actDataList?.length <= 0 || !actDataList) {
- await this.creatActDateFun()
- return
- } else {
- console.log(actDataList)
- let actDataList2 = actDataList?.map(item => {
- let obj = item
- if (item.startDate || item.createdAt) obj.sport_startDate = dateF.formatTime("YYYY.mm.dd HH:MM", item.startDate || item.createdAt)
- if (item.booking?.from?.iso) obj.booking.fromDate = dateF.formatTime("YYYY.mm.dd HH:MM", item.booking.from.iso)
- /**该运动是否可继续 */
- let isAttend = false
- let now = new Date()
- if (item.act_end) {
- let end = new Date(item.act_end)
- isAttend = now < end
- obj.actEndDate = dateF.formatTime("YYYY.mm.dd HH:MM", item.act_end)
- console.log('end', end, isAttend)
- }
- if (item.booking?.to?.iso) {
- let to = new Date(item.booking?.to?.iso)
- isAttend = now < to
- obj.booking.toDate = dateF.formatTime("YYYY.mm.dd HH:MM", item.booking.to.iso)
- console.log('to', to, isAttend)
- }
- obj.isAttend = isAttend
- return obj
- })
- this.setData({
- actDataList: actDataList2,
- isShowActDataList: true,
- })
- console.log(actDataList2)
- }
- }
- }
- },
- /**关闭未结束运动弹框 */
- closeActDataList() {
- this.creatActDateFun()
- this.setData({
- isShowActDataList: false
- })
- },
- /**点击未结束运动 */
- async checkActEndDate(e) {
- let {
- actDataList,
- type
- } = this.data
- console.log(e)
- let {
- index
- } = e.currentTarget.dataset
- let act_end_data_id = actDataList[index].objectId
- let log_query = new Parse.Query('ActivityRunLog')
- log_query.equalTo('company', company)
- log_query.equalTo('user', uid)
- log_query.equalTo('actData', act_end_data_id)
- log_query.equalTo('type', type)
- log_query.notEqualTo('isDeleted', true)
- log_query.descending('createdAt')
- let log = await log_query.first()
- let that = this
- console.log(actDataList[index])
- if (actDataList[index].isAttend || !actDataList[index].title) {
- wx.showModal({
- title: `${actDataList[index].title||'日常运动'}`,
- content: `${actDataList[index].sport_startDate||'未知时间'}开始运动,已运动 ${log?.get('distance')||0} m, ${log?.get('steps')||0} 步,消耗 ${log?.get('burnCalories')||0} 千卡,是否继续进行?`,
- success: async (res) => {
- if (res.confirm) {
- console.log('用户点击确定')
- await that.assignmentFun(act_end_data_id)
- that.setData({
- isShowActDataList: false
- })
- } else if (res.cancel) {
- console.log('用户点击取消')
- }
- }
- })
- } else if (!actDataList[index].isAttend) {
- wx.showModal({
- title: `${actDataList[index].title||'日常运动'}`,
- content: `${actDataList[index].sport_startDate||'未知时间'}开始运动,已运动 ${log?.get('distance')||0} m, ${log?.get('steps')||0} 步,消耗 ${log?.get('burnCalories')||0} 千卡。当前报名记录已过期,可查看其他报名或其他活动。`,
- showCancel: false,
- confirmText: '结束运动',
- success: async (res) => {
- if (res.confirm) {
- await that.setEndActDateFun(act_end_data_id)
- actDataList.splice(index, 1)
- that.setData({
- actDataList
- })
- wx.showToast({
- title: '已结束',
- icon: 'none'
- })
- }
- }
- })
- }
- },
- /**继续未结束运动 */
- async goOnactEndDate() {
- let {
- checkActDataId
- } = this.data
- await this.assignmentFun(checkActDataId)
- this.setData({
- isShowActDataList: false
- })
- },
- /**全部结束 */
- async itemId() {
- wx.showModal({
- content: '确认结束列表内显示的全部运动吗?',
- success: async (res) => {
- if (res.confirm) {
- wx.showLoading({
- title: '...',
- })
- let {
- actDataList
- } = this.data
- for (let i in actDataList) {
- let itemId = actDataList[i].objectId
- await this.setEndActDateFun(itemId)
- }
- this.creatActDateFun()
- wx.hideLoading()
- this.setData({
- isShowActDataList: false
- })
- }
- }
- })
- },
- /**
- * 新建运动数据
- * @param {*} act_reg 活动报名记录 Parse.Object
- */
- async creatActDateFun(act_reg) {
- let {
- type
- } = this.data
- let ActivityData = Parse.Object.extend('ActivityData')
- let actData = new ActivityData()
- if (act_reg?.id && act_reg?.get('activity')?.id) {
- actData.set('activity', {
- __type: 'Pointer',
- className: 'Activity',
- objectId: act_reg?.get('activity')?.id
- })
- actData.set('actRegister', {
- __type: 'Pointer',
- className: 'ActivityRegister',
- objectId: act_reg?.id
- })
- }
- actData.set('company', {
- __type: 'Pointer',
- className: 'Company',
- objectId: company
- })
- actData.set('user', {
- __type: 'Pointer',
- className: '_User',
- objectId: uid
- })
- actData.set('type', type)
- actData.set('startDate', new Date())
- console.log('未查询出显示这个', actData)
- await this.setData({
- actData
- })
- },
- /**
- * 运动数据赋值操作
- * @param {*} actDataId 运动数据id
- */
- async assignmentFun(actDataId) {
- let {
- type
- } = this.data
- let log_query = new Parse.Query('ActivityRunLog')
- log_query.equalTo('company', company)
- log_query.equalTo('user', uid)
- log_query.equalTo('actData', actDataId)
- log_query.equalTo('type', type)
- log_query.notEqualTo('isDeleted', true)
- log_query.descending('createdAt')
- let log = await log_query.first()
- let data_query = new Parse.Query('ActivityData')
- let actData = await data_query.get(actDataId)
- this.setData({
- actData
- })
- this.setData({
- stage: 'progress',
- status: 'paused',
- isRefershLaLo: true,
- timer: log?.get('sportDate') || 0,
- pace: log?.get('matchSpeed') || 0,
- calorie: log?.get('burnCalories') || 0,
- journey: log?.get('distance') || 0,
- step: log?.get('steps' || 0),
- formattedTime: this.formatTime(log?.get('sportDate') || 0),
- })
- },
- /**
- * 结束运动
- * @param {*} actDataId 运动数据id
- */
- async setEndActDateFun(actDataId) {
- let {
- type
- } = this.data
- let log_query = new Parse.Query('ActivityRunLog')
- log_query.equalTo('company', company)
- log_query.equalTo('user', uid)
- log_query.equalTo('actData', actDataId)
- log_query.equalTo('type', type)
- log_query.notEqualTo('isDeleted', true)
- log_query.descending('createdAt')
- let log = await log_query.first()
- let data_query = new Parse.Query('ActivityData')
- let data = await data_query.get(actDataId)
- log?.get('steps') && data.set('steps', log?.get('steps') || 0)
- log?.get('distance') && data.set('distance', log?.get('distance') || 0)
- log?.get('matchSpeed') && data.set('matchSpeed', log?.get('matchSpeed') || 0)
- log?.get('sportDate') && data.set('sportDate', log?.get('sportDate') || 0)
- log?.get('burnCalories') && data.set('burnCalories', log?.get('burnCalories') || 0)
- data.set('endDate', log?.get('createdAt') || new Date())
- data.set('status', 'end')
- await data.save()
- if (log?.id) {
- log.set('stage', 'end')
- await log.save()
- }
- },
- /**监听页面退出事件 */
- beforeUnload() {
- wx.enableAlertBeforeUnload({ //获取不到"确认/取消"按钮事件
- message: '未开始运动、暂停运动中以及运动结束请忽略本提示。若当前正在运动,退出本页面将在微信后台记录。关闭小程序、关闭小程序运行权限、长时间未进入小程序、手机退出微信等操作都将暂停记录。',
- })
- },
- /**检查用户授权状况 */
- examineAuthorization() {
- let that = this
- wx.getSetting({
- success(res) {
- console.log(res)
- if (!res.authSetting['scope.userLocation'] || !res.authSetting['scope.userLocationBackground']) {
- that.openPermissions()
- } else {
- that.closePermissions()
- }
- }
- })
- },
- /**权限弹框-开 */
- openPermissions() {
- this.setData({
- showPermissions: true
- })
- },
- /**权限弹框-关 */
- async closePermissions() {
- await this.setData({
- showPermissions: false
- })
- let {
- type
- } = this.data
- let tip = '运动'
- switch (type) {
- case 'run':
- tip = '跑步'
- break;
- case 'walk':
- tip = '步行'
- break;
- default:
- break;
- }
- wx.showToast({
- title: `开启${tip}之旅吧~`,
- icon: 'none'
- })
- this.refersh()
- },
- /**打开微信权限设置页面 */
- openWxSetting() {
- wx.openSetting({
- success(res) {
- console.log(res.authSetting)
- },
- fail(err) {
- console.log(err)
- }
- })
- },
- async refersh() {
- this.startSports()
- },
- /**刷新初始位置 */
- startSports() {
- let that = this
- wx.getLocation({
- type: 'gcj02',
- success: async (res) => {
- console.log(res)
- let {
- longitude,
- latitude,
- } = res
- let markers = [{
- iconPath: "https://file-cloud.fmode.cn/13WZ0W7u3l/20240724/7ebg0k104325941.png",
- width: 20,
- height: 20,
- longitude: longitude,
- latitude: latitude,
- id: 0,
- }]
- await that.setData({
- longitude,
- latitude,
- markers
- })
- },
- fail: (err) => {
- console.error(err);
- wx.showToast({
- title: '获取位置失败',
- icon: 'none'
- });
- }
- });
- },
- /**长按结束-起 */
- onStart() {
- let endHaloStartDate = new Date()
- this.setData({
- endHaloStartDate
- })
- let {
- endHaloInterval
- } = this.data
- endHaloInterval = setInterval(() => {
- let now = new Date()
- let elapsedTime = now - endHaloStartDate
- let percentage = Math.min((elapsedTime / 4000) * 100, 100);
- this.setData({
- percentage: `conic-gradient(from 0deg, #015EEA ${percentage}%, white 0%)`,
- });
- }, 40);
- this.setData({
- endHaloInterval
- })
- },
- /**长按结束-终 */
- async onEnd() {
- let {
- endHaloStartDate,
- endHaloInterval,
- actData,
- timerInterval
- } = this.data
- let endHaloEndDate = new Date()
- let a = endHaloEndDate - endHaloStartDate
- if (a >= 4000) { //长按4秒
- clearInterval(endHaloInterval)
- wx.offLocationChange()
- wx.stopLocationUpdate({
- success: (res) => {
- console.log('后台定位已停止');
- },
- fail: (res) => {
- console.error('停止后台定位失败', res);
- }
- });
- clearInterval(timerInterval)
- await this.setData({
- status: 'noStart',
- endHaloStartDate: null,
- endHaloStartDate: null,
- percentage: '',
- endHaloInterval: null,
- stage: 'end',
- timerInterval: null,
- })
- await this.setActivityRunLog()
- let {
- actData,
- timer,
- pace,
- calorie,
- journey,
- step
- } = this.data
- console.log(actData)
- actData.set('status', 'end')
- actData.set('endDate', new Date())
- actData.set('distance', parseFloat(journey))
- actData.set('sportDate', parseInt(timer))
- actData.set('steps', parseInt(step))
- actData.set('matchSpeed', parseFloat(pace))
- actData.set('burnCalories', parseFloat(calorie))
- await actData.save()
- wx.showToast({
- title: '已结束本次运动',
- icon: 'none'
- })
- } else {
- clearInterval(endHaloInterval)
- this.setData({
- endHaloStartDate: null,
- endHaloStartDate: null,
- percentage: '',
- endHaloInterval: null,
- })
- }
- },
- /**微信步数获取-弃用-使用0.6米/步 */
- async getWeRun() {
- wx.login({
- success: (res) => {
- console.log(res)
- wx.request({
- url: `https://api.weixin.qq.com/sns/jscode2session?appid=wxe6ecc0193c09696c&secret=0ee1172c8729c547d33f0ab45715d7ec&js_code=${res.code}&grant_type=authorization_code`,
- method: 'GET',
- success(res) {
- console.log(res)
- let session_key = res.data.session_key
- wx.getWeRunData({
- success: async (res) => {
- console.log(res)
- console.log(res.encryptedData)
- console.log(res.iv)
- wx.request({
- url: 'http://localhost:7337/api/o2o/wxrun',
- data: {
- app_id: 'wxe6ecc0193c09696c',
- session_key: session_key,
- encrypted_data: res.encryptedData,
- iv: res.iv
- },
- method: 'POST',
- success(res) {
- console.log(res)
- },
- })
- },
- fail: (err) => {
- console.log(err)
- }
- })
- },
- })
- },
- })
- },
- toRadians(degrees) {
- return degrees * (Math.PI / 180);
- },
- /**
- * 两点距离-米
- * @param {*} lat1 纬1
- * @param {*} lon1 经1
- * @param {*} lat2 纬2
- * @param {*} lon2 经2
- */
- haversine(lat1, lon1, lat2, lon2) {
- const R = 6371000;
- const φ1 = this.toRadians(parseFloat(lat1));
- const φ2 = this.toRadians(parseFloat(lat2));
- const Δφ = this.toRadians(parseFloat(lat2) - parseFloat(lat1));
- const Δλ = this.toRadians(parseFloat(lon2) - parseFloat(lon1));
- const a = Math.sin(Δφ / 2) * Math.sin(Δφ / 2) +
- Math.cos(φ1) * Math.cos(φ2) *
- Math.sin(Δλ / 2) * Math.sin(Δλ / 2);
- const c = 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1 - a));
- const distance = R * c;
- return distance;
- },
- /**
- * 计算卡路里-千卡
- * @param {*} weight 体重kg
- * @param {*} distance 距离m
- */
- getCalorie(weight, distance) {
- const caloriesBurned = weight * distance * 0.75;
- return (caloriesBurned / 1000).toFixed(2);
- },
- /**记录运动过程-每10秒保存一次 */
- async setActivityRunLog() {
- let {
- actData,
- stage,
- longitude, //经度
- latitude, //纬度
- journey, //运动的路程-米
- step,
- calorie, //卡路里-千卡
- pace, //配速-m/s
- timer, //已记的时长-秒
- type, //步行/跑步
- polyline, //运动轨迹
- } = this.data
- let ActivityRunLog = Parse.Object.extend('ActivityRunLog')
- let log = new ActivityRunLog()
- log.set('company', {
- __type: 'Pointer',
- className: 'Company',
- objectId: company
- })
- log.set('user', {
- __type: 'Pointer',
- className: '_User',
- objectId: uid
- })
- log.set('actData', {
- __type: 'Pointer',
- className: 'ActivityData',
- objectId: actData?.id
- })
- log.set('stage', stage)
- log.set('type', type)
- log.set('sportDate', parseInt(timer) || 0)
- log.set('burnCalories', parseFloat(calorie || '0'))
- log.set('matchSpeed', parseFloat(pace || '0'))
- log.set('distance', parseFloat(journey || '0'))
- log.set('steps', step)
- let location = new Parse.GeoPoint({
- latitude: latitude,
- longitude: longitude
- });
- log.set('location', location)
- await log.save()
- let points = [...(polyline?.[0]?.points || []), {
- longitude,
- latitude
- }]
- this.setData({
- saveTime: new Date(),
- longitude,
- latitude,
- polyline: [{
- points: points,
- color: '#58c16c',
- width: 5,
- borderColor: '#fff',
- borderWidth: 1
- }],
- })
- console.log('执行一次保存函数', this.data.polyline)
- },
- /**时间格式显示 */
- formatTime: function (seconds) {
- const hours = Math.floor(seconds / 3600);
- const minutes = Math.floor((seconds % 3600) / 60);
- const secs = seconds % 60;
- // 格式化为两位数
- const formattedHours = String(hours).padStart(2, '0');
- const formattedMinutes = String(minutes).padStart(2, '0');
- const formattedSeconds = String(secs).padStart(2, '0');
- return `${formattedHours}:${formattedMinutes}:${formattedSeconds}`;
- },
- /**
- * 生命周期函数--监听页面初次渲染完成
- */
- onReady: function () {
- },
- /**
- * 生命周期函数--监听页面显示
- */
- onShow: async function () {
- this.setData({
- pageStatus: 'show'
- })
- let {
- hideTime,
- timer
- } = this.data
- if (hideTime) {
- let currentTime = new Date()
- let during = parseInt((currentTime - hideTime) / 1000)
- timer = parseInt(timer) + during
- console.log(`离开了${during}秒,从${timer}继续计时`)
- let formattedTime = this.formatTime(parseInt(timer))
- await this.setData({
- timer,
- hideTime: 0,
- formattedTime
- })
- this.intervalGetTimer()
- }
- this.examineAuthorization()
- },
- /**
- * 生命周期函数--监听页面隐藏
- */
- onHide: function () {
- console.log('退出了这个页面,息屏了这个页面')
- let {
- status,
- timerInterval
- } = this.data
- console.log(status)
- if (status == 'inSports') {
- clearInterval(timerInterval)
- this.setActivityRunLog()
- this.setData({
- saveTime: new Date(),
- hideTime: new Date(),
- pageStatus: 'hide',
- timerInterval: null,
- })
- }
- },
- /**
- * 生命周期函数--监听页面卸载
- */
- onUnload: function () {},
- /**
- * 页面相关事件处理函数--监听用户下拉动作
- */
- onPullDownRefresh: function () {
- },
- /**
- * 页面上拉触底事件的处理函数
- */
- onReachBottom: function () {
- },
- /**
- * 用户点击右上角分享
- */
- onShareAppMessage: function () {
- },
- })
|