| | |
| | | <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"> |
| | |
| | | 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 == 2 || type == '2')"> |
| | | 1. 规程型课题评定总分的满分为5分。<br> |
| | |
| | | return this.currentAssessmentTable.reduce((sum, item) => sum + (item.selectedScore || 0), 0); |
| | | }, |
| | | dialogTitle() { |
| | | return this.type === "1" ? "创新型课题评定" : "规程型课题评定标准"; |
| | | return this.type == "1" ? "创新型课题评定" : "规程型课题评定标准"; |
| | | } |
| | | }, |
| | | methods: { |