产品化: 统一title

This commit is contained in:
zhonghua1
2025-12-27 14:40:42 +08:00
parent 46e793d4da
commit f93affb4a4
9 changed files with 694 additions and 289 deletions

View File

@@ -4,12 +4,12 @@
<statusBar></statusBar>
<!-- #endif -->
<!-- 头部返回 + 标题AI销售管理 -->
<!-- 头部返回 + 标题"AI销管系统" -->
<view class="page-header">
<view class="page-header__back" @tap="onBack">
<text class="page-header__back-icon"></text>
</view>
<text class="page-header__title">AI销售管理</text>
<text class="page-header__title">AI销管系统</text>
<!-- 占位使标题居中 -->
<view class="page-header__right"></view>
</view>
@@ -356,6 +356,8 @@
.page-container {
padding: 0 24rpx 32rpx;
position: relative;
min-height: 100vh;
}
.filter-row {
@@ -466,7 +468,14 @@
}
.scroll-area {
max-height: calc(100vh - 120rpx);
/* 高度计算100vh - 导航栏(88rpx) - filter-row和tab-switch(约120rpx) - 底部导航栏(96rpx) - container padding(32rpx) */
/* 使用绝对定位从tab-switch底部开始到底部导航栏结束 */
position: absolute;
top: 208rpx; /* 导航栏(88rpx) + filter-row(约40rpx) + tab-switch(80rpx) = 208rpx */
left: 24rpx;
right: 24rpx;
bottom: 96rpx; /* 底部导航栏高度 */
box-sizing: border-box;
}
.card-list {