he wei
2025-04-23 077a05d485f31a2ccc17113a2a920810fde6ce9d
src/views/dataTest/components/DischargeParams.vue
@@ -51,10 +51,10 @@
      </div>
      <div class="table-row">
        <div class="table-cell pr16">
          <el-form-item :label="disCurrText" prop="disCurr">
          <el-form-item :label="disCurrText" :prop="isCqdz ? 'disCurr1' : 'disCurr'">
            <el-input
              v-model="params.disCurr"
              :readonly="readOnly || pReadOnly"
              :readonly="readOnly || pReadOnly || isCqdz"
            ></el-input>
          </el-form-item>
        </div>
@@ -606,13 +606,13 @@
    },
    setFaceSuccess() {
      this.setFaceShow = false;
      this.$nextTick(()=>{
      this.$nextTick(() => {
        this.setParams();
      });
    },
    startFaceSuccess() {
      this.startFaceShow = false;
      this.$nextTick(()=>{
      this.$nextTick(() => {
        this.startTest();
      });
    },
@@ -676,6 +676,9 @@
        groupIndexInFBSDevice: this.batt.groupIndexInFBSDevice + 1,
      };
    },
    isCqdz() {
      return this.$CFG.clientName.name === "cqdz";
    },
    rangeLabel() {
      let ranges = this.ranges;
      let result = {};
@@ -688,6 +691,10 @@
    },
    disCurrText() {
      let batt = this.batt;
      if (this.isCqdz) {
        return "核容电流(A)";
      }
      return "核容电流(1~300A)" + " 实际负载电流:" + batt.loadCurr + "A";
    },
  },