From 2c527d44ae31d2ec48a0835a10f8bdd9eb80d771 Mon Sep 17 00:00:00 2001 From: zjk <852185829@qq.com> Date: 星期四, 14 八月 2025 10:16:45 +0800 Subject: [PATCH] fix: add --- culture/src/views/strainReportLibrary/reportLibraryOneFour/add.vue | 23 +++++++++++------------ 1 files changed, 11 insertions(+), 12 deletions(-) diff --git a/culture/src/views/strainReportLibrary/reportLibraryOneFour/add.vue b/culture/src/views/strainReportLibrary/reportLibraryOneFour/add.vue index aea5074..51c27be 100644 --- a/culture/src/views/strainReportLibrary/reportLibraryOneFour/add.vue +++ b/culture/src/views/strainReportLibrary/reportLibraryOneFour/add.vue @@ -64,7 +64,7 @@ <div slot="tip" class="el-upload__tip">支持任意格式文件上传</div> </el-upload> </el-form-item> - <div class="header-title" style="width: 100%;"> + <!-- <div class="header-title" style="width: 100%;"> <div class="header-title-left"> <img src="@/assets/public/headercard.png" /> <div>菌种实验员操作评定</div> @@ -73,7 +73,6 @@ <div class="header-title" style="width: 100%;display: flex; align-items: center;"> <div class="header-title-left mt-unset"> - <!-- <img src="@/assets/public/headercard.png" /> --> <div>菌种实验员</div> </div> <div class="header-title-right"> @@ -108,9 +107,9 @@ </div> </div> </div> - </div> + </div> --> - <div class="table" style="margin-top: 38px"> + <!-- <div class="table" style="margin-top: 38px"> <el-table :data="assessmentTable" border style="width: 100%" :show-summary="true" :span-method="tableSpanMethod" :summary-method="getTableSummary"> <el-table-column prop="category" label="菌种实验员专业能力考核项" width="180"></el-table-column> @@ -142,7 +141,7 @@ </template> </el-table-column> </el-table> - </div> + </div> --> <div class="end-btn" style="margin-top: 38px"> <el-button type="primary" @click="addData" :loading="submitLoading">发送</el-button> @@ -359,21 +358,21 @@ this.submitLoading = false; return; } - if (!this.selectedMember || !this.selectedMember[0]) { - this.$message.warning('请选择菌种实验员'); - this.submitLoading = false; - return; - } + // if (!this.selectedMember || !this.selectedMember[0]) { + // this.$message.warning('请选择菌种实验员'); + // this.submitLoading = false; + // return; + // } const params = { isDraft: 0, projectId: this.projectData[0].id, - experimentId: this.selectedMember[0].userId, + // experimentId: this.selectedMember[0].userId, enclosureUrl: this.fileList.length && JSON.stringify(this.fileList), // reportCode: this.form.reportCode, reportContent: this.$refs.materialEditor.getContent(), reportName: this.form.reportName, evaluateTotal: this.totalScore, - evaluate: str.join(','), + // evaluate: str.join(','), reportType: 4 }; if (this.$route.query.id) { -- Gitblit v1.7.1