|  | @@ -0,0 +1,1535 @@
 | 
	
		
			
				|  |  | +<template>
 | 
	
		
			
				|  |  | +    <div>{{ Math.random() }}</div>
 | 
	
		
			
				|  |  | +    <div id="nitrogen3D" style="width: 100%; height: 100%; position: absolute; overflow: hidden"></div>
 | 
	
		
			
				|  |  | +    <div id="nitrogenCss3D" class="threejs-Object-CSS"
 | 
	
		
			
				|  |  | +        style="width: 100%; height: 100%; position: absolute; pointer-events: none; overflow: hidden; z-index: 2; top: 0px; left: 0px">
 | 
	
		
			
				|  |  | +        <a-spin :spinning="loading" />
 | 
	
		
			
				|  |  | +        <template>
 | 
	
		
			
				|  |  | +            <div v-for="groupNum in 1" :key="groupNum" class="modal-monitor">
 | 
	
		
			
				|  |  | +                <fourBorderBg :class="`kyj${groupNum}`" :id="`nitrogenMonitor${groupNum}`">
 | 
	
		
			
				|  |  | +                    <div class="title">{{ monitorData[0]['strname'] }} </div>
 | 
	
		
			
				|  |  | +                    <div class="monitor-item">
 | 
	
		
			
				|  |  | +                        <span class="monitor-title">实时流量:</span>
 | 
	
		
			
				|  |  | +                        <span class="monitor-val" v-if="!refresh"><span class="val">{{
 | 
	
		
			
				|  |  | +                            monitorData[0]['flow'] ? monitorData[0]['flow'] : '-' }}</span>
 | 
	
		
			
				|  |  | +                            <span class="unit">m³/min</span></span>
 | 
	
		
			
				|  |  | +                    </div>
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                    <div class="monitor-item">
 | 
	
		
			
				|  |  | +                        <span class="monitor-title">单次流量:</span>
 | 
	
		
			
				|  |  | +                        <span class="monitor-val" v-if="!refresh"><span class="val">{{
 | 
	
		
			
				|  |  | +                            monitorData[0]['single_flow'] ? monitorData[0]['single_flow'] : '-'
 | 
	
		
			
				|  |  | +                        }}</span>
 | 
	
		
			
				|  |  | +                            <span class="unit">m³</span></span>
 | 
	
		
			
				|  |  | +                    </div>
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                    <div class="monitor-item">
 | 
	
		
			
				|  |  | +                        <span class="monitor-title">总流量:</span>
 | 
	
		
			
				|  |  | +                        <span class="monitor-val" v-if="!refresh"><span class="val">{{
 | 
	
		
			
				|  |  | +                            monitorData[0]['total_flow'] ? monitorData[0]['total_flow'] : '-'
 | 
	
		
			
				|  |  | +                        }}</span>
 | 
	
		
			
				|  |  | +                            <span class="unit">m³</span></span>
 | 
	
		
			
				|  |  | +                    </div>
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                    <div class="monitor-item">
 | 
	
		
			
				|  |  | +                        <span class="monitor-title">氧浓度:</span>
 | 
	
		
			
				|  |  | +                        <span class="monitor-val" v-if="!refresh"><span class="val">{{
 | 
	
		
			
				|  |  | +                            monitorData[0]['oxygen_concentration'] ? monitorData[0]['oxygen_concentration'] : '-'
 | 
	
		
			
				|  |  | +                        }}</span>
 | 
	
		
			
				|  |  | +                            <span class="unit">%</span></span>
 | 
	
		
			
				|  |  | +                    </div>
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                </fourBorderBg>
 | 
	
		
			
				|  |  | +            </div>
 | 
	
		
			
				|  |  | +        </template>
 | 
	
		
			
				|  |  | +    </div>
 | 
	
		
			
				|  |  | +    <div class="nitrogen-home">
 | 
	
		
			
				|  |  | +        <div class="nitrogen-container">
 | 
	
		
			
				|  |  | +            <div class="top-box">
 | 
	
		
			
				|  |  | +                <!-- 中间区域控制按钮 -->
 | 
	
		
			
				|  |  | +                <div class="center-item-box">
 | 
	
		
			
				|  |  | +                    <div class="top-left">
 | 
	
		
			
				|  |  | +                        <div class="button-box" @click="handlerDevice(airCompressorState[0], '主机启动')">主机启动</div>
 | 
	
		
			
				|  |  | +                        <div class="button-box" @click="handlerDevice(airCompressorState[0], '主机停止')">主机停止</div>
 | 
	
		
			
				|  |  | +                        <div class="button-box" @click="handlerDevice(airCompressorState[0], '备机启动')">备机启动</div>
 | 
	
		
			
				|  |  | +                        <div class="button-box" @click="handlerDevice(airCompressorState[0], '备机停止')">备机停止</div>
 | 
	
		
			
				|  |  | +                    </div>
 | 
	
		
			
				|  |  | +                    <div class="top-center">
 | 
	
		
			
				|  |  | +                        <div class="top-c-label">通信状态:</div>
 | 
	
		
			
				|  |  | +                        <div class="top-c-val">{{ monitorData[0]['netStatus']==1 ? '连接' : monitorData[0]['netStatus']==0 ? '断开' : '未知'  }}</div>
 | 
	
		
			
				|  |  | +                    </div>
 | 
	
		
			
				|  |  | +                    <div class="top-right">
 | 
	
		
			
				|  |  | +                        <div class="control-type">
 | 
	
		
			
				|  |  | +                            <div class="control-title">运行状态:</div>
 | 
	
		
			
				|  |  | +                            <a-radio-group v-model:value="monitorData[0]['overhaul_run']">
 | 
	
		
			
				|  |  | +                                <a-radio :value="`1`" disabled>检修</a-radio>
 | 
	
		
			
				|  |  | +                                <a-radio :value="`0`" disabled>运行</a-radio>
 | 
	
		
			
				|  |  | +                            </a-radio-group>
 | 
	
		
			
				|  |  | +                        </div>
 | 
	
		
			
				|  |  | +                        <div class="control-type">
 | 
	
		
			
				|  |  | +                            <div class="control-title">控制模式:</div>
 | 
	
		
			
				|  |  | +                            <a-radio-group v-model:value="monitorData[0]['remote_local']">
 | 
	
		
			
				|  |  | +                                <a-radio :value="`1`" disabled>就地</a-radio>
 | 
	
		
			
				|  |  | +                                <a-radio :value="`0`" disabled>远程</a-radio>
 | 
	
		
			
				|  |  | +                            </a-radio-group>
 | 
	
		
			
				|  |  | +                        </div>
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                    </div>
 | 
	
		
			
				|  |  | +                </div>
 | 
	
		
			
				|  |  | +                <!-- 底部区域故障数据 -->
 | 
	
		
			
				|  |  | +                <div class="footer-item-box">
 | 
	
		
			
				|  |  | +                    <div class="device-detail">
 | 
	
		
			
				|  |  | +                        <div class="device-title"> </div>
 | 
	
		
			
				|  |  | +                        <div class="device-val">主机进气蝶阀</div>
 | 
	
		
			
				|  |  | +                        <div class="device-val">主机出气蝶阀</div>
 | 
	
		
			
				|  |  | +                        <div class="device-val">备机进气蝶阀</div>
 | 
	
		
			
				|  |  | +                        <div class="device-val">备机出气蝶阀</div>
 | 
	
		
			
				|  |  | +                        <!-- <div class="device-val">故障</div> -->
 | 
	
		
			
				|  |  | +                    </div>
 | 
	
		
			
				|  |  | +                    <div v-for="(device, key) in deviceMonitorList" class="device-detail" :key="key">
 | 
	
		
			
				|  |  | +                        <div class="device-title">{{ device.title }}</div>
 | 
	
		
			
				|  |  | +                        <div v-for="(detailItem, index) in device.dataList" :key="detailItem.code" class="device-val">
 | 
	
		
			
				|  |  | +                            <span :style="{ color: monitorData[0][detailItem.code] != '1' ? '#BFBFBF' : '#10BC79' }">{{
 | 
	
		
			
				|  |  | +                                monitorData[0][detailItem.code] == '0' ? '正常' : monitorData[0][detailItem.code] == '1' ?
 | 
	
		
			
				|  |  | +                                '故障' :
 | 
	
		
			
				|  |  | +                                '-'
 | 
	
		
			
				|  |  | +                            }}</span>
 | 
	
		
			
				|  |  | +                            <!-- <span v-if="index == 1"
 | 
	
		
			
				|  |  | +                                :style="{ color: monitorData[0][detailItem.code] != '1' ? '#BFBFBF' : '#10BC79' }">{{
 | 
	
		
			
				|  |  | +                                    monitorData[0][detailItem.code] == '0' ? '正常' : monitorData[0][detailItem.code] == '1' ? '故障' :
 | 
	
		
			
				|  |  | +                                    '-'
 | 
	
		
			
				|  |  | +                                }}</span> -->
 | 
	
		
			
				|  |  | +                        </div>
 | 
	
		
			
				|  |  | +                    </div>
 | 
	
		
			
				|  |  | +                </div>
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                <!-- 左边监测数据 -->
 | 
	
		
			
				|  |  | +                <div class="lr-box left-box">
 | 
	
		
			
				|  |  | +                    <div class="item item-l" v-for="(groupNum, ind) in monitorDataGroupNum" :key="groupNum">
 | 
	
		
			
				|  |  | +                        <ventBox1>
 | 
	
		
			
				|  |  | +                            <template #title>
 | 
	
		
			
				|  |  | +                                <!-- <div>{{ monitorData[groupNum - 1]['strname'] }}</div>   -->
 | 
	
		
			
				|  |  | +                                <div v-if="ind == 0">{{ `${monitorData[0]['strname']}-主` }}</div>
 | 
	
		
			
				|  |  | +                                <div v-else>{{ `${monitorData[0]['strname']}-备` }}</div>
 | 
	
		
			
				|  |  | +                            </template>
 | 
	
		
			
				|  |  | +                            <template #container>
 | 
	
		
			
				|  |  | +                                <div class="monitor-box">
 | 
	
		
			
				|  |  | +                                    <div class="parameter-title group-parameter-title">
 | 
	
		
			
				|  |  | +                                        <SvgIcon class="icon" size="38" name="device-group-paramer" /><span>进气蝶阀参数</span>
 | 
	
		
			
				|  |  | +                                    </div>
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                                    <div v-if="ind == 0">
 | 
	
		
			
				|  |  | +                                        <div class="state-item" v-for="(data, index) in groupParameterData" :key="index">
 | 
	
		
			
				|  |  | +                                            <div class="item-col">
 | 
	
		
			
				|  |  | +                                                <span class="state-title1">{{ Object.values(data)[0] }} :</span>
 | 
	
		
			
				|  |  | +                                                <span class="state-val1" v-if="index == 0">{{
 | 
	
		
			
				|  |  | +                                                    (monitorData.length > 0 && monitorData[0][Object.keys(data)[0]])
 | 
	
		
			
				|  |  | +                                                    >= 0
 | 
	
		
			
				|  |  | +                                                    ? monitorData[0][Object.keys(data)[0]] ?
 | 
	
		
			
				|  |  | +                                                        parseFloat(monitorData[0][Object.keys(data)[0]]).toFixed(2) : '-'
 | 
	
		
			
				|  |  | +                                                    : '-'
 | 
	
		
			
				|  |  | +                                                }}</span>
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                                                <span class="state-val" v-else>
 | 
	
		
			
				|  |  | +                                                    <span v-if="monitorData[0][Object.keys(data)[0]] == '0'"
 | 
	
		
			
				|  |  | +                                                        style="display: inline-block; width: 10px;height: 10px;border-radius: 50%;background-color: blue;"></span>
 | 
	
		
			
				|  |  | +                                                    <span v-else-if="monitorData[0][Object.keys(data)[0]] == '1'"
 | 
	
		
			
				|  |  | +                                                        style="display: inline-block; width: 10px;height: 10px;border-radius: 50%;background-color: greenyellow;"></span>
 | 
	
		
			
				|  |  | +                                                    <span v-else
 | 
	
		
			
				|  |  | +                                                        style="display: inline-block; width: 10px;height: 10px;border-radius: 50%;background-color: #ccc;"></span>
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                                                </span>
 | 
	
		
			
				|  |  | +                                            </div>
 | 
	
		
			
				|  |  | +                                            <div class="item-col" v-if="Object.keys(data)[1]">
 | 
	
		
			
				|  |  | +                                                <span class="state-title1">{{ Object.values(data)[1] }} :</span>
 | 
	
		
			
				|  |  | +                                                <span class="state-val1">
 | 
	
		
			
				|  |  | +                                                    <span v-if="monitorData[0][Object.keys(data)[1]] == '0'"
 | 
	
		
			
				|  |  | +                                                        style="display: inline-block; width: 10px;height: 10px;border-radius: 50%;background-color: blue;"></span>
 | 
	
		
			
				|  |  | +                                                    <span v-else-if="monitorData[0][Object.keys(data)[1]] == '1'"
 | 
	
		
			
				|  |  | +                                                        style="display: inline-block; width: 10px;height: 10px;border-radius: 50%;background-color: greenyellow;"></span>
 | 
	
		
			
				|  |  | +                                                    <span v-else
 | 
	
		
			
				|  |  | +                                                        style="display: inline-block; width: 10px;height: 10px;border-radius: 50%;background-color: #ccc;"></span>
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                                                </span>
 | 
	
		
			
				|  |  | +                                            </div>
 | 
	
		
			
				|  |  | +                                        </div>
 | 
	
		
			
				|  |  | +                                    </div>
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                                    <div v-else>
 | 
	
		
			
				|  |  | +                                        <div class="state-item" v-for="(data, index) in groupParameterData1" :key="index">
 | 
	
		
			
				|  |  | +                                            <div class="item-col">
 | 
	
		
			
				|  |  | +                                                <span class="state-title1">{{ Object.values(data)[0] }} :</span>
 | 
	
		
			
				|  |  | +                                                <span class="state-val1" v-if="index == 0">{{
 | 
	
		
			
				|  |  | +                                                    (monitorData.length > 0 && monitorData[0][Object.keys(data)[0]])
 | 
	
		
			
				|  |  | +                                                    >= 0
 | 
	
		
			
				|  |  | +                                                    ? monitorData[0][Object.keys(data)[0]] ?
 | 
	
		
			
				|  |  | +                                                        parseFloat(monitorData[0][Object.keys(data)[0]]).toFixed(2) : '-'
 | 
	
		
			
				|  |  | +                                                    : '-'
 | 
	
		
			
				|  |  | +                                                }}</span>
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                                                <span class="state-val" v-else>
 | 
	
		
			
				|  |  | +                                                    <span v-if="monitorData[0][Object.keys(data)[0]] == '0'"
 | 
	
		
			
				|  |  | +                                                        style="display: inline-block; width: 10px;height: 10px;border-radius: 50%;background-color: blue;"></span>
 | 
	
		
			
				|  |  | +                                                    <span v-else-if="monitorData[0][Object.keys(data)[0]] == '1'"
 | 
	
		
			
				|  |  | +                                                        style="display: inline-block; width: 10px;height: 10px;border-radius: 50%;background-color: greenyellow;"></span>
 | 
	
		
			
				|  |  | +                                                    <span v-else
 | 
	
		
			
				|  |  | +                                                        style="display: inline-block; width: 10px;height: 10px;border-radius: 50%;background-color: #ccc;"></span>
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                                                </span>
 | 
	
		
			
				|  |  | +                                            </div>
 | 
	
		
			
				|  |  | +                                            <div class="item-col" v-if="Object.keys(data)[1]">
 | 
	
		
			
				|  |  | +                                                <span class="state-title1">{{ Object.values(data)[1] }} :</span>
 | 
	
		
			
				|  |  | +                                                <span class="state-val1">
 | 
	
		
			
				|  |  | +                                                    <span v-if="monitorData[0][Object.keys(data)[1]] == '0'"
 | 
	
		
			
				|  |  | +                                                        style="display: inline-block; width: 10px;height: 10px;border-radius: 50%;background-color: blue;"></span>
 | 
	
		
			
				|  |  | +                                                    <span v-else-if="monitorData[0][Object.keys(data)[1]] == '1'"
 | 
	
		
			
				|  |  | +                                                        style="display: inline-block; width: 10px;height: 10px;border-radius: 50%;background-color: greenyellow;"></span>
 | 
	
		
			
				|  |  | +                                                    <span v-else
 | 
	
		
			
				|  |  | +                                                        style="display: inline-block; width: 10px;height: 10px;border-radius: 50%;background-color: #ccc;"></span>
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                                                </span>
 | 
	
		
			
				|  |  | +                                            </div>
 | 
	
		
			
				|  |  | +                                        </div>
 | 
	
		
			
				|  |  | +                                    </div>
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                                </div>
 | 
	
		
			
				|  |  | +                                <div class="monitor-box monitor-box1 ">
 | 
	
		
			
				|  |  | +                                    <div class="parameter-title device-parameter-title">
 | 
	
		
			
				|  |  | +                                        <SvgIcon class="icon" size="32" name="device-paramer" /><span>出气蝶阀参数</span>
 | 
	
		
			
				|  |  | +                                    </div>
 | 
	
		
			
				|  |  | +                                    <div class="state-box">
 | 
	
		
			
				|  |  | +                                        <div v-if="ind == 0">
 | 
	
		
			
				|  |  | +                                            <div class="state-item" v-for="(data, index) in deviceParameterData"
 | 
	
		
			
				|  |  | +                                                :key="index">
 | 
	
		
			
				|  |  | +                                                <div class="item-col">
 | 
	
		
			
				|  |  | +                                                    <span class="state-title1">{{ Object.values(data)[0] }} :</span>
 | 
	
		
			
				|  |  | +                                                    <span class="state-val1" v-if="index == 0">{{
 | 
	
		
			
				|  |  | +                                                        (monitorData.length > 0 && monitorData[0][Object.keys(data)[0]])
 | 
	
		
			
				|  |  | +                                                        >= 0
 | 
	
		
			
				|  |  | +                                                        ? monitorData[0][Object.keys(data)[0]] ?
 | 
	
		
			
				|  |  | +                                                            parseFloat(monitorData[0][Object.keys(data)[0]]).toFixed(2) : '-'
 | 
	
		
			
				|  |  | +                                                        : '-'
 | 
	
		
			
				|  |  | +                                                    }}</span>
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                                                    <span class="state-val" v-else>
 | 
	
		
			
				|  |  | +                                                        <span v-if="monitorData[0][Object.keys(data)[0]] == '0'"
 | 
	
		
			
				|  |  | +                                                            style="display: inline-block; width: 10px;height: 10px;border-radius: 50%;background-color: blue;"></span>
 | 
	
		
			
				|  |  | +                                                        <span v-else-if="monitorData[0][Object.keys(data)[0]] == '1'"
 | 
	
		
			
				|  |  | +                                                            style="display: inline-block; width: 10px;height: 10px;border-radius: 50%;background-color: greenyellow;"></span>
 | 
	
		
			
				|  |  | +                                                        <span v-else
 | 
	
		
			
				|  |  | +                                                            style="display: inline-block; width: 10px;height: 10px;border-radius: 50%;background-color: #ccc;"></span>
 | 
	
		
			
				|  |  | +                                                    </span>
 | 
	
		
			
				|  |  | +                                                </div>
 | 
	
		
			
				|  |  | +                                                <div class="item-col" v-if="Object.keys(data)[1]">
 | 
	
		
			
				|  |  | +                                                    <span class="state-title1">{{ Object.values(data)[1] }} :</span>
 | 
	
		
			
				|  |  | +                                                    <span class="state-val1">
 | 
	
		
			
				|  |  | +                                                        <span v-if="monitorData[0][Object.keys(data)[1]] == '0'"
 | 
	
		
			
				|  |  | +                                                            style="display: inline-block; width: 10px;height: 10px;border-radius: 50%;background-color: blue;"></span>
 | 
	
		
			
				|  |  | +                                                        <span v-else-if="monitorData[0][Object.keys(data)[1]] == '1'"
 | 
	
		
			
				|  |  | +                                                            style="display: inline-block; width: 10px;height: 10px;border-radius: 50%;background-color: greenyellow;"></span>
 | 
	
		
			
				|  |  | +                                                        <span v-else
 | 
	
		
			
				|  |  | +                                                            style="display: inline-block; width: 10px;height: 10px;border-radius: 50%;background-color: #ccc;"></span>
 | 
	
		
			
				|  |  | +                                                    </span>
 | 
	
		
			
				|  |  | +                                                </div>
 | 
	
		
			
				|  |  | +                                            </div>
 | 
	
		
			
				|  |  | +                                        </div>
 | 
	
		
			
				|  |  | +                                        <div v-else>
 | 
	
		
			
				|  |  | +                                            <div class="state-item" v-for="(data, index) in deviceParameterData1"
 | 
	
		
			
				|  |  | +                                                :key="index">
 | 
	
		
			
				|  |  | +                                                <div class="item-col">
 | 
	
		
			
				|  |  | +                                                    <span class="state-title1">{{ Object.values(data)[0] }} :</span>
 | 
	
		
			
				|  |  | +                                                    <span class="state-val1" v-if="index == 0">{{
 | 
	
		
			
				|  |  | +                                                        (monitorData.length > 0 && monitorData[0][Object.keys(data)[0]])
 | 
	
		
			
				|  |  | +                                                        >= 0
 | 
	
		
			
				|  |  | +                                                        ? monitorData[0][Object.keys(data)[0]] ?
 | 
	
		
			
				|  |  | +                                                            parseFloat(monitorData[0][Object.keys(data)[0]]).toFixed(2) : '-'
 | 
	
		
			
				|  |  | +                                                        : '-'
 | 
	
		
			
				|  |  | +                                                    }}</span>
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                                                    <span class="state-val" v-else>
 | 
	
		
			
				|  |  | +                                                        <span v-if="monitorData[0][Object.keys(data)[0]] == '0'"
 | 
	
		
			
				|  |  | +                                                            style="display: inline-block; width: 10px;height: 10px;border-radius: 50%;background-color: blue;"></span>
 | 
	
		
			
				|  |  | +                                                        <span v-else-if="monitorData[0][Object.keys(data)[0]] == '1'"
 | 
	
		
			
				|  |  | +                                                            style="display: inline-block; width: 10px;height: 10px;border-radius: 50%;background-color: greenyellow;"></span>
 | 
	
		
			
				|  |  | +                                                        <span v-else
 | 
	
		
			
				|  |  | +                                                            style="display: inline-block; width: 10px;height: 10px;border-radius: 50%;background-color: #ccc;"></span>
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                                                    </span>
 | 
	
		
			
				|  |  | +                                                </div>
 | 
	
		
			
				|  |  | +                                                <div class="item-col" v-if="Object.keys(data)[1]">
 | 
	
		
			
				|  |  | +                                                    <span class="state-title1">{{ Object.values(data)[1] }} :</span>
 | 
	
		
			
				|  |  | +                                                    <span class="state-val1">
 | 
	
		
			
				|  |  | +                                                        <span v-if="monitorData[0][Object.keys(data)[1]] == '0'"
 | 
	
		
			
				|  |  | +                                                            style="display: inline-block; width: 10px;height: 10px;border-radius: 50%;background-color: blue;"></span>
 | 
	
		
			
				|  |  | +                                                        <span v-else-if="monitorData[0][Object.keys(data)[1]] == '1'"
 | 
	
		
			
				|  |  | +                                                            style="display: inline-block; width: 10px;height: 10px;border-radius: 50%;background-color: greenyellow;"></span>
 | 
	
		
			
				|  |  | +                                                        <span v-else
 | 
	
		
			
				|  |  | +                                                            style="display: inline-block; width: 10px;height: 10px;border-radius: 50%;background-color: #ccc;"></span>
 | 
	
		
			
				|  |  | +                                                    </span>
 | 
	
		
			
				|  |  | +                                                </div>
 | 
	
		
			
				|  |  | +                                            </div>
 | 
	
		
			
				|  |  | +                                        </div>
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                                    </div>
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                                </div>
 | 
	
		
			
				|  |  | +                            </template>
 | 
	
		
			
				|  |  | +                        </ventBox1>
 | 
	
		
			
				|  |  | +                    </div>
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                </div>
 | 
	
		
			
				|  |  | +                <!-- 右边控制状态 -->
 | 
	
		
			
				|  |  | +                <div class="lr-box right-box">
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                    <ventBox1 class="vent-margin-t-10">
 | 
	
		
			
				|  |  | +                        <template #title>
 | 
	
		
			
				|  |  | +                            <div>设备实时监测曲线</div>
 | 
	
		
			
				|  |  | +                        </template>
 | 
	
		
			
				|  |  | +                        <template #container>
 | 
	
		
			
				|  |  | +                            <BarAndLine v-if="chartsColumns.length > 0" xAxisPropType="readTime" :dataSource="echartData"
 | 
	
		
			
				|  |  | +                                height="340px" :chartsColumns="chartsColumns" chartsType="listMonitor"
 | 
	
		
			
				|  |  | +                                :option="echatsOption" />
 | 
	
		
			
				|  |  | +                            <!-- :option="zhudanOption" -->
 | 
	
		
			
				|  |  | +                        </template>
 | 
	
		
			
				|  |  | +                    </ventBox1>
 | 
	
		
			
				|  |  | +                </div>
 | 
	
		
			
				|  |  | +            </div>
 | 
	
		
			
				|  |  | +        </div>
 | 
	
		
			
				|  |  | +    </div>
 | 
	
		
			
				|  |  | +    <HandleModal :modal-is-show="modalIsShow" :modal-title="modalTitle" :modal-type="modalType" @handle-ok="handleOK"
 | 
	
		
			
				|  |  | +        @handle-cancel="handleCancel" />
 | 
	
		
			
				|  |  | +</template>
 | 
	
		
			
				|  |  | +<script lang="ts" setup name="nitrogenHome">
 | 
	
		
			
				|  |  | +import { onMounted, onUnmounted, ref, watch, reactive, defineProps, nextTick, inject, computed } from 'vue';
 | 
	
		
			
				|  |  | +import ventBox1 from '/@/components/vent/ventBox1.vue';
 | 
	
		
			
				|  |  | +import fourBorderBg from '../../../comment/components/fourBorderBg.vue';
 | 
	
		
			
				|  |  | +import { mountedThree, destroy, setModelType, addText } from '../nitrogen.threejs';
 | 
	
		
			
				|  |  | +import { getDevice } from '../nitrogen.api';
 | 
	
		
			
				|  |  | +import { SvgIcon } from '/@/components/Icon';
 | 
	
		
			
				|  |  | +import BarAndLine from '/@/components/chart/BarAndLine.vue';
 | 
	
		
			
				|  |  | +import HandleModal from './modal.vue';
 | 
	
		
			
				|  |  | +import { deviceControlApi } from '/@/api/vent/index';
 | 
	
		
			
				|  |  | +import { message } from 'ant-design-vue';
 | 
	
		
			
				|  |  | +import lodash from 'lodash';
 | 
	
		
			
				|  |  | +const globalConfig = inject('globalConfig');
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +const props = defineProps({
 | 
	
		
			
				|  |  | +    deviceId: {
 | 
	
		
			
				|  |  | +        type: String,
 | 
	
		
			
				|  |  | +        require: true,
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +    modalType: {
 | 
	
		
			
				|  |  | +        type: String,
 | 
	
		
			
				|  |  | +        require: true,
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +});
 | 
	
		
			
				|  |  | +const refresh = ref(false)
 | 
	
		
			
				|  |  | +const modalTitle = ref(''); // 模态框标题显示内容,根据设备操作类型决定
 | 
	
		
			
				|  |  | +const modalType = ref(''); // 模态框内容显示类型,设备操作类型
 | 
	
		
			
				|  |  | +const modalIsShow = ref<boolean>(false); // 是否显示模态框
 | 
	
		
			
				|  |  | +const loading = ref(true);
 | 
	
		
			
				|  |  | +let kzParam = reactive<any>({
 | 
	
		
			
				|  |  | +    data: {},
 | 
	
		
			
				|  |  | +    isFw: '',
 | 
	
		
			
				|  |  | +});
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +const flvURL1 = () => {
 | 
	
		
			
				|  |  | +    // return `https://sf1-hscdn-tos.pstatp.com/obj/media-fe/xgplayer_doc_video/flv/xgplayer-demo-360p.flv`;
 | 
	
		
			
				|  |  | +    return '';
 | 
	
		
			
				|  |  | +};
 | 
	
		
			
				|  |  | +const colors = ['#FDB146', '#EE6666', '#9BCB75', '#03C2EC', '#DA3914', '#9C83D9']
 | 
	
		
			
				|  |  | +const echatsOption = {
 | 
	
		
			
				|  |  | +    grid: {
 | 
	
		
			
				|  |  | +        top: '20%',
 | 
	
		
			
				|  |  | +        left: '0px',
 | 
	
		
			
				|  |  | +        right: '10px',
 | 
	
		
			
				|  |  | +        bottom: '3%',
 | 
	
		
			
				|  |  | +        containLabel: true
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +    toolbox: {
 | 
	
		
			
				|  |  | +        feature: {}
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +}
 | 
	
		
			
				|  |  | +const monitorDataGroupNum = ref(0);
 | 
	
		
			
				|  |  | +let airCompressorState = reactive<any[]>([]);
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +//主机进气
 | 
	
		
			
				|  |  | +const groupParameterData = [
 | 
	
		
			
				|  |  | +    {
 | 
	
		
			
				|  |  | +        m_in_open: '开度',
 | 
	
		
			
				|  |  | +        m_bv_in_remote: '远控',
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +    {
 | 
	
		
			
				|  |  | +        m_bv_in_open: '开到位',
 | 
	
		
			
				|  |  | +        m_bv_in_close: '关到位',
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +];
 | 
	
		
			
				|  |  | +//备机进气
 | 
	
		
			
				|  |  | +const groupParameterData1 = [
 | 
	
		
			
				|  |  | +    {
 | 
	
		
			
				|  |  | +        b_in_open: '开度',
 | 
	
		
			
				|  |  | +        b_bv_in_remote: '远控',
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +    {
 | 
	
		
			
				|  |  | +        b_bv_in_open: '开到位',
 | 
	
		
			
				|  |  | +        b_bv_in_close: '关到位',
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +];
 | 
	
		
			
				|  |  | +//主机出气
 | 
	
		
			
				|  |  | +const deviceParameterData = [
 | 
	
		
			
				|  |  | +    {
 | 
	
		
			
				|  |  | +        m_out_open: '开度',
 | 
	
		
			
				|  |  | +        m_bv_out_remote: '远控',
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +    {
 | 
	
		
			
				|  |  | +        m_bv_out_open: '开到位',
 | 
	
		
			
				|  |  | +        m_bv_out_close: '关到位',
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +];
 | 
	
		
			
				|  |  | +//备机出气
 | 
	
		
			
				|  |  | +const deviceParameterData1 = [
 | 
	
		
			
				|  |  | +    {
 | 
	
		
			
				|  |  | +        b_out_open: '开度',
 | 
	
		
			
				|  |  | +        b_bv_out_remote: '远控',
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +    {
 | 
	
		
			
				|  |  | +        b_bv_out_open: '开到位',
 | 
	
		
			
				|  |  | +        b_bv_out_close: '关到位',
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +];
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +const deviceMonitorList = reactive([
 | 
	
		
			
				|  |  | +    {
 | 
	
		
			
				|  |  | +        title: '负载短路故障',
 | 
	
		
			
				|  |  | +        dataList: [
 | 
	
		
			
				|  |  | +            {
 | 
	
		
			
				|  |  | +                title: '主机-进',
 | 
	
		
			
				|  |  | +                code: 'm_in_load_short',
 | 
	
		
			
				|  |  | +            },
 | 
	
		
			
				|  |  | +            {
 | 
	
		
			
				|  |  | +                title: '主机-出',
 | 
	
		
			
				|  |  | +                code: 'm_out_load_short',
 | 
	
		
			
				|  |  | +            },
 | 
	
		
			
				|  |  | +            {
 | 
	
		
			
				|  |  | +                title: '备机-进',
 | 
	
		
			
				|  |  | +                code: 'b_in_load_short',
 | 
	
		
			
				|  |  | +            },
 | 
	
		
			
				|  |  | +            {
 | 
	
		
			
				|  |  | +                title: '备机-出',
 | 
	
		
			
				|  |  | +                code: 'b_out_load_short',
 | 
	
		
			
				|  |  | +            },
 | 
	
		
			
				|  |  | +        ],
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    {
 | 
	
		
			
				|  |  | +        title: '电压过低故障',
 | 
	
		
			
				|  |  | +        dataList: [
 | 
	
		
			
				|  |  | +            {
 | 
	
		
			
				|  |  | +                title: '主机-进',
 | 
	
		
			
				|  |  | +                code: 'm_in_low_voltage',
 | 
	
		
			
				|  |  | +            },
 | 
	
		
			
				|  |  | +            {
 | 
	
		
			
				|  |  | +                title: '主机-出',
 | 
	
		
			
				|  |  | +                code: 'm_out_low_voltage',
 | 
	
		
			
				|  |  | +            },
 | 
	
		
			
				|  |  | +            {
 | 
	
		
			
				|  |  | +                title: '备机-进',
 | 
	
		
			
				|  |  | +                code: 'b_in_low_voltage',
 | 
	
		
			
				|  |  | +            },
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +            {
 | 
	
		
			
				|  |  | +                title: '备机-出',
 | 
	
		
			
				|  |  | +                code: 'b_out_low_voltage',
 | 
	
		
			
				|  |  | +            },
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        ],
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    {
 | 
	
		
			
				|  |  | +        title: '电压过高故障',
 | 
	
		
			
				|  |  | +        dataList: [
 | 
	
		
			
				|  |  | +            {
 | 
	
		
			
				|  |  | +                title: '主机-进',
 | 
	
		
			
				|  |  | +                code: 'm_in_high_voltage',
 | 
	
		
			
				|  |  | +            },
 | 
	
		
			
				|  |  | +            {
 | 
	
		
			
				|  |  | +                title: '主机-出',
 | 
	
		
			
				|  |  | +                code: 'm_out_high_voltage',
 | 
	
		
			
				|  |  | +            },
 | 
	
		
			
				|  |  | +            {
 | 
	
		
			
				|  |  | +                title: '备机-进',
 | 
	
		
			
				|  |  | +                code: 'b_in_high_voltage',
 | 
	
		
			
				|  |  | +            },
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +            {
 | 
	
		
			
				|  |  | +                title: '备机-出',
 | 
	
		
			
				|  |  | +                code: 'b_out_high_voltage',
 | 
	
		
			
				|  |  | +            },
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        ],
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    {
 | 
	
		
			
				|  |  | +        title: '电机漏电故障',
 | 
	
		
			
				|  |  | +        dataList: [
 | 
	
		
			
				|  |  | +            {
 | 
	
		
			
				|  |  | +                title: '主机-进',
 | 
	
		
			
				|  |  | +                code: 'm_in_motor_leakage',
 | 
	
		
			
				|  |  | +            },
 | 
	
		
			
				|  |  | +            {
 | 
	
		
			
				|  |  | +                title: '主机-出',
 | 
	
		
			
				|  |  | +                code: 'm_out_motor_leakage',
 | 
	
		
			
				|  |  | +            },
 | 
	
		
			
				|  |  | +            {
 | 
	
		
			
				|  |  | +                title: '备机-进',
 | 
	
		
			
				|  |  | +                code: 'b_in_motor_leakage',
 | 
	
		
			
				|  |  | +            },
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +            {
 | 
	
		
			
				|  |  | +                title: '备机-出',
 | 
	
		
			
				|  |  | +                code: 'b_out_motor_leakage',
 | 
	
		
			
				|  |  | +            },
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        ],
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    {
 | 
	
		
			
				|  |  | +        title: '电源缺相故障',
 | 
	
		
			
				|  |  | +        dataList: [
 | 
	
		
			
				|  |  | +            {
 | 
	
		
			
				|  |  | +                title: '主机-进',
 | 
	
		
			
				|  |  | +                code: 'm_in_supply_phase',
 | 
	
		
			
				|  |  | +            },
 | 
	
		
			
				|  |  | +            {
 | 
	
		
			
				|  |  | +                title: '主机-出',
 | 
	
		
			
				|  |  | +                code: 'm_out_supply_phase',
 | 
	
		
			
				|  |  | +            },
 | 
	
		
			
				|  |  | +            {
 | 
	
		
			
				|  |  | +                title: '备机-进',
 | 
	
		
			
				|  |  | +                code: 'b_in_supply_phase',
 | 
	
		
			
				|  |  | +            },
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +            {
 | 
	
		
			
				|  |  | +                title: '备机-出',
 | 
	
		
			
				|  |  | +                code: 'b_out_supply_phase',
 | 
	
		
			
				|  |  | +            },
 | 
	
		
			
				|  |  | +        ],
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    {
 | 
	
		
			
				|  |  | +        title: '关向过力矩故障',
 | 
	
		
			
				|  |  | +        dataList: [
 | 
	
		
			
				|  |  | +            {
 | 
	
		
			
				|  |  | +                title: '主机-进',
 | 
	
		
			
				|  |  | +                code: 'm_in_closing_overtorque',
 | 
	
		
			
				|  |  | +            },
 | 
	
		
			
				|  |  | +            {
 | 
	
		
			
				|  |  | +                title: '主机-出',
 | 
	
		
			
				|  |  | +                code: 'm_out_closing_overtorque',
 | 
	
		
			
				|  |  | +            },
 | 
	
		
			
				|  |  | +            {
 | 
	
		
			
				|  |  | +                title: '备机-进',
 | 
	
		
			
				|  |  | +                code: 'b_in_closing_overtorque',
 | 
	
		
			
				|  |  | +            },
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +            {
 | 
	
		
			
				|  |  | +                title: '备机-出',
 | 
	
		
			
				|  |  | +                code: 'b_out_closing_overtorque',
 | 
	
		
			
				|  |  | +            },
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        ],
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    {
 | 
	
		
			
				|  |  | +        title: '开向过力矩故障',
 | 
	
		
			
				|  |  | +        dataList: [
 | 
	
		
			
				|  |  | +            {
 | 
	
		
			
				|  |  | +                title: '主机-进',
 | 
	
		
			
				|  |  | +                code: 'm_in_opening_overtorque',
 | 
	
		
			
				|  |  | +            },
 | 
	
		
			
				|  |  | +            {
 | 
	
		
			
				|  |  | +                title: '主机-出',
 | 
	
		
			
				|  |  | +                code: 'm_out_opening_overtorque',
 | 
	
		
			
				|  |  | +            },
 | 
	
		
			
				|  |  | +            {
 | 
	
		
			
				|  |  | +                title: '备机-进',
 | 
	
		
			
				|  |  | +                code: 'b_in_opening_overtorque',
 | 
	
		
			
				|  |  | +            },
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +            {
 | 
	
		
			
				|  |  | +                title: '备机-出',
 | 
	
		
			
				|  |  | +                code: 'b_out_opening_overtorque',
 | 
	
		
			
				|  |  | +            },
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        ],
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    {
 | 
	
		
			
				|  |  | +        title: '关向过电流故障',
 | 
	
		
			
				|  |  | +        dataList: [
 | 
	
		
			
				|  |  | +            {
 | 
	
		
			
				|  |  | +                title: '主机-进',
 | 
	
		
			
				|  |  | +                code: 'm_in_closing_overcurrent',
 | 
	
		
			
				|  |  | +            },
 | 
	
		
			
				|  |  | +            {
 | 
	
		
			
				|  |  | +                title: '主机-出',
 | 
	
		
			
				|  |  | +                code: 'm_out_closing_overcurrent',
 | 
	
		
			
				|  |  | +            },
 | 
	
		
			
				|  |  | +            {
 | 
	
		
			
				|  |  | +                title: '备机-进',
 | 
	
		
			
				|  |  | +                code: 'b_in_closing_overcurrent',
 | 
	
		
			
				|  |  | +            },
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +            {
 | 
	
		
			
				|  |  | +                title: '备机出',
 | 
	
		
			
				|  |  | +                code: 'b_out_closing_overcurrent',
 | 
	
		
			
				|  |  | +            },
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        ],
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    {
 | 
	
		
			
				|  |  | +        title: '开向过电流故障',
 | 
	
		
			
				|  |  | +        dataList: [
 | 
	
		
			
				|  |  | +            {
 | 
	
		
			
				|  |  | +                title: '主机-进',
 | 
	
		
			
				|  |  | +                code: 'm_in_opening_overcurrent',
 | 
	
		
			
				|  |  | +            },
 | 
	
		
			
				|  |  | +            {
 | 
	
		
			
				|  |  | +                title: '主机-出',
 | 
	
		
			
				|  |  | +                code: 'm_out_opening_overcurrent',
 | 
	
		
			
				|  |  | +            },
 | 
	
		
			
				|  |  | +            {
 | 
	
		
			
				|  |  | +                title: '备机-进',
 | 
	
		
			
				|  |  | +                code: 'b_in_opening_overcurrent',
 | 
	
		
			
				|  |  | +            },
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +            {
 | 
	
		
			
				|  |  | +                title: '备机-出',
 | 
	
		
			
				|  |  | +                code: 'b_out_opening_overcurrent',
 | 
	
		
			
				|  |  | +            },
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        ],
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    {
 | 
	
		
			
				|  |  | +        title: '关向超时故障',
 | 
	
		
			
				|  |  | +        dataList: [
 | 
	
		
			
				|  |  | +            {
 | 
	
		
			
				|  |  | +                title: '主机-进',
 | 
	
		
			
				|  |  | +                code: 'm_in_closing_timeout',
 | 
	
		
			
				|  |  | +            },
 | 
	
		
			
				|  |  | +            {
 | 
	
		
			
				|  |  | +                title: '主机-出',
 | 
	
		
			
				|  |  | +                code: 'm_out_closing_timeout',
 | 
	
		
			
				|  |  | +            },
 | 
	
		
			
				|  |  | +            {
 | 
	
		
			
				|  |  | +                title: '备机-进',
 | 
	
		
			
				|  |  | +                code: 'b_in_closing_timeout',
 | 
	
		
			
				|  |  | +            },
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +            {
 | 
	
		
			
				|  |  | +                title: '备机-出',
 | 
	
		
			
				|  |  | +                code: 'b_out_closing_timeout',
 | 
	
		
			
				|  |  | +            },
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        ],
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    {
 | 
	
		
			
				|  |  | +        title: '开向超时故障',
 | 
	
		
			
				|  |  | +        dataList: [
 | 
	
		
			
				|  |  | +            {
 | 
	
		
			
				|  |  | +                title: '主机-进',
 | 
	
		
			
				|  |  | +                code: 'm_in_opening_timeout',
 | 
	
		
			
				|  |  | +            },
 | 
	
		
			
				|  |  | +            {
 | 
	
		
			
				|  |  | +                title: '主机-出',
 | 
	
		
			
				|  |  | +                code: 'm_out_opening_timeout',
 | 
	
		
			
				|  |  | +            },
 | 
	
		
			
				|  |  | +            {
 | 
	
		
			
				|  |  | +                title: '备机-进',
 | 
	
		
			
				|  |  | +                code: 'b_in_opening_timeout',
 | 
	
		
			
				|  |  | +            },
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +            {
 | 
	
		
			
				|  |  | +                title: '备机-出',
 | 
	
		
			
				|  |  | +                code: 'b_out_opening_timeout',
 | 
	
		
			
				|  |  | +            },
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        ],
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    {
 | 
	
		
			
				|  |  | +        title: '阀位故障',
 | 
	
		
			
				|  |  | +        dataList: [
 | 
	
		
			
				|  |  | +            {
 | 
	
		
			
				|  |  | +                title: '主机-进',
 | 
	
		
			
				|  |  | +                code: 'm_in_valve_position',
 | 
	
		
			
				|  |  | +            },
 | 
	
		
			
				|  |  | +            {
 | 
	
		
			
				|  |  | +                title: '主机-出',
 | 
	
		
			
				|  |  | +                code: 'm_out_valve_position',
 | 
	
		
			
				|  |  | +            },
 | 
	
		
			
				|  |  | +            {
 | 
	
		
			
				|  |  | +                title: '备机-进',
 | 
	
		
			
				|  |  | +                code: 'b_in_valve_position',
 | 
	
		
			
				|  |  | +            },
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +            {
 | 
	
		
			
				|  |  | +                title: '备机-出',
 | 
	
		
			
				|  |  | +                code: 'b_out_valve_position',
 | 
	
		
			
				|  |  | +            },
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        ],
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    {
 | 
	
		
			
				|  |  | +        title: '热过载故障',
 | 
	
		
			
				|  |  | +        dataList: [
 | 
	
		
			
				|  |  | +            {
 | 
	
		
			
				|  |  | +                title: '主机-进',
 | 
	
		
			
				|  |  | +                code: 'm_in_thermal_overload',
 | 
	
		
			
				|  |  | +            },
 | 
	
		
			
				|  |  | +            {
 | 
	
		
			
				|  |  | +                title: '主机-出',
 | 
	
		
			
				|  |  | +                code: 'm_out_thermal_overload',
 | 
	
		
			
				|  |  | +            },
 | 
	
		
			
				|  |  | +            {
 | 
	
		
			
				|  |  | +                title: '备机-进',
 | 
	
		
			
				|  |  | +                code: 'b_in_thermal_overload',
 | 
	
		
			
				|  |  | +            },
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +            {
 | 
	
		
			
				|  |  | +                title: '备机-出',
 | 
	
		
			
				|  |  | +                code: 'b_out_thermal_overload',
 | 
	
		
			
				|  |  | +            },
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        ],
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +])
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +const propTypeArr = ref([])
 | 
	
		
			
				|  |  | +const chartsColumns = ref([])
 | 
	
		
			
				|  |  | +watch(monitorDataGroupNum, () => {
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    const arr = <any[]>[]
 | 
	
		
			
				|  |  | +    const item = {
 | 
	
		
			
				|  |  | +        legend: '实时流量',
 | 
	
		
			
				|  |  | +        seriesName: '(m³/min)',
 | 
	
		
			
				|  |  | +        ymax: 100,
 | 
	
		
			
				|  |  | +        yname: 'm³/min',
 | 
	
		
			
				|  |  | +        linetype: 'line',
 | 
	
		
			
				|  |  | +        yaxispos: 'left',
 | 
	
		
			
				|  |  | +        color: '#FDB146',
 | 
	
		
			
				|  |  | +        sort: 1,
 | 
	
		
			
				|  |  | +        xRotate: 0,
 | 
	
		
			
				|  |  | +        dataIndex: 'flow',
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +    const propTypeList = []
 | 
	
		
			
				|  |  | +    let echartLend=1
 | 
	
		
			
				|  |  | +    for (let i = 1; i <= echartLend; i++) {
 | 
	
		
			
				|  |  | +        const lineType = lodash.cloneDeep(item)
 | 
	
		
			
				|  |  | +        lineType.legend = '制氮机实时流量';
 | 
	
		
			
				|  |  | +        lineType.dataIndex = 'flow'
 | 
	
		
			
				|  |  | +        lineType.color = colors[i - 1]
 | 
	
		
			
				|  |  | +        arr.push(lineType)
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +    chartsColumns.value = arr
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +})
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +const monitorData = ref(
 | 
	
		
			
				|  |  | +    new Array(3).fill({
 | 
	
		
			
				|  |  | +        // strName: '空压机',
 | 
	
		
			
				|  |  | +        // cumulativeFlow: '-',
 | 
	
		
			
				|  |  | +        // centerTemperature: '-',
 | 
	
		
			
				|  |  | +        // outletTemperature: '-',
 | 
	
		
			
				|  |  | +        // Ia: '-',
 | 
	
		
			
				|  |  | +        // Ib: '-',
 | 
	
		
			
				|  |  | +        // Ic: '-',
 | 
	
		
			
				|  |  | +        // Vab: '-',
 | 
	
		
			
				|  |  | +        // Vac: '-',
 | 
	
		
			
				|  |  | +        // Vbc: '-',
 | 
	
		
			
				|  |  | +        // compressGroupName: '',
 | 
	
		
			
				|  |  | +        // compressExhaustPressF1: '-',
 | 
	
		
			
				|  |  | +        // compressSeparatePressF1: '-',
 | 
	
		
			
				|  |  | +        // compressHostTempF1: '-',
 | 
	
		
			
				|  |  | +        // compressCrewTempF1: '-',
 | 
	
		
			
				|  |  | +        // compressRunTimeF1: '-',
 | 
	
		
			
				|  |  | +        // controlModel: 'LOC'
 | 
	
		
			
				|  |  | +    })
 | 
	
		
			
				|  |  | +);
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +//图表数据
 | 
	
		
			
				|  |  | +let echartData = ref<any>([]);
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +// https获取监测数据
 | 
	
		
			
				|  |  | +let timer: null | NodeJS.Timeout = null;
 | 
	
		
			
				|  |  | +async function getMonitor(flag?) {
 | 
	
		
			
				|  |  | +    if (Object.prototype.toString.call(timer) === '[object Null]') {
 | 
	
		
			
				|  |  | +        timer = await setTimeout(
 | 
	
		
			
				|  |  | +            async () => {
 | 
	
		
			
				|  |  | +                if (props.deviceId) {
 | 
	
		
			
				|  |  | +                    await getDataSource(props.deviceId);
 | 
	
		
			
				|  |  | +                }
 | 
	
		
			
				|  |  | +                if (timer) {
 | 
	
		
			
				|  |  | +                    timer = null;
 | 
	
		
			
				|  |  | +                }
 | 
	
		
			
				|  |  | +                await getMonitor();
 | 
	
		
			
				|  |  | +            },
 | 
	
		
			
				|  |  | +            flag ? 0 : 3000
 | 
	
		
			
				|  |  | +        );
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +}
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +async function getDataSource(systemID) {
 | 
	
		
			
				|  |  | +    const res = await getDevice({ devicetype: 'sys', systemID, type: 'all' });
 | 
	
		
			
				|  |  | +    if (res) {
 | 
	
		
			
				|  |  | +        const result = res;
 | 
	
		
			
				|  |  | +        if (!result || result.msgTxt.length < 1) return;
 | 
	
		
			
				|  |  | +        result.msgTxt.forEach((item) => {
 | 
	
		
			
				|  |  | +            if (item.type && item.type.startsWith('nitrogen')) {
 | 
	
		
			
				|  |  | +                airCompressorState.length = 0;
 | 
	
		
			
				|  |  | +                monitorData.value = item['datalist'].filter((data) => {
 | 
	
		
			
				|  |  | +                    const readData = data.readData;
 | 
	
		
			
				|  |  | +                    airCompressorState.push({
 | 
	
		
			
				|  |  | +                        id: data.deviceID,
 | 
	
		
			
				|  |  | +                        deviceType: data.deviceType,
 | 
	
		
			
				|  |  | +                        m_start: readData.m_start,
 | 
	
		
			
				|  |  | +                        m_stop: readData.m_stop,
 | 
	
		
			
				|  |  | +                        b_start: readData.b_start,
 | 
	
		
			
				|  |  | +                        b_stop: readData.b_stop,
 | 
	
		
			
				|  |  | +                    });
 | 
	
		
			
				|  |  | +                    return Object.assign(data, readData);
 | 
	
		
			
				|  |  | +                });
 | 
	
		
			
				|  |  | +                console.log(monitorData, 'monitorData.value---===')
 | 
	
		
			
				|  |  | +                const airCompressor = { readTime: monitorData.value[0]['readTime'].substring(11) }
 | 
	
		
			
				|  |  | +                const dataArr = lodash.cloneDeep(echartData.value)
 | 
	
		
			
				|  |  | +                //图表数据
 | 
	
		
			
				|  |  | +                if (dataArr.length <4) {
 | 
	
		
			
				|  |  | +                    monitorData.value.forEach((el, index) => {
 | 
	
		
			
				|  |  | +                        airCompressor['flow'] = el['flow'] || 0
 | 
	
		
			
				|  |  | +                    });
 | 
	
		
			
				|  |  | +                    dataArr.push(airCompressor)
 | 
	
		
			
				|  |  | +                } else {
 | 
	
		
			
				|  |  | +                    dataArr.shift()
 | 
	
		
			
				|  |  | +                    // dataArr.push(airCompressor)
 | 
	
		
			
				|  |  | +                    monitorData.value.forEach((el, index) => {
 | 
	
		
			
				|  |  | +                        airCompressor['flow'] = el['flow'] || 0
 | 
	
		
			
				|  |  | +                    });
 | 
	
		
			
				|  |  | +                    dataArr.push(airCompressor)
 | 
	
		
			
				|  |  | +                    console.log(dataArr,'dataArr---------')
 | 
	
		
			
				|  |  | +                }
 | 
	
		
			
				|  |  | +                echartData.value = dataArr
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +            }
 | 
	
		
			
				|  |  | +        });
 | 
	
		
			
				|  |  | +        // monitorDataGroupNum.value = monitorData.value.length;
 | 
	
		
			
				|  |  | +        monitorDataGroupNum.value = 2;
 | 
	
		
			
				|  |  | +        refresh.value = true
 | 
	
		
			
				|  |  | +        nextTick(() => {
 | 
	
		
			
				|  |  | +            refresh.value = false
 | 
	
		
			
				|  |  | +        })
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +}
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +function handlerDevice(data, titles) {
 | 
	
		
			
				|  |  | +    kzParam.data = data;
 | 
	
		
			
				|  |  | +    kzParam.isFw = titles
 | 
	
		
			
				|  |  | +    switch (titles) {
 | 
	
		
			
				|  |  | +        case '主机启动':
 | 
	
		
			
				|  |  | +            modalTitle.value = titles;
 | 
	
		
			
				|  |  | +            modalType.value = '1';
 | 
	
		
			
				|  |  | +            modalIsShow.value = true;
 | 
	
		
			
				|  |  | +            kzParam.data.m_start = '1'
 | 
	
		
			
				|  |  | +            break;
 | 
	
		
			
				|  |  | +        case '备机启动':
 | 
	
		
			
				|  |  | +            modalTitle.value = titles;
 | 
	
		
			
				|  |  | +            modalType.value = '2';
 | 
	
		
			
				|  |  | +            modalIsShow.value = true;
 | 
	
		
			
				|  |  | +            kzParam.data.b_start = '1'
 | 
	
		
			
				|  |  | +            break;
 | 
	
		
			
				|  |  | +        case '主机停止':
 | 
	
		
			
				|  |  | +            modalTitle.value = titles;
 | 
	
		
			
				|  |  | +            modalType.value = '1';
 | 
	
		
			
				|  |  | +            modalIsShow.value = true;
 | 
	
		
			
				|  |  | +            kzParam.data.m_stop = '1'
 | 
	
		
			
				|  |  | +            break;
 | 
	
		
			
				|  |  | +        case '备机停止':
 | 
	
		
			
				|  |  | +            modalTitle.value = titles;
 | 
	
		
			
				|  |  | +            modalType.value = '2';
 | 
	
		
			
				|  |  | +            modalIsShow.value = true;
 | 
	
		
			
				|  |  | +            kzParam.data.b_stop = '1'
 | 
	
		
			
				|  |  | +            break;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +}
 | 
	
		
			
				|  |  | +function handleOK(passWord, handlerState) {
 | 
	
		
			
				|  |  | +    console.log(kzParam, 'kz----------');
 | 
	
		
			
				|  |  | +    // if (passWord !== '123456') {
 | 
	
		
			
				|  |  | +    //   message.warning('密码不正确,请重新输入');
 | 
	
		
			
				|  |  | +    //   return;
 | 
	
		
			
				|  |  | +    // }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    let data = {};
 | 
	
		
			
				|  |  | +    switch (kzParam.isFw) {
 | 
	
		
			
				|  |  | +        case '主机启动':
 | 
	
		
			
				|  |  | +            data = {
 | 
	
		
			
				|  |  | +                deviceid: kzParam.data.id,
 | 
	
		
			
				|  |  | +                devicetype: kzParam.data.deviceType,
 | 
	
		
			
				|  |  | +                password: passWord,
 | 
	
		
			
				|  |  | +                m_start: kzParam.data.m_start,
 | 
	
		
			
				|  |  | +            };
 | 
	
		
			
				|  |  | +            break;
 | 
	
		
			
				|  |  | +        case '备机启动':
 | 
	
		
			
				|  |  | +            data = {
 | 
	
		
			
				|  |  | +                deviceid: kzParam.data.id,
 | 
	
		
			
				|  |  | +                devicetype: kzParam.data.deviceType,
 | 
	
		
			
				|  |  | +                password: passWord,
 | 
	
		
			
				|  |  | +                b_start: kzParam.data.b_start,
 | 
	
		
			
				|  |  | +            };
 | 
	
		
			
				|  |  | +            break;
 | 
	
		
			
				|  |  | +        case '主机停止':
 | 
	
		
			
				|  |  | +            data = {
 | 
	
		
			
				|  |  | +                deviceid: kzParam.data.id,
 | 
	
		
			
				|  |  | +                devicetype: kzParam.data.deviceType,
 | 
	
		
			
				|  |  | +                password: passWord,
 | 
	
		
			
				|  |  | +                m_stop: kzParam.data.m_stop,
 | 
	
		
			
				|  |  | +            };
 | 
	
		
			
				|  |  | +            break;
 | 
	
		
			
				|  |  | +        case '备机停止':
 | 
	
		
			
				|  |  | +            data = {
 | 
	
		
			
				|  |  | +                deviceid: kzParam.data.id,
 | 
	
		
			
				|  |  | +                devicetype: kzParam.data.deviceType,
 | 
	
		
			
				|  |  | +                password: passWord,
 | 
	
		
			
				|  |  | +                b_stop: kzParam.data.b_stop,
 | 
	
		
			
				|  |  | +            };
 | 
	
		
			
				|  |  | +            break;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    deviceControlApi(data).then((res) => {
 | 
	
		
			
				|  |  | +        // 模拟时开启
 | 
	
		
			
				|  |  | +        if (res.success) {
 | 
	
		
			
				|  |  | +            modalIsShow.value = false;
 | 
	
		
			
				|  |  | +            getDataSource(props.deviceId);
 | 
	
		
			
				|  |  | +            if (globalConfig.History_Type == 'remote') {
 | 
	
		
			
				|  |  | +                message.success('指令已下发至生产管控平台成功!')
 | 
	
		
			
				|  |  | +            } else {
 | 
	
		
			
				|  |  | +                message.success('指令已下发成功!')
 | 
	
		
			
				|  |  | +            }
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +    });
 | 
	
		
			
				|  |  | +}
 | 
	
		
			
				|  |  | +function handleCancel() {
 | 
	
		
			
				|  |  | +    modalIsShow.value = false;
 | 
	
		
			
				|  |  | +    modalTitle.value = '';
 | 
	
		
			
				|  |  | +    modalType.value = '';
 | 
	
		
			
				|  |  | +}
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +watch([monitorDataGroupNum, loading], ([newMonitorDataGroupNum, newLoading]) => {
 | 
	
		
			
				|  |  | +    nextTick(() => {
 | 
	
		
			
				|  |  | +        if (newMonitorDataGroupNum && !newLoading) {
 | 
	
		
			
				|  |  | +            setModelType(props.modalType, newMonitorDataGroupNum);
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +    });
 | 
	
		
			
				|  |  | +});
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +onMounted(async () => {
 | 
	
		
			
				|  |  | +    await getMonitor(true);
 | 
	
		
			
				|  |  | +    await mountedThree().then(() => {
 | 
	
		
			
				|  |  | +        loading.value = false;
 | 
	
		
			
				|  |  | +    });
 | 
	
		
			
				|  |  | +});
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +onUnmounted(() => {
 | 
	
		
			
				|  |  | +    destroy();
 | 
	
		
			
				|  |  | +    if (timer) {
 | 
	
		
			
				|  |  | +        clearTimeout(timer);
 | 
	
		
			
				|  |  | +        timer = undefined;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +});
 | 
	
		
			
				|  |  | +</script>
 | 
	
		
			
				|  |  | +  
 | 
	
		
			
				|  |  | +<style lang="less" scoped>
 | 
	
		
			
				|  |  | +@ventSpace: zxm;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +.nitrogen-box {
 | 
	
		
			
				|  |  | +    width: 100%;
 | 
	
		
			
				|  |  | +    height: 100%;
 | 
	
		
			
				|  |  | +    display: flex;
 | 
	
		
			
				|  |  | +    justify-content: center;
 | 
	
		
			
				|  |  | +}
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +#nitrogenCss3D {
 | 
	
		
			
				|  |  | +    .modal-monitor {
 | 
	
		
			
				|  |  | +        width: 200px;
 | 
	
		
			
				|  |  | +        position: absolute;
 | 
	
		
			
				|  |  | +        left: 0px;
 | 
	
		
			
				|  |  | +        top: 0px;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    &:deep(.win) {
 | 
	
		
			
				|  |  | +        margin: 0 !important;
 | 
	
		
			
				|  |  | +        background: #00000044;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +}
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +.nitrogen-home {
 | 
	
		
			
				|  |  | +    width: 100%;
 | 
	
		
			
				|  |  | +    height: 100%;
 | 
	
		
			
				|  |  | +    position: fixed;
 | 
	
		
			
				|  |  | +    z-index: 9999;
 | 
	
		
			
				|  |  | +    display: flex;
 | 
	
		
			
				|  |  | +    flex-direction: column;
 | 
	
		
			
				|  |  | +    justify-content: center;
 | 
	
		
			
				|  |  | +    align-items: center;
 | 
	
		
			
				|  |  | +    pointer-events: none;
 | 
	
		
			
				|  |  | +    top: 20px;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    .nitrogen-container {
 | 
	
		
			
				|  |  | +        width: 100%;
 | 
	
		
			
				|  |  | +        height: calc(100% - 100px);
 | 
	
		
			
				|  |  | +        display: flex;
 | 
	
		
			
				|  |  | +        justify-content: space-between;
 | 
	
		
			
				|  |  | +        margin-bottom: 100px;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        .top-box {
 | 
	
		
			
				|  |  | +            // margin-top: 40px; //lxh
 | 
	
		
			
				|  |  | +            position: relative;
 | 
	
		
			
				|  |  | +            width: 100%;
 | 
	
		
			
				|  |  | +            padding: 10px;
 | 
	
		
			
				|  |  | +            overflow: hidden;
 | 
	
		
			
				|  |  | +            display: flex;
 | 
	
		
			
				|  |  | +            justify-content: space-between;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +            .center-item-box {
 | 
	
		
			
				|  |  | +                position: absolute;
 | 
	
		
			
				|  |  | +                left: 50%;
 | 
	
		
			
				|  |  | +                top: 50px;
 | 
	
		
			
				|  |  | +                transform: translate(-48%, 0);
 | 
	
		
			
				|  |  | +                width: calc(100% - 760px);
 | 
	
		
			
				|  |  | +                height: 50px;
 | 
	
		
			
				|  |  | +                display: flex;
 | 
	
		
			
				|  |  | +                align-items: center;
 | 
	
		
			
				|  |  | +                pointer-events: auto;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                .top-left {
 | 
	
		
			
				|  |  | +                    display: flex;
 | 
	
		
			
				|  |  | +                    flex: 2;
 | 
	
		
			
				|  |  | +                    color: #fff;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                    .button-box {
 | 
	
		
			
				|  |  | +                        position: relative;
 | 
	
		
			
				|  |  | +                        width: auto;
 | 
	
		
			
				|  |  | +                        height: 32px;
 | 
	
		
			
				|  |  | +                        display: flex;
 | 
	
		
			
				|  |  | +                        align-items: center;
 | 
	
		
			
				|  |  | +                        justify-content: center;
 | 
	
		
			
				|  |  | +                        border-radius: 5px;
 | 
	
		
			
				|  |  | +                        color: #fff;
 | 
	
		
			
				|  |  | +                        padding: 10px 15px;
 | 
	
		
			
				|  |  | +                        margin: 0px 10px;
 | 
	
		
			
				|  |  | +                        box-sizing: border-box;
 | 
	
		
			
				|  |  | +                        cursor: pointer;
 | 
	
		
			
				|  |  | +                        background: linear-gradient(#1fa6cb, #127cb5);
 | 
	
		
			
				|  |  | +                    }
 | 
	
		
			
				|  |  | +                }
 | 
	
		
			
				|  |  | +                .top-center{
 | 
	
		
			
				|  |  | +                    display: flex;
 | 
	
		
			
				|  |  | +                    flex: 1;
 | 
	
		
			
				|  |  | +                    justify-content: center;
 | 
	
		
			
				|  |  | +                    align-items: center;
 | 
	
		
			
				|  |  | +                    font-size: 20px;
 | 
	
		
			
				|  |  | +                    color: #fff;
 | 
	
		
			
				|  |  | +                    .top-c-label{
 | 
	
		
			
				|  |  | +                        color: yellow;
 | 
	
		
			
				|  |  | +                    }
 | 
	
		
			
				|  |  | +                }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                .top-right {
 | 
	
		
			
				|  |  | +                    display: flex;
 | 
	
		
			
				|  |  | +                    flex: 2;
 | 
	
		
			
				|  |  | +                    justify-content: right;
 | 
	
		
			
				|  |  | +                    align-items: center;
 | 
	
		
			
				|  |  | +                    color: #fff;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                    .control-type {
 | 
	
		
			
				|  |  | +                        display: flex;
 | 
	
		
			
				|  |  | +                        color: #fff;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                        .control-title {
 | 
	
		
			
				|  |  | +                            color: #73e8fe;
 | 
	
		
			
				|  |  | +                        }
 | 
	
		
			
				|  |  | +                    }
 | 
	
		
			
				|  |  | +                }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +            }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +            .footer-item-box {
 | 
	
		
			
				|  |  | +                width: calc(100% - 20px);
 | 
	
		
			
				|  |  | +                height: auto;
 | 
	
		
			
				|  |  | +                position: absolute;
 | 
	
		
			
				|  |  | +                left: 50%;
 | 
	
		
			
				|  |  | +                bottom: 30px;
 | 
	
		
			
				|  |  | +                transform: translate(-50%);
 | 
	
		
			
				|  |  | +                display: flex;
 | 
	
		
			
				|  |  | +                justify-content: center;
 | 
	
		
			
				|  |  | +                color: #fff;
 | 
	
		
			
				|  |  | +                // box-shadow: 0 0 30px rgb(0, 153, 184) inset;
 | 
	
		
			
				|  |  | +                pointer-events: auto;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                .device-detail {
 | 
	
		
			
				|  |  | +                    text-align: center;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                    &:first-child {
 | 
	
		
			
				|  |  | +                        background-color: #00bbff11;
 | 
	
		
			
				|  |  | +                    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                    &:last-child {
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                        .device-val,
 | 
	
		
			
				|  |  | +                        .device-title {
 | 
	
		
			
				|  |  | +                            border-right: 1px solid #00baffd4;
 | 
	
		
			
				|  |  | +                        }
 | 
	
		
			
				|  |  | +                    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                    .device-val {
 | 
	
		
			
				|  |  | +                        line-height: 36px;
 | 
	
		
			
				|  |  | +                        border-top: 1px solid #00baffd4;
 | 
	
		
			
				|  |  | +                        border-left: 1px solid #00baffd4;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                        &:last-child {
 | 
	
		
			
				|  |  | +                            border-bottom: 1px solid #00baffd4;
 | 
	
		
			
				|  |  | +                        }
 | 
	
		
			
				|  |  | +                    }
 | 
	
		
			
				|  |  | +                }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                .device-title {
 | 
	
		
			
				|  |  | +                    width: 110px;
 | 
	
		
			
				|  |  | +                    text-align: center;
 | 
	
		
			
				|  |  | +                    border-top: 1px solid #00baffd4;
 | 
	
		
			
				|  |  | +                    border-left: 1px solid #00baffd4;
 | 
	
		
			
				|  |  | +                    line-height: 46px;
 | 
	
		
			
				|  |  | +                    color: #00e5ff;
 | 
	
		
			
				|  |  | +                    background-color: #00bbff21;
 | 
	
		
			
				|  |  | +                }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +            }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +            .lr-box {
 | 
	
		
			
				|  |  | +                height: fit-content;
 | 
	
		
			
				|  |  | +                display: flex;
 | 
	
		
			
				|  |  | +                flex-direction: column;
 | 
	
		
			
				|  |  | +                position: relative;
 | 
	
		
			
				|  |  | +                overflow: hidden;
 | 
	
		
			
				|  |  | +                z-index: 9999;
 | 
	
		
			
				|  |  | +                pointer-events: auto;
 | 
	
		
			
				|  |  | +            }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +            .item {
 | 
	
		
			
				|  |  | +                width: 335px;
 | 
	
		
			
				|  |  | +                height: auto;
 | 
	
		
			
				|  |  | +                position: relative;
 | 
	
		
			
				|  |  | +                border-radius: 5px;
 | 
	
		
			
				|  |  | +                margin-top: 10px;
 | 
	
		
			
				|  |  | +                margin-bottom: 0px;
 | 
	
		
			
				|  |  | +                pointer-events: auto;
 | 
	
		
			
				|  |  | +                color: #fff;
 | 
	
		
			
				|  |  | +                overflow: hidden;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                &:first-child {
 | 
	
		
			
				|  |  | +                    margin-top: 0px;
 | 
	
		
			
				|  |  | +                }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                .base-title {
 | 
	
		
			
				|  |  | +                    color: #fff;
 | 
	
		
			
				|  |  | +                    margin-bottom: 8px;
 | 
	
		
			
				|  |  | +                    padding-left: 10px;
 | 
	
		
			
				|  |  | +                    position: relative;
 | 
	
		
			
				|  |  | +                    font-size: 16px;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                    &::after {
 | 
	
		
			
				|  |  | +                        content: '';
 | 
	
		
			
				|  |  | +                        position: absolute;
 | 
	
		
			
				|  |  | +                        display: block;
 | 
	
		
			
				|  |  | +                        width: 4px;
 | 
	
		
			
				|  |  | +                        height: 12px;
 | 
	
		
			
				|  |  | +                        top: 7px;
 | 
	
		
			
				|  |  | +                        left: 0px;
 | 
	
		
			
				|  |  | +                        background: #45d3fd;
 | 
	
		
			
				|  |  | +                        border-radius: 4px;
 | 
	
		
			
				|  |  | +                    }
 | 
	
		
			
				|  |  | +                }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                .state-item {
 | 
	
		
			
				|  |  | +                    display: flex;
 | 
	
		
			
				|  |  | +                    flex-direction: row;
 | 
	
		
			
				|  |  | +                    padding: 5px;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                    .item-col {
 | 
	
		
			
				|  |  | +                        width: calc(50% - 5px);
 | 
	
		
			
				|  |  | +                        display: flex;
 | 
	
		
			
				|  |  | +                        justify-content: center;
 | 
	
		
			
				|  |  | +                        align-items: center;
 | 
	
		
			
				|  |  | +                        padding-right: 4px;
 | 
	
		
			
				|  |  | +                        background-image: linear-gradient(to right, #39a3ff00, #39a3ff10);
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                        &:first-child {
 | 
	
		
			
				|  |  | +                            margin-right: 10px;
 | 
	
		
			
				|  |  | +                        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                        .state-title {
 | 
	
		
			
				|  |  | +                            color: #ffffffcc;
 | 
	
		
			
				|  |  | +                            flex: 9;
 | 
	
		
			
				|  |  | +                            font-size: 14px;
 | 
	
		
			
				|  |  | +                        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                        .state-val {
 | 
	
		
			
				|  |  | +                            flex: 1;
 | 
	
		
			
				|  |  | +                            color: #00eefffe;
 | 
	
		
			
				|  |  | +                            margin-right: 5px;
 | 
	
		
			
				|  |  | +                            text-align: right;
 | 
	
		
			
				|  |  | +                            font-size: 14px;
 | 
	
		
			
				|  |  | +                        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                        .state-title1 {
 | 
	
		
			
				|  |  | +                            color: #ffffffcc;
 | 
	
		
			
				|  |  | +                            flex: 5;
 | 
	
		
			
				|  |  | +                            font-size: 14px;
 | 
	
		
			
				|  |  | +                        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                        .state-val1 {
 | 
	
		
			
				|  |  | +                            display: flex;
 | 
	
		
			
				|  |  | +                            flex: 1;
 | 
	
		
			
				|  |  | +                            justify-content: center;
 | 
	
		
			
				|  |  | +                            align-items: center;
 | 
	
		
			
				|  |  | +                        }
 | 
	
		
			
				|  |  | +                    }
 | 
	
		
			
				|  |  | +                }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                .signal-box {
 | 
	
		
			
				|  |  | +                    margin: 5px 0;
 | 
	
		
			
				|  |  | +                    display: flex;
 | 
	
		
			
				|  |  | +                    align-items: center;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                    .signal-title {
 | 
	
		
			
				|  |  | +                        color: #7af5ff;
 | 
	
		
			
				|  |  | +                        margin: 0 5px;
 | 
	
		
			
				|  |  | +                    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                    &:last-child {
 | 
	
		
			
				|  |  | +                        margin-right: 0px;
 | 
	
		
			
				|  |  | +                    }
 | 
	
		
			
				|  |  | +                }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                .list-item {
 | 
	
		
			
				|  |  | +                    padding: 0 10px;
 | 
	
		
			
				|  |  | +                    display: flex;
 | 
	
		
			
				|  |  | +                    justify-content: space-between;
 | 
	
		
			
				|  |  | +                    align-items: center;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                    .item-data-key {
 | 
	
		
			
				|  |  | +                        color: #ffffff99;
 | 
	
		
			
				|  |  | +                    }
 | 
	
		
			
				|  |  | +                }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                .item-data-box {
 | 
	
		
			
				|  |  | +                    color: #fff;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                    .state-icon {
 | 
	
		
			
				|  |  | +                        display: inline-block;
 | 
	
		
			
				|  |  | +                        width: 12px;
 | 
	
		
			
				|  |  | +                        height: 12px;
 | 
	
		
			
				|  |  | +                        border-radius: 12px;
 | 
	
		
			
				|  |  | +                    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                    .open {
 | 
	
		
			
				|  |  | +                        border: 5px solid #133a56;
 | 
	
		
			
				|  |  | +                        background: #4ecb73;
 | 
	
		
			
				|  |  | +                    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                    .close {
 | 
	
		
			
				|  |  | +                        border: 5px solid #192961;
 | 
	
		
			
				|  |  | +                        background: #6d7898;
 | 
	
		
			
				|  |  | +                    }
 | 
	
		
			
				|  |  | +                }
 | 
	
		
			
				|  |  | +            }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +            .item-l {
 | 
	
		
			
				|  |  | +                width: 100%;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                .monitor-box {
 | 
	
		
			
				|  |  | +                    width: 100%;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                    .parameter-title {
 | 
	
		
			
				|  |  | +                        position: relative;
 | 
	
		
			
				|  |  | +                        width: 100%;
 | 
	
		
			
				|  |  | +                        height: 14px;
 | 
	
		
			
				|  |  | +                        margin-top: 10px;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                        .icon,
 | 
	
		
			
				|  |  | +                        span {
 | 
	
		
			
				|  |  | +                            position: absolute;
 | 
	
		
			
				|  |  | +                            top: -10px;
 | 
	
		
			
				|  |  | +                        }
 | 
	
		
			
				|  |  | +                    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                    .group-parameter-title {
 | 
	
		
			
				|  |  | +                        background-image: linear-gradient(to right, #39a3ff50, #39a3ff00);
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                        .icon {
 | 
	
		
			
				|  |  | +                            left: -12px;
 | 
	
		
			
				|  |  | +                            top: -17px;
 | 
	
		
			
				|  |  | +                        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                        span {
 | 
	
		
			
				|  |  | +                            left: 18px;
 | 
	
		
			
				|  |  | +                        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                        .item-col {
 | 
	
		
			
				|  |  | +                            background-image: linear-gradient(to right, #39a3ff00, #39a3ff10);
 | 
	
		
			
				|  |  | +                        }
 | 
	
		
			
				|  |  | +                    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                    .device-parameter-title {
 | 
	
		
			
				|  |  | +                        background-image: linear-gradient(to right, #3df6ff40, #3df6ff00);
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                        .icon {
 | 
	
		
			
				|  |  | +                            left: -10px;
 | 
	
		
			
				|  |  | +                            top: -14px;
 | 
	
		
			
				|  |  | +                        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                        span {
 | 
	
		
			
				|  |  | +                            left: 18px;
 | 
	
		
			
				|  |  | +                        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                        .item-col {
 | 
	
		
			
				|  |  | +                            background-image: linear-gradient(to right, #3df6ff10, #3df6ff00);
 | 
	
		
			
				|  |  | +                        }
 | 
	
		
			
				|  |  | +                    }
 | 
	
		
			
				|  |  | +                }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                // .monitor-box1 {
 | 
	
		
			
				|  |  | +                //     height: 126px;
 | 
	
		
			
				|  |  | +                // }   
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                .state-box {
 | 
	
		
			
				|  |  | +                    height: calc(100% - 24px);
 | 
	
		
			
				|  |  | +                    overflow-y: auto;
 | 
	
		
			
				|  |  | +                }
 | 
	
		
			
				|  |  | +            }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +            .right-box {
 | 
	
		
			
				|  |  | +                width: 330px;
 | 
	
		
			
				|  |  | +                margin-top: 50px;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                .control-group {
 | 
	
		
			
				|  |  | +                    display: flex;
 | 
	
		
			
				|  |  | +                    // justify-content: space-around;
 | 
	
		
			
				|  |  | +                    flex-wrap: wrap;
 | 
	
		
			
				|  |  | +                    height: 262px;
 | 
	
		
			
				|  |  | +                    overflow-y: auto;
 | 
	
		
			
				|  |  | +                    overflow-x: hidden;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                    .control-item {
 | 
	
		
			
				|  |  | +                        width: 50%; //lxh
 | 
	
		
			
				|  |  | +                        display: flex;
 | 
	
		
			
				|  |  | +                        flex-direction: column;
 | 
	
		
			
				|  |  | +                        justify-content: center;
 | 
	
		
			
				|  |  | +                        align-items: center;
 | 
	
		
			
				|  |  | +                        padding: 0 4px;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                        .control-item-title {
 | 
	
		
			
				|  |  | +                            color: #a6dce9;
 | 
	
		
			
				|  |  | +                            position: relative;
 | 
	
		
			
				|  |  | +                            top: 5px;
 | 
	
		
			
				|  |  | +                        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                        .control-item-state {
 | 
	
		
			
				|  |  | +                            // width: 94px;
 | 
	
		
			
				|  |  | +                            width: 162px;
 | 
	
		
			
				|  |  | +                            // height: 47px;
 | 
	
		
			
				|  |  | +                            height: 36px;
 | 
	
		
			
				|  |  | +                            background: url('/@/assets/images/vent/control-switch-bg.png');
 | 
	
		
			
				|  |  | +                            background-size: 100% 100%;
 | 
	
		
			
				|  |  | +                            display: flex;
 | 
	
		
			
				|  |  | +                            justify-content: center;
 | 
	
		
			
				|  |  | +                            align-items: center;
 | 
	
		
			
				|  |  | +                            color: #fff;
 | 
	
		
			
				|  |  | +                        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                        .button-box {
 | 
	
		
			
				|  |  | +                            position: relative;
 | 
	
		
			
				|  |  | +                            padding: 5px;
 | 
	
		
			
				|  |  | +                            border: 1px transparent solid;
 | 
	
		
			
				|  |  | +                            background-clip: border-box;
 | 
	
		
			
				|  |  | +                            border-radius: 5px;
 | 
	
		
			
				|  |  | +                            margin-left: 8px;
 | 
	
		
			
				|  |  | +                        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                        .a-button {
 | 
	
		
			
				|  |  | +                            pointer-events: auto;
 | 
	
		
			
				|  |  | +                        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                        &::v-deep .a-button--mini {
 | 
	
		
			
				|  |  | +                            padding: 6px 10px;
 | 
	
		
			
				|  |  | +                        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +                        &::v-deep .a-button--mini.is-round {
 | 
	
		
			
				|  |  | +                            padding: 6px 10px;
 | 
	
		
			
				|  |  | +                        }
 | 
	
		
			
				|  |  | +                    }
 | 
	
		
			
				|  |  | +                }
 | 
	
		
			
				|  |  | +            }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +            .left-box {
 | 
	
		
			
				|  |  | +                width: 365px;
 | 
	
		
			
				|  |  | +                margin-top: 80px;
 | 
	
		
			
				|  |  | +            }
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        &:deep(.win) {
 | 
	
		
			
				|  |  | +            width: 100%;
 | 
	
		
			
				|  |  | +            margin: 0 !important;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +}
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +&:deep(.main) {
 | 
	
		
			
				|  |  | +    .title {
 | 
	
		
			
				|  |  | +        height: 34px;
 | 
	
		
			
				|  |  | +        text-align: center;
 | 
	
		
			
				|  |  | +        font-weight: 600;
 | 
	
		
			
				|  |  | +        color: #7af5ff;
 | 
	
		
			
				|  |  | +        // background-image: url('../../../assets/img/yfj/light.png');
 | 
	
		
			
				|  |  | +        background-repeat: no-repeat;
 | 
	
		
			
				|  |  | +        background-position-x: center;
 | 
	
		
			
				|  |  | +        background-position-y: 100%;
 | 
	
		
			
				|  |  | +        background-size: 80%;
 | 
	
		
			
				|  |  | +        font-size: 16px;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    .monitor-item {
 | 
	
		
			
				|  |  | +        width: 200px;
 | 
	
		
			
				|  |  | +        display: flex;
 | 
	
		
			
				|  |  | +        flex-direction: row;
 | 
	
		
			
				|  |  | +        width: auto;
 | 
	
		
			
				|  |  | +        margin-bottom: 3px;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        .monitor-val {
 | 
	
		
			
				|  |  | +            color: #ffb700;
 | 
	
		
			
				|  |  | +            display: flex;
 | 
	
		
			
				|  |  | +            width: auto;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +            .val {
 | 
	
		
			
				|  |  | +                width: 80px;
 | 
	
		
			
				|  |  | +                // font-size: 14px;
 | 
	
		
			
				|  |  | +                font-size: 16px;
 | 
	
		
			
				|  |  | +            }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +            .unit {
 | 
	
		
			
				|  |  | +                color: #ffffffbb;
 | 
	
		
			
				|  |  | +                // font-size: 14px;
 | 
	
		
			
				|  |  | +                font-size: 16px;
 | 
	
		
			
				|  |  | +            }
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    .monitor-title {
 | 
	
		
			
				|  |  | +        width: 100px;
 | 
	
		
			
				|  |  | +        color: #7af5ff;
 | 
	
		
			
				|  |  | +        font-weight: 400;
 | 
	
		
			
				|  |  | +        // font-size: 14px;
 | 
	
		
			
				|  |  | +        font-size: 16px;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    .signal-item {
 | 
	
		
			
				|  |  | +        display: flex;
 | 
	
		
			
				|  |  | +        justify-content: space-between;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        // margin-bottom: 5px;
 | 
	
		
			
				|  |  | +        .signal-round {
 | 
	
		
			
				|  |  | +            display: inline-block;
 | 
	
		
			
				|  |  | +            width: 8px;
 | 
	
		
			
				|  |  | +            height: 8px;
 | 
	
		
			
				|  |  | +            border-radius: 50%;
 | 
	
		
			
				|  |  | +            margin: 0 10px;
 | 
	
		
			
				|  |  | +            position: relative;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +            &::after {
 | 
	
		
			
				|  |  | +                display: block;
 | 
	
		
			
				|  |  | +                content: '';
 | 
	
		
			
				|  |  | +                position: absolute;
 | 
	
		
			
				|  |  | +                width: 12px;
 | 
	
		
			
				|  |  | +                height: 12px;
 | 
	
		
			
				|  |  | +                top: -2px;
 | 
	
		
			
				|  |  | +                left: -2px;
 | 
	
		
			
				|  |  | +                border-radius: 50%;
 | 
	
		
			
				|  |  | +            }
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        .signal-round-gry {
 | 
	
		
			
				|  |  | +            background-color: #858585;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +            &::after {
 | 
	
		
			
				|  |  | +                background-color: #85858544;
 | 
	
		
			
				|  |  | +                box-shadow: 0 0 1px 1px #85858599;
 | 
	
		
			
				|  |  | +            }
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        .signal-round-run {
 | 
	
		
			
				|  |  | +            background-color: #67fc00;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +            &::after {
 | 
	
		
			
				|  |  | +                background-color: #67fc0044;
 | 
	
		
			
				|  |  | +                box-shadow: 0 0 1px 1px #c6ff77;
 | 
	
		
			
				|  |  | +            }
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        .signal-round-warning {
 | 
	
		
			
				|  |  | +            background-color: #e9170b;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +            &::after {
 | 
	
		
			
				|  |  | +                background-color: #e9170b44;
 | 
	
		
			
				|  |  | +                box-shadow: 0 0 1px 1px #e9170b;
 | 
	
		
			
				|  |  | +            }
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +}
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +:deep(.zxm-radio-wrapper) {
 | 
	
		
			
				|  |  | +    color: #fff !important;
 | 
	
		
			
				|  |  | +}
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +:deep(.zxm-radio-group) {
 | 
	
		
			
				|  |  | +    color: #fff !important;
 | 
	
		
			
				|  |  | +}
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +:deep(.zxm-radio-group .zxm-radio-wrapper) {
 | 
	
		
			
				|  |  | +    color: #fff !important;
 | 
	
		
			
				|  |  | +}
 | 
	
		
			
				|  |  | +:deep(.zxm-radio-disabled + span){
 | 
	
		
			
				|  |  | +    color: #fff;
 | 
	
		
			
				|  |  | +}
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +:deep(.zxm-radio-disabled .zxm-radio-inner::after){
 | 
	
		
			
				|  |  | +    background-color:#0490a8;
 | 
	
		
			
				|  |  | +}
 | 
	
		
			
				|  |  | +</style>
 | 
	
		
			
				|  |  | +  
 |