|
@@ -32,8 +32,9 @@
|
|
</swiper>
|
|
</swiper>
|
|
</view>
|
|
</view>
|
|
<view
|
|
<view
|
|
|
|
+ v-if="isTopHeight"
|
|
class="lable-select-content"
|
|
class="lable-select-content"
|
|
- :style="{ 'background-color': isScrollNumber >= 175 ? '#fff' : '#f5f6fa', 'box-shadow': isScrollNumber >= 175 ? '0px 8rpx 8rpx -8rpx rgba(0, 0, 0, 0.16)' : '' }"
|
|
|
|
|
|
+ :style="[{ top: isTopHeight }, { 'background-color': isScrollNumber >= 175 ? '#fff' : '#f5f6fa' }, { 'box-shadow': isScrollNumber >= 175 ? '0rpx 3rpx 8rpx 0rpx rgba(0, 0, 0, 0.16)' : '' }]"
|
|
>
|
|
>
|
|
<view class="lable-row" v-for="(item, index) in lableIsRows" :key="index">
|
|
<view class="lable-row" v-for="(item, index) in lableIsRows" :key="index">
|
|
<view :class="['lable-item', lable.isAct && 'item-active']" v-for="lable in item" :key="lable.TagId" @click="lableKeysHandler(lable)">
|
|
<view :class="['lable-item', lable.isAct && 'item-active']" v-for="lable in item" :key="lable.TagId" @click="lableKeysHandler(lable)">
|
|
@@ -134,6 +135,7 @@ export default {
|
|
isScrollNumber: 0,
|
|
isScrollNumber: 0,
|
|
dataListLable: [], // 标签的数据
|
|
dataListLable: [], // 标签的数据
|
|
actIdLable: "", // 标签选择后的ID
|
|
actIdLable: "", // 标签选择后的ID
|
|
|
|
+ isTopHeight: "",
|
|
};
|
|
};
|
|
},
|
|
},
|
|
computed: {
|
|
computed: {
|
|
@@ -348,6 +350,8 @@ export default {
|
|
this.getBannerList();
|
|
this.getBannerList();
|
|
this.getNewList();
|
|
this.getNewList();
|
|
this.homeTagListCustom();
|
|
this.homeTagListCustom();
|
|
|
|
+ let menuButtonInfo = uni.getMenuButtonBoundingClientRect();
|
|
|
|
+ this.isTopHeight = menuButtonInfo.height + menuButtonInfo.top + 7 + "px";
|
|
},
|
|
},
|
|
onShow() {
|
|
onShow() {
|
|
this.getUserInfo();
|
|
this.getUserInfo();
|
|
@@ -525,7 +529,7 @@ export default {
|
|
.lable-select-content {
|
|
.lable-select-content {
|
|
position: sticky;
|
|
position: sticky;
|
|
left: 0;
|
|
left: 0;
|
|
- top: 175rpx;
|
|
|
|
|
|
+ top: 88px;
|
|
overflow: hidden;
|
|
overflow: hidden;
|
|
overflow-x: auto;
|
|
overflow-x: auto;
|
|
width: 100%;
|
|
width: 100%;
|