样式统一
Some checks failed
Docker Build & Deploy / Build Docker Image (push) Failing after 6s
Docker Build & Deploy / Deploy to Production (push) Has been skipped

This commit is contained in:
孙诚
2025-12-30 17:02:30 +08:00
parent 8ba279e957
commit 1f01d13ed3
15 changed files with 1528 additions and 929 deletions

View File

@@ -59,19 +59,12 @@
/>
<!-- 记录列表弹窗 -->
<van-popup
v-model:show="showRecordsList"
position="bottom"
:style="{ height: '80%' }"
round
closeable
<PopupContainer
v-model="showRecordsList"
title="交易记录列表"
height="80%"
>
<div class="popup-container">
<div class="popup-header-fixed">
<h3>交易记录列表</h3>
</div>
<div class="popup-scroll-content" style="background: var(--van-background, #f7f8fa);">
<div style="background: var(--van-background, #f7f8fa);">
<!-- 批量操作按钮 -->
<div class="batch-actions">
<van-button
@@ -114,9 +107,8 @@
:show-delete="false"
/>
</div>
</div>
</div>
</van-popup>
</PopupContainer>
</div>
</template>
@@ -127,6 +119,7 @@ import { showToast, showConfirmDialog } from 'vant'
import { nlpAnalysis, batchUpdateClassify } from '@/api/transactionRecord'
import TransactionList from '@/components/TransactionList.vue'
import TransactionDetail from '@/components/TransactionDetail.vue'
import PopupContainer from '@/components/PopupContainer.vue'
const router = useRouter()
const userInput = ref('')