...
|
...
|
@@ -204,10 +204,16 @@ |
|
|
|
|
|
if (res.code !== 200) {
|
|
|
this.changeBtnStatus();
|
|
|
}
|
|
|
|
|
|
if (res.code === 401) {
|
|
|
// TODO go_login
|
|
|
if (res.code === 401) {
|
|
|
// TODO go_login
|
|
|
} else {
|
|
|
this.$createToast && this.$createToast({
|
|
|
txt: res.message || '服务器开小差了',
|
|
|
type: 'warn',
|
|
|
time: 1000
|
|
|
}).show();
|
|
|
}
|
|
|
}
|
|
|
};
|
|
|
|
...
|
...
|
|