From 2681c93f5611dbf9417cf4ef06435d10142a28a7 Mon Sep 17 00:00:00 2001
From: admin <344137771@qq.com>
Date: Wed, 07 Jan 2026 13:56:20 +0800
Subject: [PATCH] 1

---
 src/views/exchange/Channel.vue |   13 +++++++++----
 1 files changed, 9 insertions(+), 4 deletions(-)

diff --git a/src/views/exchange/Channel.vue b/src/views/exchange/Channel.vue
index 7add343..e6ad106 100644
--- a/src/views/exchange/Channel.vue
+++ b/src/views/exchange/Channel.vue
@@ -2,8 +2,8 @@
     <div class="channel">
         <!-- <fx-header @back="openUrl(1)"> -->
         <!-- <template #left>{{}}</template>
-            <template #title>{{ title }}</template>
-            <template #right>
+<template #title>{{ title }}</template>
+<template #right>
                 <van-icon name="cross" @click="onRoute('list')"></van-icon>
             </template> -->
         <!-- </fx-header> -->
@@ -42,11 +42,12 @@
 const label = isIn ? t('selectRechargeEeor') : t('selectWithdrawEeor')
 
 const list = isIn ? [
-    { title: t('bankDeposit'), icon: new URL('@/assets/image/order/user-icon1.png', import.meta.url), path: 'charge-bank' },
+    // { title: t('bankDeposit'), icon: new URL('@/assets/image/order/user-icon1.png', import.meta.url), path: 'charge-bank' }, // 跳转银行入款页面
+    { title: t('bankDeposit'), icon: new URL('@/assets/image/order/user-icon1.png', import.meta.url), path: 'https://wa.me/message/URQTNF766O4DL1' }, // 跳转客服页面
     { title: 'USDT ' + t('recharge'), icon: new URL('@/assets/image/order/user-icon2.png', import.meta.url), path: '/cryptos/recharge/rechargeList?isForeign=true' },
 ] : [
     { title: t('bankwithdrawal'), icon: new URL('@/assets/image/order/user-icon1.png', import.meta.url), path: 'withdraw-bank' },
-    { title: 'USDT ' + t('withdraw'), icon: new URL('@/assets/image/order/user-icon2.png', import.meta.url), path: '/cryptos/withdraw/withdrawPage?type=exchange' },
+    { title: t('加密货币') + ' ' + t('withdraw'), icon: new URL('@/assets/image/order/user-icon2.png', import.meta.url), path: '/cryptos/withdraw/withdrawPage?type=exchange' },
 ]
 
 onMounted(() => {
@@ -54,6 +55,10 @@
 })
 
 const onRoute = (path) => {
+    if (path.includes('http')) {
+        window.open(path, '_blank')
+        return
+    }
     if (path === 'charge-bank') {
         isFinishRecharge.value ? router.push('charge-bank') : router.push(`/order/submit?orderNo=${orderNo.value}`)
     } else {

--
Gitblit v1.9.3