From 0c9660562a03191d44fc779a889d3da0dc624b6d Mon Sep 17 00:00:00 2001 From: 董国庆 <364620639@qq.com> Date: 星期五, 25 七月 2025 10:47:19 +0800 Subject: [PATCH] 修改弹窗ui和客户反馈 --- laboratory/src/views/reportLibrary/projectProposalLibrary/add.vue | 16 ++++++++-------- 1 files changed, 8 insertions(+), 8 deletions(-) diff --git a/laboratory/src/views/reportLibrary/projectProposalLibrary/add.vue b/laboratory/src/views/reportLibrary/projectProposalLibrary/add.vue index 335be64..7b5215f 100644 --- a/laboratory/src/views/reportLibrary/projectProposalLibrary/add.vue +++ b/laboratory/src/views/reportLibrary/projectProposalLibrary/add.vue @@ -126,12 +126,14 @@ this.tableData = [{ ...res.projectTeam, staffName: res.staffNames }] // 处理文件回显 if (res.feasibilityReportFiles && res.feasibilityReportFiles.length > 0) { - this.fileList = res.feasibilityReportFiles.map(file => ({ - name: file.fileName, - url: getFullUrl(file.fileUrl), - uid: file.id - })) - this.form.feasibilityReportFiles = res.fileList + this.fileList = res.feasibilityReportFiles.map(file => { + return { + name: file.fileName, + url: getFullUrl(file.fileUrl), + uid: file.id + } + }) + this.form.feasibilityReportFiles = res.feasibilityReportFiles } else { this.fileList = [] this.form.feasibilityReportFiles = [] @@ -157,7 +159,6 @@ customUploadRequest({ file, onSuccess: (res) => { - console.log() if (res.code === 200) { const fileObj = { id: new Date().getTime(), @@ -200,7 +201,6 @@ } }, submit() { - console.log(this.$refs.materialEditor.getContent()); if (this.tableData.length == 0) { this.$message.error('请选择项目组') return -- Gitblit v1.7.1