From ef52095f5e9f0a9fe2da779bb1573947d77d75b6 Mon Sep 17 00:00:00 2001
From: jhzh <1628036192@qq.com>
Date: Fri, 22 May 2026 10:53:01 +0800
Subject: [PATCH] 1

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

diff --git a/src/views/cryptos/AccountChange/index.vue b/src/views/cryptos/AccountChange/index.vue
index 3624b69..8c9f300 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 }}
+                    (UTC+8)
+                  </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>
@@ -179,8 +182,14 @@
 </script>
 <style lang="scss" scoped>
 @import "@/assets/init.scss";
-
+:deep(.app-content-wrap){
+  background-color: #F6F5FA !important;
+}
+.app-root{
+  background-color: #fff !important;
+}
 #cryptos {
+  // background-color: #fff;
   :deep(.van-tabs__wrap) {
     // height: 88px !important;
     border-bottom: 1px solid $icon-bg;
@@ -197,13 +206,17 @@
   .accountChange {
     width: 100%;
     box-sizing: border-box;
-
+    background-color: #F6F5FA !important;
     :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