How does elmentUI distinguish between multiple uplaod upload problems?

there is a upload for each contract in the project. How to distinguish between upload and one-to-one correspondence

part of pseudo code upload component

<el-upload                 
   :on-success="(response, file, fileList)=>{return constractSuccUpload(response, file, fileList,index)}"
   
>
</el-upload>

callback save successfully

constractSuccUpload(response, file, fileList,index){
 let fileUrl = file.response;
 this.tableList[index].contractFile = fileUrl;                 
}

contract list data structure (multiple loops)

[{
contractName:"",
contractNo:"",
contractDate:"",
contractPayMoney:"",
contractTotalMoney:"",
contractFile:"" //}]

Delete operation

handleDelContractList(index){             
  this.tableList.splice(index,1)
}

upload pictures cannot correspond to deletion when clicking Delete

MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b3a913-2c22b.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b3a913-2c22b.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?