jinhui.wang

退出地址修改

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