From 83c04d43b5ab614785e9c60bbc421aeb228bed19 Mon Sep 17 00:00:00 2001 From: "DESKTOP-GMUNQ1B\\k" <1154079537@qq.com> Date: Wed, 17 Apr 2024 17:43:57 +0800 Subject: [PATCH] 1 --- pages/cloud_warehouse/market/market.vue | 1187 ++++++++++++----------- pages/index/index.vue | 68 +- pages/order_addcart/order_addcart.vue | 280 +++--- pages/order_pay_status/index.vue | 12 +- pages/store/home/index.vue | 318 +++--- 5 files changed, 960 insertions(+), 905 deletions(-) diff --git a/pages/cloud_warehouse/market/market.vue b/pages/cloud_warehouse/market/market.vue index d002f3e..31c6997 100644 --- a/pages/cloud_warehouse/market/market.vue +++ b/pages/cloud_warehouse/market/market.vue @@ -1,651 +1,658 @@ \ No newline at end of file diff --git a/pages/index/index.vue b/pages/index/index.vue index 50611ea..bca8934 100644 --- a/pages/index/index.vue +++ b/pages/index/index.vue @@ -89,7 +89,8 @@ + @changeRecommedTab="changeRecommedTab" showTab :indexP="true" :isLogin="isLogin" + :loading="loading"> @@ -523,6 +524,35 @@ isSupport: true }; }, + + onTabItemTap(e) { + + }, + + // 滚动监听 + onPageScroll(e) { + + this.isFixed = e.scrollTop > 40; + + // uni.setTabBarItem({ + // index: 0, + // text: "123", + // selectedIconPath: "/static/tabbar_icon/b-a.png" + // }) + + // this.$forceUpdate(); + + if (this.isHeaderSerch) { + let isScroll = false + isScroll = e.scrollTop > 50 + this.isScrolled = isScroll; + } else { + this.isScrolled = false + } + // 传入scrollTop值并触发所有easy-loadimage组件下的滚动监听事件 + uni.$emit('scroll'); + }, + /** * 用户点击右上角分享 */ @@ -1048,7 +1078,7 @@ that.hotLoading[e] = true; that.hotTitle = '加载中'; getProductHot(that.hotPage, that.hotLimit, 1, 1).then(res => { - res.data.list = this.shuffleArray(res.data.list); + res.data.list = this.shuffleArray(res.data.list); let list = res.data.list; let productList = that.hostProduct; if (!productList[e]) productList[e] = []; @@ -1082,7 +1112,7 @@ getProductslist({ ...query }).then(res => { - res.data.list = this.shuffleArray(res.data.list); + res.data.list = this.shuffleArray(res.data.list); let list = res.data.list; let productList = that.hostProduct; if (!productList[e]) productList[e] = []; @@ -1097,15 +1127,15 @@ that.$set(that, 'hotLimit', res.data.limit); }); }, - - // 数组乱序 - shuffleArray(array) { - for (let i = array.length - 1; i > 0; i--) { - const j = Math.floor(Math.random() * (i + 1)); - [array[i], array[j]] = [array[j], array[i]]; - } - return array; - }, + + // 数组乱序 + shuffleArray(array) { + for (let i = array.length - 1; i > 0; i--) { + const j = Math.floor(Math.random() * (i + 1)); + [array[i], array[j]] = [array[j], array[i]]; + } + return array; + }, getCateData() { getCateData().then(res => { @@ -1210,20 +1240,6 @@ } } }, - // 滚动监听 - onPageScroll(e) { - this.isFixed = e.scrollTop > 40; - - if (this.isHeaderSerch) { - let isScroll = false - isScroll = e.scrollTop > 50 - this.isScrolled = isScroll; - } else { - this.isScrolled = false - } - // 传入scrollTop值并触发所有easy-loadimage组件下的滚动监听事件 - uni.$emit('scroll'); - } };