fix: fix sticky bar style

This commit is contained in:
2025-09-03 15:53:43 +08:00
parent 2f7984ea2b
commit 7caa0ac208
3 changed files with 6 additions and 6 deletions

View File

@@ -1,19 +1,19 @@
@use '~@/scss/images.scss' as img;
.guide-bar-container {
padding-top: calc(60px + 20px + env(safe-area-inset-bottom));
// padding-top: calc(60px + 20px + env(safe-area-inset-bottom));
}
.guide-bar {
position: fixed;
bottom: 0;
width: 100%;
height: calc(60px + 20px + env(safe-area-inset-bottom));
height: 112px;
box-sizing: border-box;
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 12px env(safe-area-inset-bottom);
padding: 20px 12px 32px;
z-index: 999;
&-pages {

View File

@@ -39,7 +39,7 @@ const GuideBar = (props) => {
if (code === 'personal') {
url = '/pages/userInfo/myself/index'
}
Taro.navigateTo({
Taro.redirectTo({
url: url,
}).then(() => {
Taro.pageScrollTo({