|
@@ -29,9 +29,13 @@
|
|
|
<div class="right-inputs">
|
|
|
<div class="vent-flex-row">
|
|
|
<div class="input-title">出风口风量(m³/min):</div>
|
|
|
- <span class="input-box" size="large">{{ data.ductOutletAirVolume_merge }}</span>
|
|
|
+ <span class="input-box" size="normal">{{ data.ductOutletAirVolume_merge }}</span>
|
|
|
<div class="input-title">局扇供风量(m³/min):</div>
|
|
|
- <span class="input-box" size="large">{{ data.inletAirVolume_merge }}</span>
|
|
|
+ <span class="input-box" size="normal">{{ data.inletAirVolume_merge }}</span>
|
|
|
+ <div class="input-title">目标风量(m³/min):</div>
|
|
|
+ <span class="input-box" size="normal">{{ props.targetVolume }}</span>
|
|
|
+ <div class="btn btn1" @click="onHide">隐藏</div>
|
|
|
+ <div class="btn btn1" @click="stop">紧急停止</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -44,7 +48,8 @@ import { ref, onMounted, nextTick, watch } from 'vue';
|
|
|
import echarts from '/@/utils/lib/echarts';
|
|
|
import BarAndLine from '/@/components/chart/BarAndLine.vue';
|
|
|
import { option, chartsColumnList1, echatsOption1 } from '../fanLocal.data';
|
|
|
-
|
|
|
+import { autoAdjust } from '../fanLocal.api';
|
|
|
+import { message } from 'ant-design-vue';
|
|
|
const emit = defineEmits(['close', 'register', 'openModal']);
|
|
|
const props = defineProps({
|
|
|
data: {
|
|
@@ -54,6 +59,9 @@ const props = defineProps({
|
|
|
targetVolume: {
|
|
|
type: Number,
|
|
|
},
|
|
|
+ fanlocalId: {
|
|
|
+ type: String,
|
|
|
+ },
|
|
|
});
|
|
|
// 注册 modal
|
|
|
const [register, { closeModal }] = useModalInner((data) => {
|
|
@@ -86,7 +94,6 @@ watch(
|
|
|
echartsData.value.shift();
|
|
|
}
|
|
|
echartsData.value = [...echartsData.value, combinedData];
|
|
|
- console.log('echarts data:', echartsData.value);
|
|
|
}
|
|
|
);
|
|
|
function onSubmit() {
|
|
@@ -108,6 +115,19 @@ function initEcharts() {
|
|
|
});
|
|
|
}
|
|
|
}
|
|
|
+function onHide() {
|
|
|
+ closeModal();
|
|
|
+}
|
|
|
+function stop() {
|
|
|
+ const params = { auto: 0, fanlocalId: props.fanlocalId };
|
|
|
+ autoAdjust(params)
|
|
|
+ .then(() => {
|
|
|
+ message.success('指令已下发成功!');
|
|
|
+ })
|
|
|
+ .catch(() => {
|
|
|
+ message.error('指令下发失败');
|
|
|
+ });
|
|
|
+}
|
|
|
onMounted(() => {
|
|
|
// initEcharts();
|
|
|
});
|
|
@@ -136,7 +156,7 @@ onMounted(() => {
|
|
|
}
|
|
|
}
|
|
|
.setting-box {
|
|
|
- width: 1570px;
|
|
|
+ width: 100%;
|
|
|
height: 70px;
|
|
|
margin: 10px 0;
|
|
|
background-color: #ffffff05;
|
|
@@ -169,7 +189,7 @@ onMounted(() => {
|
|
|
max-width: 150px;
|
|
|
}
|
|
|
.input-box {
|
|
|
- width: 220px !important;
|
|
|
+ width: 120px !important;
|
|
|
background: transparent !important;
|
|
|
border-color: #00d8ff44 !important;
|
|
|
margin-right: 20px;
|
|
@@ -177,6 +197,7 @@ onMounted(() => {
|
|
|
}
|
|
|
.btn {
|
|
|
padding: 8px 20px;
|
|
|
+ margin: 10px;
|
|
|
position: relative;
|
|
|
border-radius: 2px;
|
|
|
color: #fff;
|