提交代码

This commit is contained in:
jiang 2024-12-02 02:45:00 +08:00
parent 87575df13e
commit 828b3bf24e
1 changed files with 1 additions and 3 deletions

View File

@ -76,7 +76,6 @@ export default {
queue: [], //
maxConcurrentUploads: 5, //
uploadsNum:{},
isUploading: true, //
};
},
beforeMount() {
@ -106,7 +105,6 @@ export default {
this.uploadFailed = {};
this.queue = [];
this.uploadsNum = {};
this.isUploading = true; //
},
//
customUpload(uploadFile) {
@ -179,7 +177,7 @@ export default {
},
//
startNextUpload() {
if (!this.isUploading) return; //
if (!this.drawer) return; //
Object.keys(this.uploadsNum).forEach((fileName) => {
if (this.uploadsNum[fileName] === 100) {