| | |
| | | if (this.uploadList !== val) { |
| | | this.uploadList = this.getUploadList(val) |
| | | this.fileList = this.getUploadList(val) |
| | | console.log(this.fileList,'this.fileList this.fileList') |
| | | this.$emit('getUploaderImg',this.fileList) |
| | | } |
| | | }, |
| | | isShowCrop(value) { |
| | |
| | | // 获取已上传的文件列表 |
| | | getUploadList(val) { |
| | | if (val) { |
| | | console.log(val, 'getUploadList val') |
| | | // console.log(val, 'getUploadList val') |
| | | if (!this.multiple) { // 单选 |
| | | return [val] |
| | | } else { |
| | | console.log([...val], 'getUploadList [...val]') |
| | | // console.log([...val], 'getUploadList [...val]') |
| | | return [...val] |
| | | } |
| | | } else { |