This commit is contained in:
chenjianxing 2020-06-01 13:43:10 +08:00
commit 903c81c93b
2 changed files with 4 additions and 3 deletions

View File

@ -44,6 +44,7 @@
},
methods: {
checkLanguage(lang) {
if (!lang) return;
this.$setLang(lang);
switch (lang) {
case ZH_CN:

View File

@ -14,12 +14,12 @@ export default {
}
let login = function () {
MessageBox.alert(this.$t('commons.tips'), {
MessageBox.alert("The authentication information has expired, please login again", "Prompt", {
callback: () => {
window.location.href = "/login"
}
}).then(r => {
window.location.href = "/login"
});
};
@ -53,7 +53,7 @@ export default {
}
result.loading = false;
window.console.error(error.response || error.message);
if (error.response.data) {
if (!error.response.data) {
Message.error({message: error.response.data.message, showClose: true});
} else {
Message.error({message: error.message, showClose: true});