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

---
 src/views/C2C/c2c-order-list/components/TradeSuccessDetail.vue |    7 ++++++-
 1 files changed, 6 insertions(+), 1 deletions(-)

diff --git a/src/views/C2C/c2c-order-list/components/TradeSuccessDetail.vue b/src/views/C2C/c2c-order-list/components/TradeSuccessDetail.vue
index e138a1f..55a6be6 100644
--- a/src/views/C2C/c2c-order-list/components/TradeSuccessDetail.vue
+++ b/src/views/C2C/c2c-order-list/components/TradeSuccessDetail.vue
@@ -92,6 +92,7 @@
 import OrderData from "./OrderData.vue";
 import Evaluation from "./Evaluation.vue";
 import otcApi from "@/service/otc";
+import { customerServiceUrl } from "@/config";
 export default {
   name: "TradeSuccessDetail",
   props: ['title', 'back'],
@@ -145,7 +146,11 @@
       return str
     },
     tokefu() {
-      this.$router.push('/customerService')
+      if (customerServiceUrl) {
+        window.location.href = customerServiceUrl;
+      } else {
+        this.$router.push('/customerService')
+      }
     }
   }
 }

--
Gitblit v1.9.3