licp
2024-08-04 c44041199aafb63622bf4839ae6fec54ba313ab4
Merge branch 'master' of http://114.132.189.42:9002/r/center-lims-before into master
已修改1个文件
4 ■■■■ 文件已修改
src/components/do/b6-device-management/b6-data-acquisition-config.vue 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/components/do/b6-device-management/b6-data-acquisition-config.vue
@@ -573,14 +573,14 @@
          });
          this.domains.forEach((i, index) => {
            let isIncludes = false
            if (this.configForm.formula && this.configForm.formula != "") {
            if (this.configForm.formula && this.configForm.formula !== "") {
              for (let formula in this.formulas) {
                if (this.configForm.formula.includes(this.formulas[formula].label)) {
                  isIncludes = true
                }
              }
            }
            if (isIncludes === false) {
            if (isIncludes === false && this.configForm.formula !== "") {
              i.formula = "(" + this.configForm.formula + ")";
            } else {
              i.formula = this.configForm.formula;