fix 修复 文件/图片上传组件 第一次上传报错导致后续上传无限loading问题

2.X
疯狂的狮子li 2 years ago
parent 60f3757672
commit 2b866f93e3

@ -156,7 +156,7 @@ export default {
//
handleUploadError(err) {
this.$modal.msgError("上传图片失败,请重试");
this.$modal.closeLoading()
this.$modal.closeLoading();
},
//
handleUploadSuccess(res) {
@ -172,6 +172,7 @@ export default {
} else {
this.$modal.msgError(res.msg);
this.$modal.closeLoading();
this.number--;
}
},
//

@ -143,6 +143,7 @@ export default {
} else {
this.$modal.msgError(res.msg);
this.$modal.closeLoading();
this.number--;
}
},
// loading

Loading…
Cancel
Save