From 0b9151cd668ef8474c263888e0884a58f56e48cb Mon Sep 17 00:00:00 2001
From: 李凌 <344137771@qq.com>
Date: Mon, 02 Feb 2026 18:31:29 +0800
Subject: [PATCH] 1

---
 src/views/customerService/index.vue |   12 ++++++++----
 1 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/src/views/customerService/index.vue b/src/views/customerService/index.vue
index 60a2619..8087bc1 100644
--- a/src/views/customerService/index.vue
+++ b/src/views/customerService/index.vue
@@ -5,7 +5,7 @@
       <div class="px-3.5 py-5" :style="{ 'margin-top': navHeight + 'px' }" v-if="state == 0">
         <div class="white">{{ $t('OrdersWill') }} <span style="color: #1194F7">{{ msgTitle }}</span> {{
           $t('afterCancel')
-          }}</div>
+        }}</div>
         <div class="mt-3">
           <span class="mr-1" style="color: #8A919E">{{ $t('lumpSum') }}</span>
           <span class="white">{{ payInfo.currency }} {{ payInfo.amount }}</span>
@@ -29,7 +29,7 @@
             }}</p> -->
             <p class="font-13 text-center pb-3 text-grey font-15">{{
               item.createtime
-              }}</p>
+            }}</p>
             <div class="flex" :class="item.send_receive === 'send' ? 'justify-end' : ''">
               <template v-if="item.send_receive === 'receive'">
                 <img src="@/assets/image/service/responser.png" class="w-10 h-10 mr-5" />
@@ -257,7 +257,7 @@
   clearIntervalTimer()
 })
 onBeforeUnmount(() => {
-  let lastTimerId = setInterval(() => {}, 1000);
+  let lastTimerId = setInterval(() => { }, 1000);
   for (let i = 1; i <= lastTimerId; i++) {
     clearInterval(i);
   }
@@ -265,6 +265,8 @@
 
 </script>
 <style lang="scss" scoped>
+@import "@/assets/theme/index.scss";
+
 .service-box {
   font-size: 14px;
   width: 100%;
@@ -346,6 +348,8 @@
 }
 
 .left-chatBg {
-  background: $input_background;
+  @include themify() {
+    background: themed("input_background");
+  }
 }
 </style>

--
Gitblit v1.9.3