董国庆
2025-07-01 4ca375b2e3dae98d6ececc1b7b421a12f3fa8a26
laboratory/src/views/deliveryAssessment/chemistEvaluate/add.vue
@@ -250,12 +250,12 @@
      const activeIndex = evaluateTable.activeIndex;
      const evaluateData = {
        evaluateOne: this.getEvaluateValue(activeIndex[0].score),
        evaluateTwo: this.getEvaluateValue(activeIndex[1].score),
        evaluateThree: this.getEvaluateValue(activeIndex[2].score),
        evaluateFour: this.getEvaluateValue(activeIndex[3].score),
        evaluateFive: this.getEvaluateValue(activeIndex[4].score),
        evaluateSix: this.getEvaluateValue(activeIndex[5].score),
        evaluateOne: activeIndex[0].score ?this.getEvaluateValue(activeIndex[0].score):0,
        evaluateTwo: activeIndex[1].score ?this.getEvaluateValue(activeIndex[1].score):0,
        evaluateThree: activeIndex[2].score ?this.getEvaluateValue(activeIndex[2].score):0,
        evaluateFour: activeIndex[3].score ?this.getEvaluateValue(activeIndex[3].score):0,
        evaluateFive: activeIndex[4].score ?this.getEvaluateValue(activeIndex[4].score):0,
        evaluateSix: activeIndex[5].score ?this.getEvaluateValue(activeIndex[5].score):0,
        evaluateTime: moment().format("YYYY-MM-DD HH:mm:ss"),
        resultEvaluateJson: JSON.stringify(activeIndex),
        dispatchId: this.tableData[0]?.id,