Browse Source

'台账优化'

zhangyu 4 years ago
parent
commit
feb02953e8

+ 1 - 1
src/components/business_space/business/handsontable.vue

@@ -193,7 +193,7 @@ export default {
     getHeader(headers, buildFloorSelectd) {
       this.headers = headers
       this.headers.forEach(item => {
-        if (item.Path && item.InputMode) {
+        if (item.Path) {
           this.inputMap[item.Path] = item
         }
       })

+ 1 - 1
src/components/ledger/handsontables/assets.vue

@@ -328,7 +328,7 @@
           getDataDictionary(params, res => {
             this.tableHeader = res.Content;
             this.tableHeader.forEach(item => {
-              if (item.Path && item.InputMode) {
+              if (item.Path) {
                 this.inputMap[item.Path] = item
               }
             })

+ 1 - 1
src/components/ledger/handsontables/device.vue

@@ -386,7 +386,7 @@
           getDataDictionary(params, res => {
             this.tableHeader = res.Content;
             this.tableHeader.forEach(item => {
-              if (item.Path && item.InputMode) {
+              if (item.Path) {
                 this.inputMap[item.Path] = item
               }
             })

+ 1 - 1
src/components/ledger/handsontables/system.vue

@@ -188,7 +188,7 @@ export default {
         getDataDictionary(params, res => {
           this.tableHeader = res.Content;
           this.tableHeader.forEach(item => {
-            if (item.Path && item.InputMode) {
+            if (item.Path) {
               this.inputMap[item.Path] = item
             }
           })

+ 1 - 1
src/views/ledger/cenotelist/index.vue

@@ -143,7 +143,7 @@ export default {
       await getDataDictionary(param, res => {
         this.tableHeader = res.Content;
         this.tableHeader.forEach(item => {
-          if (item.Path && item.InputMode) {
+          if (item.Path) {
             this.inputMap[item.Path] = item
           }
         })

+ 1 - 1
src/views/ledger/facility/partsmanage/index.vue

@@ -246,7 +246,7 @@ export default {
       await getDataDictionary(params, res => {
         this.tableHeader = res.Content;
         this.tableHeader.forEach(item => {
-          if (item.Path && item.InputMode) {
+          if (item.Path) {
             this.inputMap[item.Path] = item
           }
         })

+ 1 - 1
src/views/ledger/rentlist/index.vue

@@ -155,7 +155,7 @@ export default {
       await getDataDictionary(param, res => {
         this.tableHeader = res.Content;
         this.tableHeader.forEach(item => {
-          if (item.Path && item.InputMode) {
+          if (item.Path) {
             this.inputMap[item.Path] = item
           }
         })

+ 1 - 1
src/views/ledger/spacelist/spaceadd/index.vue

@@ -145,7 +145,7 @@ export default {
       await getDataDictionary(params, res => {
         this.tableHeader = res.Content;
         this.tableHeader.forEach(item => {
-          if (item.Path && item.InputMode) {
+          if (item.Path) {
             this.inputMap[item.Path] = item
           }
         })