From 9c77a0b2c6836951c15fe089148217fc1df42b4e Mon Sep 17 00:00:00 2001 From: zhangsir Date: Wed, 23 Oct 2024 17:04:54 +0800 Subject: [PATCH] =?UTF-8?q?=E5=9B=9E=E9=80=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/outerchain/OuterChain.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/outerchain/OuterChain.vue b/src/views/outerchain/OuterChain.vue index 86ac5cf..9d4f598 100644 --- a/src/views/outerchain/OuterChain.vue +++ b/src/views/outerchain/OuterChain.vue @@ -120,7 +120,7 @@ const goOuterChain = async (url) => { 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 @@ -128,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