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

This commit is contained in:
疯狂的狮子li 2022-08-23 18:34:42 +08:00
parent ba2994210c
commit 3950f3c869
2 changed files with 3 additions and 1 deletions

View File

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

View File

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