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 @@ - - + @@ -151,11 +150,28 @@ - + + + + + + + {{item.cate_name}} + + + + + + + + :style="{'width':'calc(100vw - 152rpx)','padding-top':(!!asideCurr?'94rpx' :'')}"> @@ -197,7 +213,8 @@ - + {{loadTitle}} @@ -224,7 +241,8 @@ - + {{loadTitle}} @@ -373,7 +391,7 @@ navShow: false, navActive: 0, diyActive: 0, - tabActive: '', // 底部切换 + tabActive: 3, // 底部切换 isCoupon: 0, keyword: '', order: '', @@ -470,7 +488,11 @@ asideCurr: '', CartCount: 0, navHeight: 0, - listTop: 0 + listTop: 0, + mer_type: '', //区分云仓 + secondTabList: [], + secondTabCurr: '', //二级分类 + isChangeSecTabStyle: false } }, computed: { @@ -527,6 +549,7 @@ break; case 7: this.resetParmas(); + this.getMerClassifly(); this.goods = []; this.getGoods(); break; @@ -557,8 +580,9 @@ } } // #endif + // 店铺详情 this.getStore(); - this.diyData(); + // this.diyData(); shareScence(this.currSpid, this.isLogin); this.initHeight(); @@ -579,6 +603,8 @@ }) this.getMerClassifly(); + + // 购物车 this.getCart(); }, @@ -617,31 +643,99 @@ getCartCounts({ sale_type: this.where.sale_type }).then(res => { - console.log(res) that.CartCount = res.data[0].count; }); }, // 修改菜单 onChangeAsideMenu(e) { + // 获取二级分类 + this.getMerClassifly(e) this.asideCurr = e; this.resetParmas(); this.goods = []; this.loadend = false; + //重置二级菜单 + this.secondTabCurr = ''; + this.isChangeSecTabStyle = false; + }, + + // 获取分类 + getMerClassifly(pid) { + const param = { + mer_type: 2, + sale_type: this.where.sale_type, + mer_id: '', + mer_type: '', + pid: pid + }; + + // 云商品(不查询分类下边没有商品的分类) + if (this.tabActive == 7) { + param.mer_type = 1; + param.mer_id = ''; + } + //一般商品(不查询分类下边没有商品的分类) + if (this.tabActive == 3) { + param.mer_id = this.id; + param.mer_type = 2; + } + + getCategoryIndexList(param).then(res => { + //二级分类 + if (pid) { + this.secondTabList = [{ + cate_name: '全部', + store_category_id: '' + }, ...res.data]; + } else { //一级分类 + this.asideMenu = [{ + cate_name: '全部', + store_category_id: '' + }, ...res.data]; + } + this.getGoods(); + }) + }, + + // 二级分类 + onSecondTabChange(e) { + this.isChangeSecTabStyle = false; + this.secondTabCurr = e; + this.resetParmas(); + this.goods = []; + this.loadend = false; this.getGoods(); }, - // 获取分类 - getMerClassifly() { - getCategoryIndexList({ - mer_type: 2, - sale_type: this.where.sale_type - }).then(res => { - this.asideMenu = [{ - cate_name: '全部', - store_category_id: '' - }, ...res.data]; - }) + // 商铺底部切换 + tab: function(param) { + if (param == 9) return uni.switchTab({ + url: "/pages/order_addcart/order_addcart" + }); + + this.tabActive = param; + this.goodsLoading = this.loadend = this.loading = false; + + // 底部tab切换 + this.secondTabCurr = ''; + this.secondTabList = []; + this.asideCurr = ''; + this.asideMenu = []; + this.loadend = false; + this.getMerClassifly(); + }, + + // 二级类目样式 + onChangeSecTabStyle() { + this.isChangeSecTabStyle = !this.isChangeSecTabStyle; + }, + + // 商铺首页滚动 navbar 吸顶 + scrollHome: function(e) { + console.log(1) + // uni.$emit('scroll'); + // this.navShow = e.detail.scrollTop >= 50; }, navTo(url) { @@ -862,7 +956,6 @@ }, // 获取商铺商品 getGoods: function() { - console.log(2) let that = this; if (that.loadend) return; if (that.loading) return; @@ -870,7 +963,11 @@ that.goodsLoading = true; that.loadTitle = ''; - that.where.cate_pid = that.asideCurr; + + if (that.secondTabCurr) //有二级查二级 + that.where.cate_pid = that.secondTabCurr; + else //无二级查一级 + that.where.cate_pid = that.asideCurr; if (this.tabActive == 7) getStoreCloudGoods(that.id, that.where).then(res => { that.goodsLoading = false; @@ -1079,11 +1176,6 @@ } }) }, - // 商铺首页滚动 navbar 吸顶 - scrollHome: function(e) { - // uni.$emit('scroll'); - // this.navShow = e.detail.scrollTop >= 50; - }, goback: function() { uni.navigateBack(); @@ -1095,16 +1187,6 @@ }); }, - // 商铺底部切换 - tab: function(param) { - console.log(param) - if (param == 9) return uni.switchTab({ - url: "/pages/order_addcart/order_addcart" - }) - this.tabActive = param; - this.goodsLoading = this.loadend = this.loading = false - }, - resetParmas() { this.navActive = 0; this.where = { @@ -1112,7 +1194,8 @@ keyword: '', page: 1, limit: 30, - sale_type: this.where.sale_type + sale_type: this.where.sale_type, + cate_pid: '' } }, @@ -1163,6 +1246,7 @@ } }, onPageScroll() { + this.isChangeSecTabStyle = false; uni.$emit('scroll'); }, onPullDownRefresh() { @@ -1177,6 +1261,56 @@