From e1e51991ad91c14fa00c5cf46f95e514f676ac4d Mon Sep 17 00:00:00 2001
From: 李凌 <344137771@qq.com>
Date: Fri, 19 Sep 2025 18:58:56 +0800
Subject: [PATCH] 1

---
 src/components/Transform/ex-header/index.vue |    7 ++++++-
 1 files changed, 6 insertions(+), 1 deletions(-)

diff --git a/src/components/Transform/ex-header/index.vue b/src/components/Transform/ex-header/index.vue
index 1e5dd35..e1a7edf 100644
--- a/src/components/Transform/ex-header/index.vue
+++ b/src/components/Transform/ex-header/index.vue
@@ -14,6 +14,7 @@
 
 <script>
 import { THEME } from '@/config/theme'
+import { customerServiceUrl } from "@/config";
 export default {
   props: {
     unread_num: {
@@ -50,7 +51,11 @@
       this.tabList[index]['data'] = this.tabList[index]['data'].filter(item => item.symbol.includes(this.keywords))
     },
     tokefu() {
-      this.$router.push('/customerService')
+      if (customerServiceUrl) {
+        window.location.href = customerServiceUrl;
+      } else {
+        this.$router.push('/customerService')
+      }
     }
   }
 }

--
Gitblit v1.9.3