空调控制优化

dev
xuechunyuan 3 years ago
parent 3571cd93a8
commit d20ee0008b
  1. 10
      src/components/monitoring/conditioner.vue

@ -204,7 +204,7 @@
<div>
<img style="width: 44px; height: 22px" v-if="testObject1.open == 1"
src="../../../public/img/monitoring/open.png" @click="closeCondition" />
<img style="width: 44px; height: 22px" v-if="testObject1.open == 2"
<img style="width: 44px; height: 22px" v-if="testObject1.open == 2 || testObject1.open == 0"
src="../../../public/img/monitoring/off.png" @click="openCondition" />
</div>
</div>
@ -249,7 +249,7 @@
</div>
</div>
</div>
<div class="conditios-block" v-if="testObject1.open == 2">
<div class="conditios-block" v-if="testObject1.open == 2 || testObject1.open == 0">
<div class="conditios-block-temper" v-if="testObject1.mode == 0 || testObject1.mode == 9"
style="justify-content: center">
<img src="../../../public/img/monitoring/electricity/gray-wind.png" alt="" />
@ -1121,9 +1121,9 @@ export default {
//
getMbContent(testObject) {
// console.log('',testObject)
testObject.xmove = '181933.38275619797';
testObject.ymove = '83300.38516883833';
testObject.zmove = '0.5150140523837763';
testObject.xmove = '86462.91989146004';
testObject.ymove = '-18215.882156436604';
testObject.zmove = '0.14878788590431213';
let bgImg1 = require("../../../public/img/monitoring/electricity/condition_mb.png");
let content = `<div id="funcCat-${testObject.funcCat}" class="lift-block" style="position:relative;width:100px">
<div style="background:#07a7ff url(${bgImg1}) 5px center no-repeat;width:100px;height:34px;color:white;font-size:18px;" id="temped-${testObject.code

Loading…
Cancel
Save