From f0c4104de3ea56f196ff7a366e379283fb37ec8c Mon Sep 17 00:00:00 2001
From: 李凌 <344137771@qq.com>
Date: Wed, 10 Jun 2026 18:09:55 +0800
Subject: [PATCH] 1

---
 src/views/cryptos/AccountChange/index.vue |   25 ++++++++++++++++++-------
 1 files changed, 18 insertions(+), 7 deletions(-)

diff --git a/src/views/cryptos/AccountChange/index.vue b/src/views/cryptos/AccountChange/index.vue
index 3624b69..01ad5df 100644
--- a/src/views/cryptos/AccountChange/index.vue
+++ b/src/views/cryptos/AccountChange/index.vue
@@ -14,13 +14,16 @@
                 <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">
+                    {{ item.createTime }}
+                     
+                  </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>
+                <div class="font-32 text-right" :class="item.amount > 0 ? 'text-green' : 'text-red'">
+                  {{ 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>
@@ -56,7 +59,9 @@
       selectData: [
         { title: this.$t('全部'), type: '' },
         { title: this.$t('充值记录'), type: 'coin' },
-        // { title: this.$t('合约交易'), type: 'contract' },
+        { title: this.$t('交割合约'), type: 'contract' },
+        { title: this.$t('理财'), type: 'finance' },
+        { title: this.$t('闪兑'), type: 'flash' },
         { title: this.$t('币币交易'), type: 'exchange' },
       ],
       type: "",//选中类型
@@ -111,7 +116,9 @@
         finance_buy: this.$t('购买'),
         finance_back: this.$t('赎回'),
         delivery_contract_open: this.$t('交割合约建仓'),
-        delivery_contract_close: this.$t('交割合约平仓')
+        delivery_contract_close: this.$t('交割合约平仓'),
+        flash: this.$t('闪兑'),
+        exchange_flash: this.$t('闪兑'),
       }
     },
     category() {
@@ -199,11 +206,15 @@
     box-sizing: border-box;
 
     :deep(.van-tab--active .van-tab__text) {
-      color: $text_color;
+      @include themify() {
+        color: themed("text_color");
+      }
     }
 
     :deep(.van-tab__text) {
-      color: $text_color1;
+      @include themify() {
+        color: themed("text_color1");
+      }
     }
   }
 

--
Gitblit v1.9.3