| | |
| | | vm.$router.push({'path': '/login'}); |
| | | vm.$alert('会话结束,请重新登录', {'title': '提示', 'type': 'warning', 'center': true, 'showClose': false}); |
| | | }else{ |
| | | vm.$alert('操作失败:' + data.message, {'title': '提示', 'type': 'warning', 'center': true, 'showClose': false}); |
| | | } |
| | | let a = ''; |
| | | if(response.data){ |
| | | if(response.data.msg){ |
| | | a=response.data.msg |
| | | }else { |
| | | a='服务器故障' |
| | | } |
| | | }else { |
| | | a="数据错误" |
| | | } |
| | | vm.$alert(a , {'title': '提示', 'type': 'warning', 'center': true, 'showClose': false}); } |
| | | } |
| | | }).catch((e) => { |
| | | vm.$loading().close(); |
| | |
| | | }).then((response) => { |
| | | //vm.$loading().close(); |
| | | let data = response.data; |
| | | console.log(response) |
| | | if (data && data.code==0) { |
| | | callBackFunction(data); |
| | | } else { |
| | |
| | | // vm.$loading(); |
| | | vm.$axios({ |
| | | // headers: { |
| | | // 'token': token |
| | | // 'Content-Type': "application/json;charset=UTF-8" |
| | | // }, |
| | | withCredentials: false, |
| | | responseType: "blob", |
| | | url: url, |
| | | method: 'post', |
| | | data: data |