From bd7dd96c732ded6854d47bf77f65e5c64d3d15e2 Mon Sep 17 00:00:00 2001 From: zhengyiming <540361168@qq.com> Date: 星期三, 21 五月 2025 13:24:09 +0800 Subject: [PATCH] fix: 修改ui --- apps/taro/src/components/Layout/PageLayout.vue | 26 +++++++++++++++----------- 1 files changed, 15 insertions(+), 11 deletions(-) diff --git a/apps/taro/src/components/Layout/PageLayout.vue b/apps/taro/src/components/Layout/PageLayout.vue index 0117384..84a15dd 100644 --- a/apps/taro/src/components/Layout/PageLayout.vue +++ b/apps/taro/src/components/Layout/PageLayout.vue @@ -1,6 +1,6 @@ <template> <Portal.Host> - <div :class="['page-layout-wrapper', { isWeb: isWeb }]" v-bind="$attrs"> + <div :class="['page-layout-wrapper', { isWeb: isWeb, hasBgColor }]" v-bind="$attrs"> <slot v-if="_showNavigationBar" name="navigationBar"> <CommonNavigationBar v-bind="_commonNavigationBarProps" /> </slot> @@ -10,7 +10,7 @@ v-if="hasLinearBg" class="page-layout-linear-bg" :style="{ - height: Taro.pxTransform(props.linearBgHeight), + height: '100%', }" ></div> </slot> @@ -42,7 +42,7 @@ import { useSystemStore } from '@/stores/modules/system'; import Taro from '@tarojs/taro'; import { TabBarPageRouter } from '@/constants'; -import { useAuth } from '@/hooks'; +import { useAuth, useTabRouteEnhance } from '@/hooks'; import { Portal } from 'senin-mini/components'; import { usePickProps } from 'senin-mini/hooks'; import { isWeb, isInAlipay, isInWeChat } from '@/utils/env'; @@ -72,9 +72,15 @@ type: Number, default: 388, }, + hasBgColor: { + type: Boolean, + default: false, + }, }); setPageTitle(props.title); + +useTabRouteEnhance(); const _commonNavigationBarProps = usePickProps(props, commonNavigationBarProps); @@ -117,7 +123,11 @@ @import '@/styles/common.scss'; .page-layout-wrapper { - // background-color: $body-background-color; + /* background-color: $body-background-color; */ + + &.hasBgColor { + background-color: $body-background-color; + } .page-layout-scroll-view-wrapper { display: flex; @@ -134,13 +144,7 @@ top: 0; left: 0; width: 100%; - background: linear-gradient( - 180deg, - boleGetCssVar('color', 'primary') 0%, - #5a86f6 56%, - #f9f9fb 100% - ); - filter: blur(0px); + background: linear-gradient(180deg, #7cd0ff 0%, rgba(255, 255, 255, 0) 43%, #ffffff 100%); border-radius: 0px 0px 20px 20px; } -- Gitblit v1.9.1