fix
All checks were successful
Docker Build & Deploy / Build Docker Image (push) Successful in 16s
Docker Build & Deploy / Deploy to Production (push) Successful in 6s
Docker Build & Deploy / Cleanup Dangling Images (push) Successful in 1s
Docker Build & Deploy / WeChat Notification (push) Successful in 1s

This commit is contained in:
SunCheng
2026-02-20 14:57:19 +08:00
parent 6e95568906
commit 32d5ed62d0
27 changed files with 1520 additions and 1114 deletions

View File

@@ -209,10 +209,10 @@
</div>
<!-- 关联账单列表弹窗 -->
<PopupContainer
v-model="showBillListModal"
<PopupContainerV2
v-model:show="showBillListModal"
title="关联账单列表"
height="75%"
:height="'75%'"
>
<BillListComponent
data-source="custom"
@@ -225,7 +225,7 @@
@click="handleBillClick"
@delete="handleBillDelete"
/>
</PopupContainer>
</PopupContainerV2>
</div>
<!-- 不记额预算卡片 -->
@@ -406,10 +406,10 @@
</div>
<!-- 关联账单列表弹窗 -->
<PopupContainer
v-model="showBillListModal"
<PopupContainerV2
v-model:show="showBillListModal"
title="关联账单列表"
height="75%"
:height="'75%'"
>
<BillListComponent
data-source="custom"
@@ -422,14 +422,14 @@
@click="handleBillClick"
@delete="handleBillDelete"
/>
</PopupContainer>
</PopupContainerV2>
</div>
</template>
<script setup>
import { computed, ref } from 'vue'
import { BudgetPeriodType } from '@/constants/enums'
import PopupContainer from '@/components/PopupContainer.vue'
import PopupContainerV2 from '@/components/PopupContainerV2.vue'
import BillListComponent from '@/components/Bill/BillListComponent.vue'
import { getTransactionList } from '@/api/transactionRecord'