@@ -46,6 +46,11 @@ _axios.interceptors.request.use(
_axios.interceptors.response.use(
function(response) {
// Do something with response data
+ if(response.data.code!==200){
+ setTimeout(()=>{
+ Toast(response.data.msg)
+ },0)
+ }
//关闭loading
LOADINGCOUNT--;