From e1e51991ad91c14fa00c5cf46f95e514f676ac4d Mon Sep 17 00:00:00 2001
From: 李凌 <344137771@qq.com>
Date: Fri, 19 Sep 2025 18:58:56 +0800
Subject: [PATCH] 1

---
 src/views/cryptos/AccountChange/index.vue |   13 ++++++++-----
 1 files changed, 8 insertions(+), 5 deletions(-)

diff --git a/src/views/cryptos/AccountChange/index.vue b/src/views/cryptos/AccountChange/index.vue
index 477779f..3624b69 100644
--- a/src/views/cryptos/AccountChange/index.vue
+++ b/src/views/cryptos/AccountChange/index.vue
@@ -12,14 +12,15 @@
                 <!-- <img v-if="item.amount > 0" src="@/assets/image/assets-center/in.png" class="w-44 h-44 mr-20" />
                 <img v-else src="@/assets/image/assets-center/out.png" class="w-44 h-44 mr-20" /> -->
                 <div>
-                  <div class="font-32 textColor">{{ category[item.category] }}</div>
+                  <!-- <div class="font-32 textColor">{{ category[item.category] }}</div> -->
+                  <div class="font-32 textColor">{{ orderTypes[item.content_type] }}</div>
                   <div class="text-grey font-26 mt-6">{{ item.createTime }}(UTC+2)</div>
-                  <div class="text-grey font-26 mt-6">{{ orderTypes[item.content_type] }}</div>
+                  <!-- <div class="text-grey font-26 mt-6">{{ orderTypes[item.content_type] }}</div> -->
                 </div>
               </div>
               <div>
                 <div class="font-32 text-right" :class="item.amount > 0 ? 'text-green' : 'text-red'">{{
-                  item.amount }}&nbsp;{{ item.wallet_type.toUpperCase() }}</div>
+                  item.amount }}&nbsp;{{ (item.wallet_type || '').toUpperCase() }}</div>
                 <!-- <div class="text-grey font-28 mt-14">{{ item.createTimeStr }}</div> -->
                 <div class="text-grey font-28 mt-6 text-right">{{ item.amountAfter }}</div>
               </div>
@@ -54,8 +55,8 @@
       title: this.$t('选择账户类型'),
       selectData: [
         { title: this.$t('全部'), type: '' },
-        { title: this.$t('法币交易'), type: 'coin' },
-        { title: this.$t('合约交易'), type: 'contract' },
+        { title: this.$t('充值记录'), type: 'coin' },
+        // { title: this.$t('合约交易'), type: 'contract' },
         { title: this.$t('币币交易'), type: 'exchange' },
       ],
       type: "",//选中类型
@@ -144,6 +145,8 @@
         this.symbolType = this.$route.query.type
       }
       _fundRecord(this.type, this.page, this.symbolType).then(data => {
+        console.log("data", data);
+
         this.list = [...this.list, ...data]
         // console.log(logs)
         this.loading = false

--
Gitblit v1.9.3