|  | @@ -394,18 +394,27 @@ export default {
 | 
											
												
													
														|  |        }
 |  |        }
 | 
											
												
													
														|  |      },
 |  |      },
 | 
											
												
													
														|  |      fileSelected(list) {
 |  |      fileSelected(list) {
 | 
											
												
													
														|  | -
 |  | 
 | 
											
												
													
														|  |        if (!list) return;
 |  |        if (!list) return;
 | 
											
												
													
														|  |        let tempArry = [];
 |  |        let tempArry = [];
 | 
											
												
													
														|  | 
 |  | +      let fileNameList=[]
 | 
											
												
													
														|  | 
 |  | +      let addFileNameList=[]
 | 
											
												
													
														|  | 
 |  | +      this.formData.fileList.forEach(x => {
 | 
											
												
													
														|  | 
 |  | +        let fileObj= JSON.parse(x);
 | 
											
												
													
														|  | 
 |  | +        fileNameList.push(fileObj.name);
 | 
											
												
													
														|  | 
 |  | +      })
 | 
											
												
													
														|  |        list.forEach(x => {
 |  |        list.forEach(x => {
 | 
											
												
													
														|  | -        tempArry = tempArry.concat(x.fileList);
 |  | 
 | 
											
												
													
														|  | 
 |  | +        tempArry.forEach(s => {
 | 
											
												
													
														|  | 
 |  | +          addFileNameList.push(JSON.parse(s).name);
 | 
											
												
													
														|  | 
 |  | +        })
 | 
											
												
													
														|  | 
 |  | +        x.fileList.forEach(y => {
 | 
											
												
													
														|  | 
 |  | +          let fileObj= JSON.parse(y);
 | 
											
												
													
														|  | 
 |  | +          if (fileNameList.indexOf(fileObj.name) == -1&&addFileNameList.indexOf(fileObj.name) == -1) {
 | 
											
												
													
														|  | 
 |  | +            tempArry.push(y);
 | 
											
												
													
														|  | 
 |  | +          }
 | 
											
												
													
														|  | 
 |  | +        })
 | 
											
												
													
														|  |        })
 |  |        })
 | 
											
												
													
														|  | -      console.log("tempArry", tempArry, this.formData.fileList);
 |  | 
 | 
											
												
													
														|  |        if (this.formData.fileList) {
 |  |        if (this.formData.fileList) {
 | 
											
												
													
														|  | -        console.log("12312312121212121212121")
 |  | 
 | 
											
												
													
														|  |          this.formFileListDefualtValue = this.formData.fileList.concat(tempArry);
 |  |          this.formFileListDefualtValue = this.formData.fileList.concat(tempArry);
 | 
											
												
													
														|  | -        this.formData.fileList = this.formData.fileList.concat(tempArry);
 |  | 
 | 
											
												
													
														|  | -        console.log("this.formFileListDefualtValue", this.formFileListDefualtValue)
 |  | 
 | 
											
												
													
														|  |        } else {
 |  |        } else {
 | 
											
												
													
														|  |          this.formFileListDefualtValue = tempArry;
 |  |          this.formFileListDefualtValue = tempArry;
 | 
											
												
													
														|  |        }
 |  |        }
 |