Browse Source

sport-home

邹能昇 2 months ago
parent
commit
5db6dd0287

+ 30 - 0
nova-werun/pages/home/sport/sport-home/index.js

@@ -1,4 +1,6 @@
 // nova-werun/pages/home/sport/sport-home/index.js
+const Parse = getApp().Parse;
+const company = getApp().globalData.company;
 Page({
 
     /**
@@ -19,6 +21,8 @@ Page({
         longitude: 0,
         latitude: 0,
         markers: [],
+        //
+        distance:0
     },
 
     /**
@@ -50,6 +54,7 @@ Page({
         }
         //地图
         this.Getlocation()
+        this.getwalk(0)
     },
 
     /**
@@ -181,11 +186,36 @@ Page({
         }
 
     },
+    //切换
     switchTab (e) {
         const index = e.currentTarget.dataset.index;
         this.setData({
           currentTab: index
         });
+        this.getwalk(index)
         console.log(this.data.currentTab);
       },
+      //获取行走公里
+     async getwalk(index){
+        const currentUser = Parse.User.current();
+        let ActivityDataquery = new Parse.Query('ActivityData');
+        ActivityDataquery.equalTo('user', currentUser.id);
+        ActivityDataquery.equalTo('company', company);
+        if(index==0){
+            ActivityDataquery.equalTo('type', 'walk');
+        }else{
+            ActivityDataquery.equalTo('type', 'run');
+        }
+        ActivityDataquery.notEqualTo('isDeleted', true);
+        let r = await ActivityDataquery.find();
+        let List = r.map(item => item.toJSON());
+        let distance = 0
+        List.forEach(item=>{
+            distance =  Number(item.distance)+distance
+        })
+        this.setData({
+            distance,
+        })
+        console.log('距离',this.data.distance);
+      }
 })

+ 2 - 2
nova-werun/pages/home/sport/sport-home/index.wxml

@@ -13,7 +13,7 @@
     <view wx:if="{{currentTab == 0}}">
             <view class="textbox">
                 <view class="text">今日积累行走</view>
-                <view class="number" data-url="../../statistics/index"  bindtap="gourl">7公里 ></view>
+                <view class="number" data-url="../../statistics/index"  bindtap="gourl">{{distance}}公里 ></view>
             </view>
             <view class="mapbox">
                 <view class="map">
@@ -26,7 +26,7 @@
     <view wx:if="{{currentTab == 1}}">
             <view class="textbox">
                 <view class="text">今日积累跑步</view>
-                <view class="number" data-url="../../statistics/index"  bindtap="gourl">10公里 ></view>
+                <view class="number" data-url="../../statistics/index"  bindtap="gourl">{{distance}}公里 ></view>
             </view>
             <view class="mapbox">
                 <view class="map">

+ 1 - 1
nova-werun/pages/home/statistics/index.js

@@ -73,7 +73,7 @@ Page({
         this.echartsComponnet = this.selectComponent('#mychart')
         await this.initChart()
     },
-
+    //图表
     // 将 initChart 定义在 Page 上下文中
     initChart() {
         if (this.chart) {