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/my/assets.vue |   46 ++++++++++++++++++++++++++++++++++------------
 1 files changed, 34 insertions(+), 12 deletions(-)

diff --git a/src/views/my/assets.vue b/src/views/my/assets.vue
index c32e872..8ee427a 100644
--- a/src/views/my/assets.vue
+++ b/src/views/my/assets.vue
@@ -27,7 +27,7 @@
 
         <div class="tabbers flex justify-between mt-20 pl-1 pr-1">
             <div class="item" v-for="item in tabList" :key="item.key" @click="toPage(item.path)">
-                <img style="width: 100px;" :src="item.icon" alt="">
+                <img :src="item.icon" alt="">
                 <div class="mt-3 text-center">{{ item.name }}</div>
             </div>
         </div>
@@ -47,12 +47,12 @@
                     <span class="mr-5">{{ formatWithCommas(assetObj.capital) }}</span>
                     <van-icon name="arrow" />
                 </div>
-                <!-- <div class="assets_item flex justify-start items-center mt-14 font-bold">
+                <div class="assets_item flex justify-start items-center mt-14 font-bold">
                     <div class="icon" style="background-color: #f7b600;"></div>
                     <span class="ml-5 flex-1">{{ $t('交易账户') }}</span>
                     <span class="mr-5">{{ formatWithCommas(assetObj.contract) }}</span>
                     <van-icon name="arrow" />
-                </div> -->
+                </div>
             </van-collapse-item>
         </van-collapse>
 
@@ -105,7 +105,7 @@
 const tabList = [
     { key: 1, name: t('充值'), icon: new URL('@/assets/imgs/assets/chonbi.png', import.meta.url), path: '/cryptos/recharge/rechargeList?isForeign=true' },
     { key: 2, name: t('提现'), icon: new URL('@/assets/imgs/assets/tibi.png', import.meta.url), path: '/cryptos/Withdraw/withdrawPage' },
-    // { key: 3, name: t('划转'), icon: new URL('@/assets/imgs/assets/huazhuan.png', import.meta.url), path: '/my/transfer' },
+    { key: 3, name: t('划转'), icon: new URL('@/assets/imgs/assets/huazhuan.png', import.meta.url), path: '/my/transfer' },
     { key: 5, name: t('闪兑'), icon: new URL('@/assets/imgs/assets/sd.png', import.meta.url), path: '/cryptos/exchangePage' },
     { key: 4, name: t('账单'), icon: new URL('@/assets/imgs/assets/zd.png', import.meta.url), path: '/cryptos/accountChange' },
 ]
@@ -185,12 +185,16 @@
 
 
 <style lang="scss" scoped>
+@import '@/assets/theme/index.scss';
+
 .assets {
     min-height: 100vh;
     background: $mainbgWhiteColor;
     padding: 2.8rem 2rem 10rem 2rem;
-    $assets_title_color: #9a9a9a;
-    color: $assets_title_color;
+
+    @include themify() {
+        color: themed("text_color2");
+    }
 
     :deep(.van-cell) {
         padding-left: 0;
@@ -216,8 +220,11 @@
     }
 
     .assets_money {
-        color: $text_color4;
         font-size: 3.4rem;
+
+        @include themify() {
+            color: themed("text_color");
+        }
 
         .pricing_jj {
             font-size: 1.6rem;
@@ -249,13 +256,19 @@
 
     .assets_revenue {
         font-size: 2rem;
-        color: #646464;
         font-weight: 600;
 
+        @include themify() {
+            color: themed("text_color1");
+        }
+
         span {
-            color: #6e6e6e;
             text-decoration: underline dotted;
             font-weight: 400;
+
+            @include themify() {
+                color: themed("text_color1");
+            }
         }
     }
 
@@ -264,7 +277,10 @@
             $item_width: 8.3rem;
             width: $item_width;
             font-size: 1.8rem;
-            color: $text_color4;
+
+            @include themify() {
+                color: themed("text_color2");
+            }
 
             img {
                 height: $item_width;
@@ -296,8 +312,11 @@
     }
 
     .assets_item {
-        color: $text_color4;
         font-size: 2.1rem;
+
+        @include themify() {
+            color: themed("text_color2");
+        }
 
         .icon {
             width: 1.8rem;
@@ -313,8 +332,11 @@
         }
 
         .assets_item_light {
-            color: #9b9b9b;
             font-weight: 300;
+
+            @include themify() {
+                color: themed("text_color2");
+            }
         }
     }
 }

--
Gitblit v1.9.3