调整
Some checks failed
Docker Build & Deploy / Build Docker Image (push) Failing after 9s
Docker Build & Deploy / Deploy to Production (push) Has been skipped

This commit is contained in:
2025-12-27 22:05:50 +08:00
parent 3b5675d50d
commit 1a805e51f7
6 changed files with 183 additions and 101 deletions

View File

@@ -12,6 +12,7 @@
<h3>交易详情</h3>
</div>
<div class="scroll-area">
<van-form @submit="onSubmit">
<van-cell-group inset>
<van-cell title="卡号" :value="transaction.card" />
@@ -102,6 +103,7 @@
</van-button>
</div>
</van-form>
</div>
</div>
</van-popup>
@@ -334,13 +336,27 @@ const formatDate = (dateString) => {
<style scoped>
.transaction-detail {
padding-bottom: 20px;
display: flex;
flex-direction: column;
height: 100%;
}
.detail-header {
flex-shrink: 0;
border-bottom: 1px solid #ebedf0;
}
.detail-header h3 {
margin: 10px 0;
}
.scroll-area {
flex: 1;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
padding-bottom: 20px;
}
.classify-buttons {
display: flex;
flex-wrap: wrap;