解决跳出首页

This commit is contained in:
red-deng-deng 2022-01-24 20:37:17 +08:00
parent fd39f90451
commit 8d4bc47f2e
1 changed files with 2 additions and 1 deletions

View File

@ -138,7 +138,8 @@
if(linkId.length>10){
req.axiosGetplan('/plan/plan_theme/' + linkId).then(res => {
if(res.code==200){
window.location.href=res.data;
// window.location.href=res.data;
window.location.replace(res.data);
return;
}
})