From c17311ba1351cd5e64654c3fc7b2fe765b1e7382 Mon Sep 17 00:00:00 2001
From: 李凌 <344137771@qq.com>
Date: Thu, 09 Oct 2025 11:53:12 +0800
Subject: [PATCH] 1

---
 src/views/advertiserDetail/index.vue |   61 ++++++++++++++++++++----------
 1 files changed, 40 insertions(+), 21 deletions(-)

diff --git a/src/views/advertiserDetail/index.vue b/src/views/advertiserDetail/index.vue
index 5fc2ad6..8ecdc14 100644
--- a/src/views/advertiserDetail/index.vue
+++ b/src/views/advertiserDetail/index.vue
@@ -11,7 +11,7 @@
         <div>
           <p class="name">{{ c2cUser.nickName }}</p>
           <div class="advertisement flex items-center">
-            <img class="succ" src="@/assets/image/icon-success.png" alt ="" />
+            <img class="succ" src="@/assets/image/icon-success.png" alt="" />
             <span>{{ $t('认证广告方') }}</span>
             <span class="shu">|</span>
             <span>{{ $t('保证金') }} {{ $t(`${c2cUser.deposit}USDT`) }}</span>
@@ -190,15 +190,15 @@
   created() {
     console.log(this.uid);
     otcApi.ctcUserGet({ c2c_user_id: this.uid, language: this.$i18n.locale }).then(res => {
-    // otcApi.ctcUserGet({ id: this.uid, language: this.$i18n.locale }).then(res => {
+      // otcApi.ctcUserGet({ id: this.uid, language: this.$i18n.locale }).then(res => {
       this.userInfo = res.data;
     })
   },
   mounted() {
     // nextTick(() => {
-      setTimeout(() => {
-        this.top = this.$refs.main.getBoundingClientRect().top;
-      }, 1000)
+    setTimeout(() => {
+      this.top = this.$refs.main.getBoundingClientRect().top;
+    }, 1000)
     // })
   },
   methods: {
@@ -242,6 +242,7 @@
 
 <style lang="scss" scoped>
 @import "@/assets/css/copy2.scss";
+
 .box-radius {
   border-radius: 40px;
 }
@@ -320,10 +321,13 @@
 .main-list {
   overflow: auto;
   margin-top: 44px;
-  background: $main_background;
-
+  // background: $main_background;
   border-radius: 80px 80px 0px 0px;
   // padding-bottom: 300px;
+
+  @include themify() {
+    background: themed("main_background");
+  }
 }
 
 .main-box {
@@ -338,9 +342,12 @@
 }
 
 .info {
-  color: $text_color;
   font-size: 30px;
   font-weight: bold;
+
+  @include themify() {
+    color: themed("text_color");
+  }
 }
 
 .gen {
@@ -362,10 +369,12 @@
 
 .num {
   font-size: 40px;
-  color: $text_color;
-
   font-weight: bold;
   margin-bottom: 18px;
+
+  @include themify() {
+    color: themed("text_color");
+  }
 }
 
 .time {
@@ -380,11 +389,13 @@
 }
 
 .g-title {
-  color: $text_color;
-
   font-size: 30px;
   font-weight: bold;
   margin: 60px 32px;
+
+  @include themify() {
+    color: themed("text_color");
+  }
 }
 
 .g-zai {
@@ -397,20 +408,24 @@
 
 .g-data {
   min-height: 380px;
-  background: $main_background;
-
   box-sizing: border-box;
   font-size: 24px;
   color: #868d9a;
   padding: 45px 0 41px 32px;
   position: relative;
-  border-bottom: 1px solid $divi_line;
+
+  @include themify() {
+    background: themed("main_background");
+    border-bottom: 1px solid themed("divi_line");
+  }
 
   .g-dan {
     margin: 8px 0 22px;
-    color: $text_color;
-
     font-weight: bold;
+
+    @include themify() {
+      color: themed("text_color");
+    }
 
     span {
       font-size: 40px;
@@ -489,9 +504,11 @@
 
 .dia-main {
   padding: 60px 64px 44px 48px;
-  color: $text_color;
-
   font-size: 28px;
+
+  @include themify() {
+    color: themed("text_color");
+  }
 
   .mar-70 {
     margin: 70px 0 46px;
@@ -502,9 +519,11 @@
   height: 80px;
   line-height: 80px;
   text-align: center;
-  color: $text_color;
-
   background: #1d91ff;
+
+  @include themify() {
+    color: themed("text_color");
+  }
 }
 
 .bg-blue {

--
Gitblit v1.9.3