spring
2025-05-21 ee2882cff02d3545b66c7591f88ed4800f730a9a
src/components/do/a6-device/device-overview.vue
@@ -69,7 +69,7 @@
}
.list-left .list-left-info {
  line-height: 36px;
  line-height: 30px;
  display: flex;
}
@@ -140,6 +140,9 @@
}
.info .circle {
  background: #909399;
}
.active {
  color: #ff3838 !important;
}
</style>
@@ -253,6 +256,18 @@
                <span style="color:#333333;font-size: 16px;">{{
                  m.specificationModel ? m.specificationModel : "无"
                }}</span>
              </div>
              <div class="list-left-info">
                <span class="label">校准时间:</span>
                <span
                  style="color:#333333;font-size: 16px;"
                  :class="{ active: m.status == 1 }"
                  >{{
                    m.nextCalibrationDateTwo
                      ? m.nextCalibrationDateTwo.split(" ")[0]
                      : ""
                  }}</span
                >
              </div>
              <div class="list-left-info">
                <span class="label">状态:</span>
@@ -431,7 +446,7 @@
        this.currentPage = 1;
        this.list = [];
        this.entity.laboratoryName = null;
        this.entity.storagePoint = null;
        this.entity.largeCategory = null;
        // 等于1代表为树的一级,label为部门
        if (clickNodeVal.label == "其他") {
          this.laboratoryNameIsNull = true;
@@ -448,7 +463,7 @@
          } else {
            this.entity.laboratoryName = clickNodeVal.parent.label;
          }
          this.entity.storagePoint = clickNodeVal.label;
          this.entity.largeCategory = clickNodeVal.label;
        }
        this.refreshTable();
      }