|
@@ -27,7 +27,7 @@
|
|
|
<div class="left-f">
|
|
|
<DanelBd :moduleName="'粉尘实时浓度监测'" :contentStyle="{ contentH: '224px' }"
|
|
|
:bgSize="'middle'">
|
|
|
- <dustTimeNow :timeNowData="selectListBd1"></dustTimeNow>
|
|
|
+ <dustTimeNow :timeNowData="selectListBd"></dustTimeNow>
|
|
|
</DanelBd>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -46,8 +46,6 @@
|
|
|
<InfoCircleOutlined class="scalc-icon" />
|
|
|
</div>
|
|
|
</div>
|
|
|
-
|
|
|
-
|
|
|
<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>
|
|
@@ -74,7 +72,7 @@
|
|
|
<div class="right-c">
|
|
|
<DanelBd :moduleName="'粉尘关联指标'" :contentStyle="{ contentH: '328px' }" :bgSize="'middle'">
|
|
|
<!-- <dustGlzb :dustGlzbData="dustGlzbData" />selectListBd1 -->
|
|
|
- <dustGlzb :dustGlzbData="selectListBd1" />
|
|
|
+ <dustGlzb :dustGlzbData="selectListBd" />
|
|
|
</DanelBd>
|
|
|
</div>
|
|
|
<!-- 右下区域 -->
|
|
@@ -121,7 +119,6 @@ let areaType = ref('');
|
|
|
|
|
|
//综采工作面粉尘浓度数据
|
|
|
let selectListBd = reactive<any[]>([]);
|
|
|
-let selectListBd1 = reactive<any[]>([]);
|
|
|
let sensorCode = ref('');
|
|
|
let echartData = reactive({
|
|
|
xData: [],
|
|
@@ -225,18 +222,17 @@ async function getRealSensorDataByTypeList() {
|
|
|
let res = await getRealSensorDataByType({ areaType: 2 });
|
|
|
if (res.length != 0) {
|
|
|
selectListBd.length = 0;
|
|
|
- selectListBd1.length = 0;
|
|
|
res.forEach((el) => {
|
|
|
- selectListBd.push({
|
|
|
- label: el.name,
|
|
|
- value: el.code,
|
|
|
- temperature: el.temperature,
|
|
|
- humidity: el.humidity,
|
|
|
- windSpeed: el.windSpeed,
|
|
|
- waterPressure: el.waterPressure,
|
|
|
- });
|
|
|
+ // selectListBd.push({
|
|
|
+ // label: el.name,
|
|
|
+ // value: el.code,
|
|
|
+ // temperature: el.temperature,
|
|
|
+ // humidity: el.humidity,
|
|
|
+ // windSpeed: el.windSpeed,
|
|
|
+ // waterPressure: el.waterPressure,
|
|
|
+ // });
|
|
|
if (el.displayStatus) {
|
|
|
- selectListBd1.push({
|
|
|
+ selectListBd.push({
|
|
|
label: el.name,
|
|
|
value: el.code,
|
|
|
temperature: el.temperature,
|