diff --git a/src/api/request.js b/src/api/request.js index d373be8..9f3e0d2 100644 --- a/src/api/request.js +++ b/src/api/request.js @@ -31,7 +31,7 @@ axios.interceptors.response.use(response => { case 400: break; case 401: - window.location.href = "http://localhost:8083/webapp/entry_system/login" + window.location.href = "http://test.fecribd.com/webapp/entry_system/login" break; case 500: break diff --git a/src/view/home/aside/index.vue b/src/view/home/aside/index.vue index bfabbd4..6023e97 100644 --- a/src/view/home/aside/index.vue +++ b/src/view/home/aside/index.vue @@ -133,7 +133,7 @@ export default { }, logOut() { - window.location.href = "http://localhost:8083/webapp/entry_system/login"; + window.location.href = "http://test.fecribd.com/webapp/entry_system/login"; }, toPersonalDetail() { @@ -144,7 +144,7 @@ export default { }) .substring(4); window.location.href = - "http://localhost:8083/webapp/entry_system/detail/" + uid; + "http://test.fecribd.com/webapp/entry_system/detail/" + uid; }, }, };