This commit is contained in:
xuyucheng 2022-11-10 15:30:24 +08:00
parent c15ec19956
commit fc81f43d86
2 changed files with 3 additions and 3 deletions

View File

@ -31,7 +31,7 @@ axios.interceptors.response.use(response => {
case 400: case 400:
break; break;
case 401: case 401:
window.location.href = "http://localhost:8083/webapp/entry_system/login" window.location.href = "http://test.fecribd.com/webapp/entry_system/login"
break; break;
case 500: case 500:
break break

View File

@ -133,7 +133,7 @@ export default {
}, },
logOut() { logOut() {
window.location.href = "http://localhost:8083/webapp/entry_system/login"; window.location.href = "http://test.fecribd.com/webapp/entry_system/login";
}, },
toPersonalDetail() { toPersonalDetail() {
@ -144,7 +144,7 @@ export default {
}) })
.substring(4); .substring(4);
window.location.href = window.location.href =
"http://localhost:8083/webapp/entry_system/detail/" + uid; "http://test.fecribd.com/webapp/entry_system/detail/" + uid;
}, },
}, },
}; };