This commit is contained in:
huangjinming 2023-07-04 14:12:22 +08:00
parent 542b488787
commit d06e1663cb
2 changed files with 1 additions and 3 deletions

Binary file not shown.

View File

@ -87,9 +87,7 @@ router.beforeEach((to, from, next) => {
link.href = to.meta.canonical
next(); // 如果是 PC 设备,继续导航
} else {
window.location.href = `https://www.counterfire.games?code=${
to.query.code ? to.query.code : ""
}`;
window.location.href = `https://www.counterfire.games${to.query.code? '?code='+ to.query.code:''}`;
}
});