@@ -78,7 +78,7 @@ export default {
components: { bomBox, strategyLine },
methods:{
isShowDraw(){
- if(Object.keys(this.chillerCommandQ).length>0 && this.chillerCommandQ.isNew){
+ if((Object.keys(this.chillerCommandQ).length>0 && this.chillerCommandQ.isNew) || (Object.keys(this.chillerCommandQ).length>0 && !this.chillerCommandQ.isExecuted)){
this.showDraw = true
}else{
this.showDraw = false
@@ -134,7 +134,7 @@ export default {
this.clearId = setInterval(function(){
vm.getChiller()
vm.$refs.box.isShowDraw()
- },5000*60)
+ },1000*60)
this.getChiller()
},