页面样式统一
All checks were successful
Docker Build & Deploy / Build Docker Image (push) Successful in 15s
Docker Build & Deploy / Deploy to Production (push) Successful in 5s

This commit is contained in:
孙诚
2025-12-29 16:07:43 +08:00
parent 9719c6043a
commit cbbb0c10cb
10 changed files with 171 additions and 308 deletions

View File

@@ -64,13 +64,14 @@
position="bottom"
:style="{ height: '80%' }"
round
closeable
>
<div class="records-popup">
<div class="popup-header">
<div class="popup-container">
<div class="popup-header-fixed">
<h3>交易记录列表</h3>
<van-icon name="cross" @click="showRecordsList = false" />
</div>
<div class="popup-scroll-content" style="background: var(--van-background, #f7f8fa);">
<!-- 批量操作按钮 -->
<div class="batch-actions">
<van-button
@@ -113,6 +114,7 @@
:show-delete="false"
/>
</div>
</div>
</div>
</van-popup>
</div>
@@ -335,34 +337,6 @@ const handleSubmit = async () => {
.records-list {
padding-bottom: 20px;
overflow-y: auto;
flex: 1;
}
.records-popup {
display: flex;
flex-direction: column;
height: 100%;
background-color: var(--van-background, #f7f8fa);
}
.popup-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 16px;
background-color: var(--van-background-2, #fff);
}
.popup-header h3 {
margin: 0;
font-size: 16px;
font-weight: 500;
}
.popup-header .van-icon {
font-size: 20px;
cursor: pointer;
}
/* 设置页面容器背景色 */