From e01cee0f0c5c5c2eb2d8595eadb3c7a9df2a37fc Mon Sep 17 00:00:00 2001
From: 李凌 <344137771@qq.com>
Date: Wed, 21 Jan 2026 16:37:01 +0800
Subject: [PATCH] 1

---
 src/views/my/assets.vue |   45 ++++++++++++++++++++++++++++++++++++---------
 1 files changed, 36 insertions(+), 9 deletions(-)

diff --git a/src/views/my/assets.vue b/src/views/my/assets.vue
index c32e872..1c77299 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>
@@ -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,11 +277,19 @@
             $item_width: 8.3rem;
             width: $item_width;
             font-size: 1.8rem;
-            color: $text_color4;
+
+            @include themify() {
+                color: themed("text_color2");
+            }
 
             img {
                 height: $item_width;
                 border-radius: 50%;
+                background: #fff;
+
+                @include themify() {
+                    border: themed("main_background") 1px solid;
+                }
             }
         }
     }
@@ -296,8 +317,11 @@
     }
 
     .assets_item {
-        color: $text_color4;
         font-size: 2.1rem;
+
+        @include themify() {
+            color: themed("text_color2");
+        }
 
         .icon {
             width: 1.8rem;
@@ -313,8 +337,11 @@
         }
 
         .assets_item_light {
-            color: #9b9b9b;
             font-weight: 300;
+
+            @include themify() {
+                color: themed("text_color2");
+            }
         }
     }
 }

--
Gitblit v1.9.3