From 4ae45b3e09747a325141927635fbde9d397655cb Mon Sep 17 00:00:00 2001 From: rca Date: Mon, 22 Jul 2024 06:05:33 +0900 Subject: [PATCH] =?UTF-8?q?=E3=83=81=E3=82=A7=E3=83=83=E3=82=AF=E3=83=9C?= =?UTF-8?q?=E3=83=83=E3=82=AF=E3=82=B9=E3=81=AB=E5=AF=BE=E5=BF=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/WalletComponent.vue | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/components/WalletComponent.vue b/src/components/WalletComponent.vue index 542ac0d..d7bb6ba 100644 --- a/src/components/WalletComponent.vue +++ b/src/components/WalletComponent.vue @@ -1,7 +1,7 @@ @@ -23,7 +23,13 @@ const props = defineProps(); const histories = ref([] as HistoryItem[]); -getHistories(props.childId, true).then((res) => { +const changeContainPaid = (value: boolean) => { + getHistories(props.childId, value).then((res) => { + histories.value = res; + }); +}; + +getHistories(props.childId, false).then((res) => { histories.value = res; });