Browse Source

修改问题

张保健 4 years ago
parent
commit
03cfb33745
1 changed files with 9 additions and 2 deletions
  1. 9 2
      src/xt_pages/management/home.vue

+ 9 - 2
src/xt_pages/management/home.vue View File

2664
         getAllMachine(this.forms.zone_id, this.forms.device_type).then(response => {
2664
         getAllMachine(this.forms.zone_id, this.forms.device_type).then(response => {
2665
           if (response.data.state === 1) {
2665
           if (response.data.state === 1) {
2666
             var addmahcer = response.data.data.addmahcer
2666
             var addmahcer = response.data.data.addmahcer
2667
-            console.log('addmacher是', addmahcer)
2667
+      
2668
             this.tableDatatwo = addmahcer
2668
             this.tableDatatwo = addmahcer
2669
             this.tabIndex = this.$route.query.index
2669
             this.tabIndex = this.$route.query.index
2670
-            this.$refs.singleTable.setCurrentRow(this.tableDatatwo[this.tabIndex])
2670
+            var id = this.$route.query.id
2671
+            for(let i = 0;i < this.tableDatatwo.length;i++) {
2672
+              if(this.tableDatatwo[i].id == id) {  
2673
+                this.$refs.singleTable.setCurrentRow(this.tableDatatwo[i])
2674
+                break
2675
+              }
2676
+            }
2677
+            // this.$refs.singleTable.setCurrentRow(this.tableDatatwo[this.tabIndex])
2671
           }
2678
           }
2672
         })
2679
         })
2673
       },
2680
       },