新增跳转时打开新窗口功能
This commit is contained in:
+4
-3
@@ -712,14 +712,15 @@
|
||||
|
||||
function redirectAfterRegister(hasToken) {
|
||||
if (hasToken) {
|
||||
window.location.href =
|
||||
NavigationUtil.open(
|
||||
typeof CommonUtil !== "undefined"
|
||||
? CommonUtil.siteHref("/index.html")
|
||||
: "index.html";
|
||||
: "index.html",
|
||||
);
|
||||
return;
|
||||
}
|
||||
|
||||
window.location.href = "login.html";
|
||||
NavigationUtil.open("login.html");
|
||||
}
|
||||
|
||||
function finishRegisterSuccess(res) {
|
||||
|
||||
Reference in New Issue
Block a user