From 7d3ca5dd947ad70aaca52c52051f85fcbb7b340d Mon Sep 17 00:00:00 2001
From: jhzh <1628036192@qq.com>
Date: Wed, 22 Oct 2025 03:12:53 +0800
Subject: [PATCH] 1
---
src/views/homePage/index.vue | 13 +++++++------
1 files changed, 7 insertions(+), 6 deletions(-)
diff --git a/src/views/homePage/index.vue b/src/views/homePage/index.vue
index c0c69bb..f9d0b3f 100644
--- a/src/views/homePage/index.vue
+++ b/src/views/homePage/index.vue
@@ -121,8 +121,9 @@
// })
const getcustomer = () => {
_customer().then((data) => {
- customer_service_url.value = data.customer_service_url
- console.log(customer_service_url);
+ if(data.code==0){
+ customer_service_url.value = data.customer_service_url
+ }
}).catch(error => {
console.error('Error fetching data:', error);
});
@@ -136,10 +137,10 @@
// 跳转页面
const toPage = (path) => {
- if(path=='/cryptos/recharge/rechargeList?isForeign=true'){
- window.open(customer_service_url.value)
- return
- }
+ // if(path=='/cryptos/recharge/rechargeList?isForeign=true'){
+ // window.open(customer_service_url.value)
+ // return
+ // }
if (!path) return
router.push(path)
}
--
Gitblit v1.9.3