|
@@ -57,7 +57,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
|
- <iframe src="http://172.16.253.23:91/valkyrja/?type=tf" width="100%" height="100%" frameborder="0"></iframe>
|
|
|
+ <iframe src="http://172.16.253.23:91/valkyrja/?type=tf" width="100%" height="100%" frameborder="0"></iframe>
|
|
|
<!-- <iframe src="http://82.157.13.146:18224/valkyrja/" width="100%" height="100%" frameborder="0"></iframe> -->
|
|
|
</div>
|
|
|
<transition>
|
|
@@ -176,7 +176,7 @@ let substationData=reactive<any[]>([])
|
|
|
|
|
|
//安全监控
|
|
|
let selectListAq = reactive<any[]>([
|
|
|
- { label: '综采工作面传感器监测', value: 'one' },
|
|
|
+ { label: '综放工作面传感器监测', value: 'one' },
|
|
|
{ label: '掘进工作面传感器监测', value: 'two' },
|
|
|
{ label: '主运输系统传感器监测', value: 'three' },
|
|
|
{ label: '机电硐室及配电点传感器监测', value: 'four' },
|
|
@@ -497,15 +497,16 @@ async function getMainTrafficYwList() {
|
|
|
safetyList.length = 0;
|
|
|
safetyHead.push(
|
|
|
{ label: '测点位置' },
|
|
|
- { label: '温度(°C)' },
|
|
|
+ { label: '测点值' },
|
|
|
{ label: '预警级别' },
|
|
|
// { label: '时间' },
|
|
|
);
|
|
|
if (res.length != 0) {
|
|
|
res.forEach((el) => {
|
|
|
+ el.detectValue= el.sensorType=='M0104' ? '0ppm' : el.sensorType=='K0007' ? el.detectValue=='0' ? '无烟雾' : el.detectValue=='1' ? '有烟雾' : '-' : '-'
|
|
|
safetyList.push({
|
|
|
address: el.nodePlacement,
|
|
|
- temp: el.detectValue || '-',
|
|
|
+ temp: el.detectValue,
|
|
|
grade: el.warningMsg,
|
|
|
// time: el.dateTime,
|
|
|
});
|