From ad270b43e8e942a0b78d46a6badcd3fd9d66fd39 Mon Sep 17 00:00:00 2001 From: zhangsir Date: Fri, 28 Jun 2024 12:49:44 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A4=96=E9=93=BE=E6=B7=BB=E5=8A=A0=E6=8E=A5?= =?UTF-8?q?=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/outerchain/OuterChain.vue | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/views/outerchain/OuterChain.vue b/src/views/outerchain/OuterChain.vue index 2e89107..0c8ed89 100644 --- a/src/views/outerchain/OuterChain.vue +++ b/src/views/outerchain/OuterChain.vue @@ -118,8 +118,9 @@ const goOuterChain = async (url) => { // }); if(url.includes('umu.cn')){ await request(LEARN, {url,userId:userInfo.value.userId}).then(res=>{ + console.log(res,'res') if(res.code == 200){ - window.open(res.data) + window.open(res.data, "_top") } }) return @@ -127,7 +128,7 @@ const goOuterChain = async (url) => { if(url.includes('firacademy.com')){ await request(NOLOGINURL, {url,userId:userInfo.value.userId}).then(res=>{ if(res.code == 200){ - window.open(res.data) + window.open(res.data, "_top") } }) return