WXL
2026-01-22 07ac4ff1e9cc0e4181ac196d4cd597e44ff3aa7b
src/views/business/maintain/components/BloodRoutinePanel.vue
@@ -153,7 +153,7 @@
      <el-form
        :model="columnForm"
        label-width="80px"
        ref="columnForm"
        ref="columnFormB"
        :rules="columnRules"
      >
        <el-form-item label="日期" prop="date">
@@ -364,7 +364,7 @@
      };
      this.columnDialogVisible = true;
      this.$nextTick(() => {
        this.$refs.columnForm && this.$refs.columnForm.clearValidate();
        this.$refs.columnFormB && this.$refs.columnFormB.clearValidate();
      });
    },
@@ -380,7 +380,7 @@
    },
    confirmAddColumn() {
      this.$refs.columnForm.validate((valid) => {
      this.$refs.columnFormB.validate((valid) => {
        if (!valid) {
          this.$message.warning('请完善时间点信息');
          return;
@@ -445,7 +445,7 @@
        time: '',
        remark: ''
      };
      this.$refs.columnForm && this.$refs.columnForm.clearValidate();
      this.$refs.columnFormB && this.$refs.columnFormB.clearValidate();
    },
    disableFutureDates(time) {