|  |  | 
 |  |  |         </div> | 
 |  |  |       </el-col> | 
 |  |  |     </el-row> | 
 |  |  |     <configInfo ref="configInfo"></configInfo> | 
 |  |  |   </div> | 
 |  |  | </template> | 
 |  |  |  | 
 |  |  | 
 |  |  | import consoleNodeLoad from './console/ConsoleNodeLoad.vue' | 
 |  |  | import consoleDisk from './console/ConsoleDisk.vue' | 
 |  |  | import consoleResource from './console/ConsoleResource.vue' | 
 |  |  | import configInfo from './dialog/configInfo.vue' | 
 |  |  |  | 
 |  |  | import echarts from 'echarts'; | 
 |  |  |  | 
 |  |  | 
 |  |  |     consoleNodeLoad, | 
 |  |  |     consoleDisk, | 
 |  |  |     consoleResource, | 
 |  |  |     configInfo, | 
 |  |  |   }, | 
 |  |  |   data() { | 
 |  |  |     return { | 
 |  |  |       timer: null | 
 |  |  |       timer: null, | 
 |  |  |     }; | 
 |  |  |   }, | 
 |  |  |   created() { | 
 |  |  | 
 |  |  |         window.clearTimeout(this.timer); | 
 |  |  |       } | 
 |  |  |       this.timer = setTimeout(()=>{ | 
 |  |  |         this.getSystemInfo(); | 
 |  |  |         this.getLoad(); | 
 |  |  |         this.timer = null; | 
 |  |  |         this.loopForSystemInfo() | 
 |  |  |         this.getResourceInfo() | 
 |  |  |         if (this.$route.path === "/console") { | 
 |  |  |           this.getSystemInfo(); | 
 |  |  |           this.getLoad(); | 
 |  |  |           this.timer = null; | 
 |  |  |           this.loopForSystemInfo() | 
 |  |  |           this.getResourceInfo() | 
 |  |  |         } | 
 |  |  |  | 
 |  |  |       }, 2000) | 
 |  |  |     }, | 
 |  |  |     getSystemInfo: function (){ | 
 |  |  | 
 |  |  |     }, | 
 |  |  |     showInfo: function (){ | 
 |  |  |  | 
 |  |  |       this.$axios({ | 
 |  |  |         method: 'get', | 
 |  |  |         url: `/api/server/system/configInfo`, | 
 |  |  |       }).then( (res)=> { | 
 |  |  |         console.log(res) | 
 |  |  |         if (res.data.code === 0) { | 
 |  |  |           console.log(2222) | 
 |  |  |           console.log(this.$refs.configInfo) | 
 |  |  |           this.$refs.configInfo.openDialog(res.data.data) | 
 |  |  |         } | 
 |  |  |       }).catch( (error)=> { | 
 |  |  |       }); | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |   } |