fix 修复上传报错导致后续上传数量不正常无法关闭loading问题

Signed-off-by: 疯狂的狮子Li <15040126243@163.com>
pull/239/head
疯狂的狮子Li 3 years ago committed by Gitee
parent f0bfff1ff3
commit 4ec85b5c31
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

@ -151,6 +151,7 @@ export default {
},
//
handleUploadSuccess(res) {
if (res.code === 200) {
this.uploadList.push({ name: res.data.url, url: res.data.url });
if (this.uploadList.length === this.number) {
this.fileList = this.fileList.concat(this.uploadList);
@ -159,6 +160,11 @@ export default {
this.$emit("input", this.listToString(this.fileList));
this.$modal.closeLoading();
}
} else {
this.$modal.msgError(res.msg);
this.$modal.closeLoading();
this.number--;
}
},
//
handleDelete(index) {

@ -122,6 +122,7 @@ export default {
},
//
handleUploadSuccess(res) {
if (res.code === 200) {
this.uploadList.push({ name: res.data.url, url: res.data.url });
if (this.uploadList.length === this.number) {
this.fileList = this.fileList.concat(this.uploadList);
@ -130,6 +131,11 @@ export default {
this.$emit("input", this.listToString(this.fileList));
this.$modal.closeLoading();
}
} else {
this.$modal.msgError(res.msg);
this.$modal.closeLoading();
this.number--;
}
},
// loading
handleBeforeUpload(file) {

Loading…
Cancel
Save