|
@@ -12,7 +12,7 @@
|
|
<div class="left-content">
|
|
<div class="left-content">
|
|
<!-- 局部通风机 -->
|
|
<!-- 局部通风机 -->
|
|
<div class="monitor-box">
|
|
<div class="monitor-box">
|
|
- <fanMonitor />
|
|
|
|
|
|
+ <fanMonitor :fandata="fanLocalList" />
|
|
</div>
|
|
</div>
|
|
<!-- 主通风机 -->
|
|
<!-- 主通风机 -->
|
|
<div class="monitor-box monitor-box1">
|
|
<div class="monitor-box monitor-box1">
|
|
@@ -39,7 +39,15 @@
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="three-modal">
|
|
<div class="three-modal">
|
|
- <iframe id="iframe" ref="iframe" src="http://10.10.150.72:8091/user/autologin" scrolling="auto" frameborder="0" width="100%" height="100%"></iframe>
|
|
|
|
|
|
+ <iframe
|
|
|
|
+ id="iframe"
|
|
|
|
+ ref="iframe"
|
|
|
|
+ src="http://10.10.150.72:8091/user/autologin"
|
|
|
|
+ scrolling="auto"
|
|
|
|
+ frameborder="0"
|
|
|
|
+ width="100%"
|
|
|
|
+ height="100%"
|
|
|
|
+ ></iframe>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- 风量监测 -->
|
|
<!-- 风量监测 -->
|
|
@@ -65,7 +73,7 @@
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
<script lang="ts" setup>
|
|
<script lang="ts" setup>
|
|
- import { reactive } from 'vue';
|
|
|
|
|
|
+ import { reactive, onMounted, ref } from 'vue';
|
|
import fanMonitor from './components/fan-monitor.vue';
|
|
import fanMonitor from './components/fan-monitor.vue';
|
|
import mainMonitor from './components/main-monitor.vue';
|
|
import mainMonitor from './components/main-monitor.vue';
|
|
import windDevice from './components/wind-device.vue';
|
|
import windDevice from './components/wind-device.vue';
|
|
@@ -73,7 +81,10 @@
|
|
import windLine from './components/wind-line.vue';
|
|
import windLine from './components/wind-line.vue';
|
|
import workMonitor from './components/work-monitor.vue';
|
|
import workMonitor from './components/work-monitor.vue';
|
|
import deviceWarn from './components/device-warn.vue';
|
|
import deviceWarn from './components/device-warn.vue';
|
|
|
|
+ import { list } from './clique.api';
|
|
|
|
|
|
|
|
+ let timer: NodeJS.Timeout | null = null;
|
|
|
|
+ let fanLocalList = reactive<any[]>([]); //局部风机数据
|
|
let navList = reactive([
|
|
let navList = reactive([
|
|
{ name: '总风量(m³/min)', isShow: true, valList: [{ val: '2' }, { val: '1' }, { val: '3' }, { val: '3' }, { val: '0' }] },
|
|
{ name: '总风量(m³/min)', isShow: true, valList: [{ val: '2' }, { val: '1' }, { val: '3' }, { val: '3' }, { val: '0' }] },
|
|
{ name: '总阻力(Pa)', isShow: true, valList: [{ val: '0' }, { val: '2' }, { val: '4' }, { val: '6' }, { val: '3' }] },
|
|
{ name: '总阻力(Pa)', isShow: true, valList: [{ val: '0' }, { val: '2' }, { val: '4' }, { val: '6' }, { val: '3' }] },
|
|
@@ -81,6 +92,22 @@
|
|
{ name: '外部漏风率', isShow: false, val: '6%' },
|
|
{ name: '外部漏风率', isShow: false, val: '6%' },
|
|
{ name: '有效风量率', isShow: false, val: '91.5%' },
|
|
{ name: '有效风量率', isShow: false, val: '91.5%' },
|
|
]);
|
|
]);
|
|
|
|
+ function getList() {
|
|
|
|
+ list({}).then((res) => {
|
|
|
|
+ console.log(res, 'res-----------');
|
|
|
|
+ fanLocalList.length=0
|
|
|
|
+ fanLocalList.push(res.fanlocal)
|
|
|
|
+ console.log(fanLocalList, '---------');
|
|
|
|
+ });
|
|
|
|
+ }
|
|
|
|
+ onMounted(() => {
|
|
|
|
+ // getList()
|
|
|
|
+ timer = Number(
|
|
|
|
+ setInterval(() => {
|
|
|
|
+ getList();
|
|
|
|
+ }, 3000)
|
|
|
|
+ );
|
|
|
|
+ });
|
|
</script>
|
|
</script>
|
|
|
|
|
|
<style lang="less" scoped>
|
|
<style lang="less" scoped>
|
|
@@ -230,7 +257,7 @@
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
- .three-modal{
|
|
|
|
|
|
+ .three-modal {
|
|
width: 100%;
|
|
width: 100%;
|
|
height: 100%;
|
|
height: 100%;
|
|
padding: 20px 17px 20px 15px;
|
|
padding: 20px 17px 20px 15px;
|