dreamnight пре 5 година
родитељ
комит
ed8fa47fea
2 измењених фајлова са 3 додато и 1 уклоњено
  1. 2 1
      src/components/fixedBottom.vue
  2. 1 0
      src/pages/index.vue

+ 2 - 1
src/components/fixedBottom.vue

@@ -27,7 +27,8 @@ export default {
 <style lang="scss" scoped>
   .fixed-btn-main {
     position: fixed;
-    bottom: env(safe-area-inset-bottom);
+    bottom: 0;
+    padding-bottom: env(safe-area-inset-bottom);
     width: 100%;
     box-shadow: 0 0 8px 0 rgba($color: #000000, $alpha: 0.1);
   }

+ 1 - 0
src/pages/index.vue

@@ -200,6 +200,7 @@ export default {
         this.activityList = this.activityList.concat(data.rows)
         this.isLoadMore = this.total !== this.activityList.length
       }
+      uni.stopPullDownRefresh()
     },
     // 活动类型切换
     tabsChange (index) {