diff --git a/App.vue b/App.vue
index e4cda22..3705ce8 100644
--- a/App.vue
+++ b/App.vue
@@ -1,591 +1,598 @@
\ No newline at end of file
diff --git a/pages/index/index.vue b/pages/index/index.vue
index 8405a05..d692330 100644
--- a/pages/index/index.vue
+++ b/pages/index/index.vue
@@ -522,18 +522,26 @@
diyId: 0,
preview: false,
isSupport: true,
+ isIndexClick: true,
+ scrollTop: 0
};
},
onTabItemTap(e) {
- uni.pageScrollTo({
- scrollTop: 0,
- duration: 300
- });
+ if (this.isIndexClick) {
+ uni.pageScrollTo({
+ scrollTop: 0,
+ duration: 300
+ });
+ } else {
+ this.isIndexClick = true;
+ }
},
// 滚动监听
onPageScroll(e) {
+ this.isIndexClick = true;
+ this.scrollTop = e.scrollTop;
this.isFixed = e.scrollTop > 40;
if (this.isHeaderSerch) {
let isScroll = false
@@ -545,7 +553,6 @@
// 传入scrollTop值并触发所有easy-loadimage组件下的滚动监听事件
uni.$emit('scroll');
-
if (e.scrollTop >= 100) {
uni.setTabBarItem({
index: 0,
@@ -612,7 +619,8 @@
this.activeRouter = '/' + curRoute
},
onShow() {
- let that = this
+ let that = this;
+
that.isIntegral = uni.getStorageSync('isIntegral')
// #ifdef APP-PLUS
if (that.appUpdate.openUpgrade == '1') {
@@ -628,6 +636,8 @@
that.isScrolled = res[0].top <= -60
})
})
+ this.isIndexClick = false;
+
if (this.isLogin) {
this.getUserInfo();
}
diff --git a/pages/store/home/index.vue b/pages/store/home/index.vue
index b0502f7..859c921 100644
--- a/pages/store/home/index.vue
+++ b/pages/store/home/index.vue
@@ -2,7 +2,6 @@