From 9a9d832dbd364557e070abcd9a7779a2c6c07ffb Mon Sep 17 00:00:00 2001
From: 李凌 <344137771@qq.com>
Date: Tue, 20 Jan 2026 17:35:13 +0800
Subject: [PATCH] 1
---
src/views/my/assets.vue | 15 +++++++++++++--
1 files changed, 13 insertions(+), 2 deletions(-)
diff --git a/src/views/my/assets.vue b/src/views/my/assets.vue
index c46965d..39cf409 100644
--- a/src/views/my/assets.vue
+++ b/src/views/my/assets.vue
@@ -314,7 +314,8 @@
name: t('充值'),
icon: new URL(`@/assets/theme/white/image/assets/recharge.png`, import.meta.url),
icon2: new URL(`@/assets/theme/dark/image/assets/recharge.png`, import.meta.url),
- path: '/cryptos/recharge/rechargeList?isForeign=true'
+ // path: '/cryptos/recharge/rechargeList?isForeign=true'
+ path: '/customerService'
},
{
key: 2,
@@ -347,10 +348,20 @@
})
}
+// 获取客服链接
+const customer_service_url = ref(store.state.user.customer_service_url)
+
// 跳转页面
const toPage = (path) => {
if (!path) return
- router.push(path)
+ else if (path == '/customerService') {
+ if (customer_service_url.value) {
+ window.location.href = customer_service_url.value;
+ } else {
+ router.push(path)
+ }
+ }
+ else router.push(path)
}
// 资产信息获取
--
Gitblit v1.9.3