This commit is contained in:
zhangsir
2024-10-23 17:04:54 +08:00
parent 7e91ab301e
commit 9c77a0b2c6

View File

@@ -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