区分抛异常和接口返回来失败
2020-09-18 本文已影响0人
流泪手心_521
pushSettingApi.getAppList(this.contentForm).then(res=>{
if(res.status==0){//接口返回来的成功
this.tableData=res.data.resultData;
this.total=res.data.total;
}else{
this.$message.error(res.message)//接口返回来失败
}
}) .catch((error) => {//抛异常的时候
console.log('/lib/listPage查询资料库管理', error)
});