first, use the upload component of elementUI to save the file to form.picFile and form.corFile respectively, and then new a FormData object at the time of submission, and then append the file, but there is only one file in the data sent. What is the reason, please?
this.param = new FormData();
this.param.append("files", this.form.picFile, this.form.picFile.fileName);
this.param.append("files", this.form.corFile, this.form.corFile.fileName);