diff --git a/common/http.interceptor.js b/common/http.interceptor.js index c21e20c..26cec89 100644 --- a/common/http.interceptor.js +++ b/common/http.interceptor.js @@ -65,13 +65,13 @@ const install = (Vue, vm) => { }) } return false; - } else if (res.errCode == 1) { + } else if (res.data.errCode == 1) { // console.log(res.message); - return res; + return res.data; } else { // 如果返回false,则会调用Promise的reject回调, // 并将进入this.$u.post(url).then().catch(res=>{})的catch回调中,res为服务端的返回值 - return res; + return res.data; } }