This commit is contained in:
luyuan 2020-08-07 18:03:40 +08:00
parent 6bf4fdc7e3
commit 07e1661a18
Signed by: theluyuan
GPG Key ID: A7972FD973317FF3

View File

@ -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;
}
}