|
@@ -67,22 +67,22 @@ _axios.interceptors.response.use(
|
|
|
|
|
|
if(response.status!==200){
|
|
|
setTimeout(() => {
|
|
|
- MessagePlugin.warning('网络异常')
|
|
|
+ MessagePlugin.error('网络异常')
|
|
|
}, 100);
|
|
|
}
|
|
|
|
|
|
if(!data){
|
|
|
setTimeout(() => {
|
|
|
- MessagePlugin.warning('服务器开了个小差')
|
|
|
+ MessagePlugin.error('服务器开了个小差')
|
|
|
}, 100);
|
|
|
}
|
|
|
if(data.Ret===408){//token失效
|
|
|
- MessagePlugin.warning(data.Msg)
|
|
|
+ MessagePlugin.error(data.Msg)
|
|
|
|
|
|
}
|
|
|
if(data.Ret===403){
|
|
|
setTimeout(() => {
|
|
|
- MessagePlugin.warning(data.Msg||'网络异常')
|
|
|
+ MessagePlugin.error(data.Msg||'网络异常')
|
|
|
}, 100);
|
|
|
}
|
|
|
|
|
@@ -96,7 +96,7 @@ _axios.interceptors.response.use(
|
|
|
}
|
|
|
console.log(error);
|
|
|
setTimeout(() => {
|
|
|
- MessagePlugin.warning(error.message)
|
|
|
+ MessagePlugin.error(error.message)
|
|
|
}, 300);
|
|
|
// Do something with response error
|
|
|
return Promise.reject(error);
|