修改样式

This commit is contained in:
xuli3099
2025-08-22 15:55:18 +08:00
parent d6053ec1aa
commit 711785fe8e
6 changed files with 88 additions and 55 deletions

View File

@@ -21,7 +21,7 @@
<!-- 待办内容 -->
<view class="backlog-bg">
<view class="backlog-b-item">
<view class="backlog-b-item" @click="handleJump('/pages/notice/notice',1)">
<view class="font-number">{{ backBlogObj.count1 }}</view>
<view class="font-title">待办</view>
</view>
@@ -136,7 +136,7 @@
<!-- 底部加高度来避免tabbar遮挡 -->
<view class="bottom-height"></view>
</mescroll-uni>
</view>
</view>
</view>
</template>
@@ -326,10 +326,14 @@ const getCommonServices = async ()=>{
let data = await getUserFavorite({});
commonServiceList.value = data || []
}
// 跳转
let handleJump=(url)=>{
// 跳转 type:1-tabbar
let handleJump=(url,type)=>{
if(url){
if(type==1){
uni.switchTab({url});
}else{
uni.navigateTo({ url })
}
}
}