|
@@ -4,7 +4,7 @@
|
|
|
<img src="@/assets/images/main/cont_title_bg.png" />
|
|
|
<div class="title">楼宇中控</div>
|
|
|
</div>
|
|
|
- <div class="dialog-cont">
|
|
|
+ <div class="dialog-cont" v-if="flag >= 8">
|
|
|
<div class="dialog-left">
|
|
|
<div class="dialog-list">
|
|
|
<div class="dialog-item wid100">
|
|
@@ -122,11 +122,11 @@
|
|
|
<div class="left-info">
|
|
|
<div class="name">
|
|
|
<div> <img src="@/assets/images/service_new/quantity.png"></div>
|
|
|
- <div @mouseenter="macShow = true">机房总用电量</div>
|
|
|
- <div class="arrow" @mouseenter="macShow = true"></div>
|
|
|
+ <div @click="macShow = !macShow">机房总用电量</div>
|
|
|
+ <div class="arrow" @click="macShow = !macShow"></div>
|
|
|
<!-- 机房总用电量 -->
|
|
|
<transition name="fade-grow">
|
|
|
- <div class="machine" v-if="macShow" @mouseleave="macShow = false">
|
|
|
+ <div class="machine" v-if="macShow" @click="macShow = !macShow">
|
|
|
<div class="macBox">
|
|
|
<div class="content-title">
|
|
|
<span class="title">机房总用电量</span>
|
|
@@ -626,6 +626,7 @@ export default {
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
|
+ flag: 0,
|
|
|
thisWeekElectricityList:{},
|
|
|
fllEleList:{},
|
|
|
warnDeviceList:{},
|
|
@@ -772,6 +773,7 @@ export default {
|
|
|
thisWeekElectricity(this.$props.appOrg).then((res) => {
|
|
|
if (Number(res.code) === 200) {
|
|
|
this.thisWeekElectricityList=res.data;
|
|
|
+ this.flag++
|
|
|
}
|
|
|
});
|
|
|
},
|
|
@@ -780,6 +782,7 @@ export default {
|
|
|
controlElevator(this.$props.appOrg).then((res) => {
|
|
|
if (Number(res.code) === 200) {
|
|
|
this.fllEleList=res.data;
|
|
|
+ this.flag++
|
|
|
}
|
|
|
});
|
|
|
},
|
|
@@ -1576,6 +1579,7 @@ export default {
|
|
|
},
|
|
|
|
|
|
}
|
|
|
+ this.flag++
|
|
|
}
|
|
|
});
|
|
|
},
|
|
@@ -1688,6 +1692,7 @@ export default {
|
|
|
},
|
|
|
splitArea: false
|
|
|
}
|
|
|
+ this.flag++
|
|
|
}
|
|
|
});
|
|
|
},
|
|
@@ -1794,6 +1799,7 @@ export default {
|
|
|
},
|
|
|
splitArea: false,
|
|
|
};
|
|
|
+ this.flag++
|
|
|
}
|
|
|
});
|
|
|
},
|
|
@@ -1879,6 +1885,7 @@ export default {
|
|
|
},
|
|
|
splitArea: false
|
|
|
}
|
|
|
+ this.flag++
|
|
|
}
|
|
|
});
|
|
|
},
|
|
@@ -2018,6 +2025,7 @@ export default {
|
|
|
},
|
|
|
splitArea: false
|
|
|
}
|
|
|
+ this.flag++
|
|
|
}
|
|
|
});
|
|
|
},
|
|
@@ -2027,6 +2035,7 @@ export default {
|
|
|
warnDevice(this.$props.appOrg).then((res) => {
|
|
|
if (Number(res.code) === 200) {
|
|
|
this.warnDeviceList=res.data;
|
|
|
+ this.flag++
|
|
|
}
|
|
|
});
|
|
|
},
|