From 1a61525947d43fd7c8a6df637bf5c1c8f9cc37f3 Mon Sep 17 00:00:00 2001 From: 董国庆 <364620639@qq.com> Date: 星期四, 26 六月 2025 14:24:32 +0800 Subject: [PATCH] Merge branch 'main' of http://120.76.84.145:10101/gitblit/r/H5/leshan-laboratory --- culture/src/views/strainReportLibrary/reportLibraryOneTWO/components/evaluate/index.vue | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/culture/src/views/strainReportLibrary/reportLibraryOneTWO/components/evaluate/index.vue b/culture/src/views/strainReportLibrary/reportLibraryOneTWO/components/evaluate/index.vue index a914b6b..7f9b84f 100644 --- a/culture/src/views/strainReportLibrary/reportLibraryOneTWO/components/evaluate/index.vue +++ b/culture/src/views/strainReportLibrary/reportLibraryOneTWO/components/evaluate/index.vue @@ -45,7 +45,7 @@ <el-table-column prop="index" label="序号" width="60"> <template slot-scope="scope">{{ scope.row.index }}</template> </el-table-column> - <el-table-column prop="standard" :label="type == 1 || type == '1' ? '规程型课题评定标准' : '创新型课题评定标准'"> + <el-table-column prop="standard" :label="type == 2 || type == '2' ? '规程型课题评定标准' : '创新型课题评定标准'"> <template slot-scope="scope">{{ scope.row.standard }}</template> </el-table-column> <el-table-column prop="fullScore" label="满分值" width="80"> @@ -57,7 +57,7 @@ placeholder="请输入" :controls="false" style="width: 100%;" /> </template> </el-table-column> - <el-table-column prop="rule" :label="type == 1 || type == '1' ? '规程型课题报告评分规则' : '创新型课题报告评分规则'"> + <el-table-column prop="rule" :label="type == 2 || type == '2' ? '规程型课题报告评分规则' : '创新型课题报告评分规则'"> <template slot-scope="scope"> <span v-if="scope.$index === 0 && (type == 1 || type == '1')"> 1. 规程型课题评定总分的满分为5分。<br> @@ -206,7 +206,7 @@ return this.currentAssessmentTable.reduce((sum, item) => sum + (item.selectedScore || 0), 0); }, dialogTitle() { - return this.type === "1" ? "创新型课题评定" : "规程型课题评定标准"; + return this.type == "1" ? "创新型课题评定" : "规程型课题评定标准"; } }, methods: { -- Gitblit v1.7.1