Browse Source

日照强度改为光照强度

chenminghua 3 years ago
parent
commit
42edc89b41
1 changed files with 8 additions and 8 deletions
  1. 8 8
      src/views/LightMatrix1/LightMatrix1.vue

+ 8 - 8
src/views/LightMatrix1/LightMatrix1.vue

@@ -338,7 +338,7 @@ export default {
           key: "lxts",
         },
         {
-          text: "照强度",
+          text: "照强度",
           color: "gray",
           key: "ssfs",
         },
@@ -401,10 +401,10 @@ export default {
     // 切换显示种类
     changeShow(category, fjzt, skipFill) {
       if (!skipFill) {
-        console.log("!skipFill:", !skipFill);
+        // console.log("!skipFill:", !skipFill);
         if (this.fillCategory === category) {
-          console.log("fillCategory:", this.fillCategory);
-          console.log("fillFjz:", this.fillFjzt);
+          // console.log("fillCategory:", this.fillCategory);
+          // console.log("fillFjz:", this.fillFjzt);
           this.fillCategory = null;
           this.fillFjzt = null;
         } else {
@@ -416,9 +416,9 @@ export default {
       let fjmap = this.BASE.deepCopy(this.sourceMap.fjmap);
 
       fjmap.forEach((pEle) => {
-        console.log("pele:", pEle);
+        // console.log("pele:", pEle);
         pEle.forEach((cEle) => {
-          console.log("cele:", cEle);
+          // console.log("cele:", cEle);
           cEle.isShow = true;
           if (!this.fillCategory) {
             cEle.isShow = true;
@@ -447,7 +447,7 @@ export default {
         subUrl: "matrix/matrixPush",
         success(res) {
           if (res) {
-            console.log("resmap:", res);
+            // console.log("resmap:", res);
             let sourceMap = res.data;
             let fjmap = [];
             for (let key in sourceMap) {
@@ -463,7 +463,7 @@ export default {
               }
             }
             that.sourceMap = sourceMap;
-            console.log("sourceMap:", that.sourceMap);
+            // console.log("sourceMap:", that.sourceMap);
             if (that.fillCategory) {
               that.changeShow(that.fillCategory, that.fillFjzt, true);
             }