提交代码

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