fix
13404089107
2025-06-27 bede92edf9dee2f9edc0c06576e783d398f24ef7
fix
3个文件已修改
8 ■■■■ 已修改文件
culture/src/views/strainReportLibrary/reportLibraryOneFour/components/evaluate/index.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
culture/src/views/strainReportLibrary/reportLibraryOneTWO/components/evaluate/index.vue 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
culture/src/views/strainReportLibrary/reportLibraryOneThree/components/evaluate/index.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
culture/src/views/strainReportLibrary/reportLibraryOneFour/components/evaluate/index.vue
@@ -195,7 +195,7 @@
    },
    computed: {
        currentAssessmentTable() {
            return this.type == 1 || this.type == '1' ? this.assessmentTable2 : this.assessmentTable1;
            return this.type == 2 || this.type == '2' ? this.assessmentTable1 : this.assessmentTable2;
        },
        fullScore() {
            return this.type == 2 || this.type == '2'
culture/src/views/strainReportLibrary/reportLibraryOneTWO/components/evaluate/index.vue
@@ -195,10 +195,10 @@
    },
    computed: {
        currentAssessmentTable() {
            return this.type == 2 || this.type == '2' ? this.assessmentTable2 : this.assessmentTable1;
            return this.type == 2 || this.type == '2' ? this.assessmentTable1 : this.assessmentTable2;
        },
        fullScore() {
            return this.type == 1 || this.type == '1'
            return this.type == 2 || this.type == '2'
                ? this.assessmentTable1.reduce((sum, item) => sum + (item.fullScore || 0), 0)
                : this.assessmentTable2.reduce((sum, item) => sum + (item.fullScore || 0), 0);
        },
culture/src/views/strainReportLibrary/reportLibraryOneThree/components/evaluate/index.vue
@@ -195,7 +195,7 @@
    },
    computed: {
        currentAssessmentTable() {
            return this.type == 1 || this.type == '1' ? this.assessmentTable2 : this.assessmentTable1;
            return this.type == 2 || this.type == '2' ? this.assessmentTable1 : this.assessmentTable2;
        },
        fullScore() {
            return this.type == 2 || this.type == '2'