diff --git a/pages.json b/pages.json index 7d7e74b..0b107fb 100644 --- a/pages.json +++ b/pages.json @@ -334,7 +334,7 @@ "style": { "navigationBarTitleText": "里海云仓", "navigationStyle": "custom", - "enablePullDownRefresh": false + "enablePullDownRefresh": true } }, { diff --git a/pages/cloud_warehouse/market/market.vue b/pages/cloud_warehouse/market/market.vue index 231b5e5..6d3c7a4 100644 --- a/pages/cloud_warehouse/market/market.vue +++ b/pages/cloud_warehouse/market/market.vue @@ -4,7 +4,6 @@ } .wholeSale { - background-color: #f8fafb !important; .wholeSale-header-search-wrap { padding: 30rpx 20rpx 0; @@ -17,47 +16,75 @@ z-index: 100; margin-bottom: 20rpx; background-color: #40AE36; - - .scrollview { - display: flex; - align-items: center; - height: 98rpx; - padding-left: 32rpx; - - .scrollview-item { - margin-right: 30rpx; - font-size: 28rpx; - color: #FFFFFF; - } - - .scrollview-active { - position: relative; - font-weight: bold; - font-size: 36rpx; - color: #FFFFFF; - - &::after { - content: ""; - display: inline-block; - position: absolute; - bottom: -6rpx; - left: 50%; - transform: translateX(-50%); - width: 100%; - height: 6rpx; - background-color: #FFFFFF; - } - } - } } - .wholeSale-nav { - display: flex; - align-items: center; - margin-bottom: 40rpx; + .wholeSale-section { + position: sticky; + top: calc(82rpx + var(--status-bar-height)); + padding: 0rpx 20rpx; + background-color: #fff; + transition: height .7s; + overflow: hidden; + margin-bottom: 20rpx; - .icon { - margin-right: 20rpx; + .wholeSale-nav { + display: flex; + align-items: center; + margin-bottom: 40rpx; + + .icon { + margin-right: 20rpx; + } + } + + .category { + width: 100%; + overflow: auto; + margin-bottom: 20rpx; + + .category-wrap { + display: flex; + padding-bottom: 20rpx; + + .category-item { + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + margin-right: 38rpx; + + text { + margin-top: 16rpx; + font-size: 24rpx; + color: #666666; + white-space: nowrap; + } + + .category-item-text { + width: 120rpx; + text-align: center; + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; + } + } + + .category-item-active { + position: relative; + + .category-item-img { + border: 2px solid #40AE36; + border-radius: 50%; + } + + text { + background-color: #40AE36; + color: #fff; + padding: 2rpx 10rpx 6rpx 10rpx; + border-radius: 50rpx; + } + } + } } } @@ -97,111 +124,7 @@ } } - .category { - width: 100%; - overflow: auto; - margin-bottom: 20rpx; - .category-wrap { - display: flex; - padding-bottom: 20rpx; - - .category-item { - display: flex; - flex-direction: column; - justify-content: center; - align-items: center; - margin-right: 38rpx; - - text { - margin-top: 16rpx; - font-size: 24rpx; - color: #666666; - white-space: nowrap; - } - - .category-item-text { - width: 120rpx; - text-align: center; - overflow: hidden; - white-space: nowrap; - text-overflow: ellipsis; - } - } - - .category-item-active { - position: relative; - - .category-item-img { - border: 2px solid #40AE36; - border-radius: 50%; - } - - text { - background-color: #40AE36; - color: #fff; - padding: 2rpx 10rpx 6rpx 10rpx; - border-radius: 50rpx; - } - } - } - } - - .cate { - width: 100%; - overflow: auto; - margin-bottom: 30rpx; - - .cate-wrap { - display: flex; - padding-bottom: 8rpx; - - .cate-item { - - text { - padding: 4rpx 16rpx; - white-space: nowrap; - font-size: 30rpx; - color: #333; - } - } - - .cate-item-active { - text { - color: #40AE36; - font-weight: bold; - } - } - } - } - - .comprehensive { - display: flex; - justify-content: space-between; - align-items: center; - padding: 0 50rpx; - - [class^=comprehensive-] { - display: flex; - align-items: center; - - text { - margin-right: 12rpx; - font-size: 26rpx; - color: #666666; - } - - image { - width: 28rpx; - height: 28rpx; - } - - .loudou { - width: 24rpx; - height: 24rpx; - } - } - } .wholeSale-con { margin: 0 20rpx; @@ -209,6 +132,7 @@ .goods_list { padding-bottom: 30rpx; + background-color: #f8fafb; .goods { width: 710rpx; @@ -334,9 +258,8 @@ @@ -494,7 +417,10 @@ type_id: '10,12,21,24', merchant_category_id: '', location: '' - } + }, + wrapHeight: 300, + isShowSmall: false, + scrollTop: 0, } }, computed: { @@ -531,6 +457,23 @@ this.storeMerchantList(true); }, methods: { + scrolltoupper() { + this.storeMerchantList(true); + }, + + onScrollBottom(e) { + this.storeMerchantList(); + }, + + onScroll(e) { + if (this.scrollTop >= e.target.scrollTop) { //上拉 + this.wrapHeight = 300; + } else { + this.wrapHeight = 0; + } + this.scrollTop = e.target.scrollTop; + }, + navTo(url) { uni.navigateTo({ url: url,