修改服务页的跳转问题

This commit is contained in:
zhouyanli
2026-04-20 08:46:02 +08:00
parent 445e44b3d9
commit fc7ef36a93
8 changed files with 134 additions and 327 deletions

View File

@@ -7,6 +7,11 @@
:refresher-triggered="refreshing"
:style="{ height: `calc(100vh - ${statusBarHeight + navBarHeight}px)` }"
>
<view class="status_bar"></view>
<!-- 顶部标题栏 -->
<view class="top-bar">
<uni-nav-bar left-icon="left" title="通知公告" backgroundColor ="none" :border="false" @clickLeft="narBack" />
</view>
<!-- 下拉刷新 -->
<view class="refresh-container" v-if="refreshing">
<uni-icons type="spinner-cycle" size="20" color="#999" class="loading"></uni-icons>
@@ -115,6 +120,15 @@
url:'/pages/notice-list/noticeListDetails'
})
}
// 返回
const narBack = () =>{
// uni.navigateBack({
// delta: 1
// })
uni.switchTab({
url:"/pages/index/index"
})
}
</script>
@@ -125,6 +139,15 @@
box-sizing: border-box;
background-color: #f9f9f9;
}
.status_bar {
height: 32px;
width: 100%;
}
/* 顶部标题 */
.top-bar {
text-align: center;
margin-bottom: 20rpx;
}
/* 下拉刷新 */
.refresh-container {