Compare commits

..

No commits in common. "a0cb2a668e5913ddc8fb86cec306e05224f3c6d5" and "26254aba840ff1aa30eaa12e51485ee81018e54e" have entirely different histories.

View File

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