邹能昇 2 月之前
父节点
当前提交
415be6e94b
共有 1 个文件被更改,包括 14 次插入16 次删除
  1. 14 16
      nova-werun/pages/home/sport/sport-home/index.js

+ 14 - 16
nova-werun/pages/home/sport/sport-home/index.js

@@ -54,7 +54,7 @@ Page({
         }
         //地图
         this.Getlocation()
-        this.getwalk(0)
+        this.getwalk()
     },
 
     /**
@@ -190,31 +190,29 @@ Page({
 
     },
     //切换
-    switchTab (e) {
-        const index = e.currentTarget.dataset.index;
-        this.setData({
-          currentTab: index
-        });
-        this.getwalk(index)
-        console.log(this.data.currentTab);
-      },
+    // switchTab (e) {
+    //     const index = e.currentTarget.dataset.index;
+    //     this.setData({
+    //       currentTab: index
+    //     });
+    //     this.getwalk(index)
+    //     console.log(this.data.currentTab);
+    //   },
       //获取行走公里
-     async getwalk(index){
+     async getwalk(){
         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);
+        ActivityDataquery.notEqualTo('type', 'activity');
         let r = await ActivityDataquery.find();
         let List = r.map(item => item.toJSON());
         let distance = 0
         List.forEach(item=>{
-            distance =  Number(item.distance)+distance
+            if(item.distance){
+                distance =  Number(item.distance)+distance
+            }
         })
         this.setData({
             distance,