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/C2C/components/adScreening.vue |   18 ++++++++++++------
 1 files changed, 12 insertions(+), 6 deletions(-)

diff --git a/src/views/C2C/components/adScreening.vue b/src/views/C2C/components/adScreening.vue
index cbe24ed..fe2aa23 100644
--- a/src/views/C2C/components/adScreening.vue
+++ b/src/views/C2C/components/adScreening.vue
@@ -45,7 +45,8 @@
       </van-collapse>
       <div class="flex mt-56 mb-36 justify-center ">
         <button class="w-370 h-82 tabBackground c2cColor rounded-lg font-400 font-30 border-none mr-21"
-          @click="onReset">{{ $t('重置') }}
+          @click="onReset">{{
+            $t('重置') }}
         </button>
         <button class="w-370 h-82 bg-grey rounded-lg font-400 font-30 border-none"
           :class="[{ 'btnMain': tabindex === 1 }, { 'text-white': tabindex === 1 }]" @click="onConfirm">{{ $t('确认') }}
@@ -159,10 +160,11 @@
 
 <style lang="scss" scoped>
 @import "@/assets/css/copy2.scss";
+
 .active_trade {
   color: #ffffff;
   // background-color: #888;
-  background:$color_main;
+  background: $color_main;
 }
 
 .rotateZ {
@@ -182,7 +184,9 @@
 
 #full {
   ::v-deep .van-cell {
-    background: $main_background;
+    @include themify() {
+      background: themed("main_background");
+    }
   }
 
   ::v-deep .van-cell::after {
@@ -190,15 +194,17 @@
   }
 
   .van-switch {
-    background: $btn_main;
+    // background: $btn_main;
   }
 
   ::v-deep .van-collapse-item__content {
-    background: $main_background;
+    // background: $main_background;
   }
 
   ::v-deep .van-field__control {
-    color: $text_color;
+    @include themify() {
+      color: themed("text_color");
+    }
   }
 }
 </style>

--
Gitblit v1.9.3