This commit is contained in:
2025-10-30 17:17:15 +08:00
parent 6579abe021
commit 7369be7fce
11 changed files with 57 additions and 24 deletions

View File

@@ -14,7 +14,7 @@
</view>
</view>
</view>
<view class="u-menu-wrap" :style="{height: winHeight - barHeight - 99 + 'px'}">
<view class="u-menu-wrap" :style="{height: winHeight - barHeight - loginHeight + 'px'}">
<scroll-view scroll-y scroll-with-animation class="u-tab-view menu-scroll-view" :scroll-top="scrollTop" :scroll-into-view="itemId">
<view v-for="(item,index) in jobList" :key="index" class="u-tab-item"
:class="[current == index ? 'u-tab-item-active' : '']" @tap.stop="swichMenu(index)">
@@ -75,14 +75,16 @@
showTip: false, //数据弹窗
layerTitile: "",
layerDesc: "",
loginHeight:99,
}
},
onLoad(e) {
if(this.user == undefined || this.user == null){
this.isVisitor = true;
this.loginHeight=99;
}else {
this.isVisitor = false;
this.loginHeight=0;
}
this.scrollRightTop = 1;
},