优化发送邮件

This commit is contained in:
不做码农
2022-01-02 15:56:23 +08:00
parent cf27c7115c
commit e88d4d24c3
7 changed files with 93 additions and 84 deletions

View File

@@ -156,12 +156,12 @@ export default {
return;
}
this.msgSuccess("上传成功");
this.fileList.push({ name: res.data.fileName, url: res.data.url });
this.fileList.push({ name: res.data.fileName, url: res.data.url, path: res.data.path });
this.$emit("input", this.column, this.listToString(this.fileList));
},
// 上传进度
uploadProcess(event, file, fileList) {
console.log("上传进度" + file.percentage);
// console.log("上传进度" + file.percentage);
},
// 删除文件
handleDelete(index) {