|
@@ -63,7 +63,14 @@ const adminClick = () => {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
const goBack = () => {
|
|
const goBack = () => {
|
|
|
- top.location.href = "https://ai.szedu.cn/"
|
|
|
|
|
|
|
+ const a = document.createElement('a');
|
|
|
|
|
+ a.href = "https://ai.szedu.cn/";
|
|
|
|
|
+ a.target = '_blank';
|
|
|
|
|
+ a.rel = 'noreferrer';
|
|
|
|
|
+ document.body.appendChild(a);
|
|
|
|
|
+ a.click();
|
|
|
|
|
+ document.body.removeChild(a);
|
|
|
|
|
+ // top.location.href = "https://ai.szedu.cn/"
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
const userInfoOpen = () => {
|
|
const userInfoOpen = () => {
|