jinhui.wang

退出地址修改

...@@ -135,7 +135,7 @@ export default { ...@@ -135,7 +135,7 @@ export default {
135 type: "warning", 135 type: "warning",
136 }).then(() => { 136 }).then(() => {
137 this.$store.dispatch("LogOut").then(() => { 137 this.$store.dispatch("LogOut").then(() => {
138 - this.$router.push('/login') 138 + this.$router.push('/')
139 // window.location.href = "https://test.secure.fedex.com/logout";//wsso系统跳转 139 // window.location.href = "https://test.secure.fedex.com/logout";//wsso系统跳转
140 }); 140 });
141 }); 141 });
......
...@@ -42,7 +42,7 @@ module.exports = { ...@@ -42,7 +42,7 @@ module.exports = {
42 /** 42 /**
43 * logout 43 * logout
44 */ 44 */
45 - logoutURL: 'https://test-myapps.secure.fedex.com/purpleid/signout/', 45 + logoutURL: 'http://47.103.140.98/test',
46 46
47 /** 47 /**
48 * 后端接口 48 * 后端接口
......
...@@ -67,7 +67,7 @@ service.interceptors.response.use(res => { ...@@ -67,7 +67,7 @@ service.interceptors.response.use(res => {
67 } 67 }
68 ).then(() => { 68 ).then(() => {
69 store.dispatch('FedLogOut').then(() => { 69 store.dispatch('FedLogOut').then(() => {
70 - location.href = '/index'; 70 + location.href = settings.logoutURL;
71 }) 71 })
72 }) 72 })
73 } else if (code === 403) { 73 } else if (code === 403) {
......