From 83e07be898635f88c8bf83f02f85b9c0d1b5b4fd Mon Sep 17 00:00:00 2001 From: Moriz Wahl Date: Fri, 2 Jul 2021 17:27:04 +0200 Subject: [PATCH] decay information component --- frontend/src/components/DecayInformation.vue | 19 ++ .../src/views/Layout/DashboardLayout_gdd.vue | 2 +- .../AccountOverview/GddTransactionList.vue | 221 ++++++++++-------- 3 files changed, 139 insertions(+), 103 deletions(-) create mode 100644 frontend/src/components/DecayInformation.vue diff --git a/frontend/src/components/DecayInformation.vue b/frontend/src/components/DecayInformation.vue new file mode 100644 index 000000000..5a5e8306d --- /dev/null +++ b/frontend/src/components/DecayInformation.vue @@ -0,0 +1,19 @@ + + diff --git a/frontend/src/views/Layout/DashboardLayout_gdd.vue b/frontend/src/views/Layout/DashboardLayout_gdd.vue index 14456605b..517773892 100755 --- a/frontend/src/views/Layout/DashboardLayout_gdd.vue +++ b/frontend/src/views/Layout/DashboardLayout_gdd.vue @@ -128,7 +128,7 @@ export default { if (result.success) { this.GdtBalance = Number(result.result.data.gdtSum) this.transactions = result.result.data.transactions - console.log("this.transactions => ", this.transactions[1].decay.decay_start) + console.log('this.transactions => ', this.transactions[1].decay.decay_start) this.balance = Number(result.result.data.decay) this.bookedBalance = Number(result.result.data.balance) this.transactionCount = result.result.data.count diff --git a/frontend/src/views/Pages/AccountOverview/GddTransactionList.vue b/frontend/src/views/Pages/AccountOverview/GddTransactionList.vue index e3c2252bd..fdced417d 100644 --- a/frontend/src/views/Pages/AccountOverview/GddTransactionList.vue +++ b/frontend/src/views/Pages/AccountOverview/GddTransactionList.vue @@ -1,12 +1,12 @@