update 烟气处理
This commit is contained in:
parent
7ddae1b3a4
commit
28c9c1906e
@ -11,10 +11,10 @@ const SmokeHandleTable = () => {
|
|||||||
<div className={cls.info__item}>
|
<div className={cls.info__item}>
|
||||||
氮氧化物浓度: {(+smokeInfo?.NOX_float)?.toFixed(2) || 0}mg/m³
|
氮氧化物浓度: {(+smokeInfo?.NOX_float)?.toFixed(2) || 0}mg/m³
|
||||||
</div>
|
</div>
|
||||||
<div className={cls.info__item}>
|
<div className={cls.info__item} style={{ gridColumn: "span 2" }}>
|
||||||
二氧化硫浓度: {(+smokeInfo?.SO2_float)?.toFixed(2) || 0}mg/m³
|
二氧化硫浓度: {(+smokeInfo?.SO2_float)?.toFixed(2) || 0}mg/m³
|
||||||
</div>
|
</div>
|
||||||
<div className={cls.info__item}>
|
<div className={cls.info__item + " " + cls.disabled}>
|
||||||
颗粒物浓度: {(+smokeInfo?.dust_float)?.toFixed(2) || 0}mg/m³
|
颗粒物浓度: {(+smokeInfo?.dust_float)?.toFixed(2) || 0}mg/m³
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -27,3 +27,10 @@
|
|||||||
grid-template-columns: 1fr 1fr;
|
grid-template-columns: 1fr 1fr;
|
||||||
gap: 4px;
|
gap: 4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.disabled {
|
||||||
|
display: none;
|
||||||
|
pointer-events: none;
|
||||||
|
opacity: 0.5;
|
||||||
|
color: transparent;
|
||||||
|
}
|
||||||
|
@ -12,6 +12,7 @@
|
|||||||
box-shadow: inset 0 0 12px 3px #fff2;
|
box-shadow: inset 0 0 12px 3px #fff2;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
padding: 4px;
|
padding: 4px;
|
||||||
|
backdrop-filter: blur(3px);
|
||||||
}
|
}
|
||||||
|
|
||||||
.shadowBorder.border {
|
.shadowBorder.border {
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
import cls from "./index.module.css";
|
import cls from "./index.module.css";
|
||||||
import GradientText from "../../../Common/GradientText";
|
import GradientText from "../../../Common/GradientText";
|
||||||
import { useSelector } from "react-redux";
|
import { useSelector } from "react-redux";
|
||||||
import eIcon1 from '../../../../assets/Icon/oilstation.png';
|
import eIcon1 from "../../../../assets/Icon/oilstation.png";
|
||||||
|
|
||||||
function SmokeHandle(props) {
|
function SmokeHandle(props) {
|
||||||
const smokeInfo = useSelector((state) => state.smoke?.info);
|
const smokeInfo = useSelector((state) => state.smoke?.info);
|
||||||
@ -34,13 +34,26 @@ function SmokeHandle(props) {
|
|||||||
{(+smokeInfo?.NOX_float)?.toFixed(2) || 0}
|
{(+smokeInfo?.NOX_float)?.toFixed(2) || 0}
|
||||||
</span>
|
</span>
|
||||||
</span>
|
</span>
|
||||||
<span className={cls.shadowBorder + " " + cls.infoText + " " + cls.border}>
|
<span
|
||||||
|
className={cls.shadowBorder + " " + cls.infoText + " " + cls.border}
|
||||||
|
style={{ gridColumn: "span 2" }}
|
||||||
|
>
|
||||||
<span style={{ lineHeight: 1.5 }}>二氧化硫浓度 mg/m³</span>
|
<span style={{ lineHeight: 1.5 }}>二氧化硫浓度 mg/m³</span>
|
||||||
<span style={{ lineHeight: 1.5 }}>
|
<span style={{ lineHeight: 1.5 }}>
|
||||||
{(+smokeInfo?.SO2_float)?.toFixed(2) || 0}
|
{(+smokeInfo?.SO2_float)?.toFixed(2) || 0}
|
||||||
</span>
|
</span>
|
||||||
</span>
|
</span>
|
||||||
<span className={cls.shadowBorder + " " + cls.infoText + " " + cls.border}>
|
<span
|
||||||
|
className={
|
||||||
|
cls.shadowBorder +
|
||||||
|
" " +
|
||||||
|
cls.infoText +
|
||||||
|
" " +
|
||||||
|
cls.border +
|
||||||
|
" " +
|
||||||
|
cls.disabled
|
||||||
|
}
|
||||||
|
>
|
||||||
<span style={{ lineHeight: 1.5 }}>颗粒物浓度 mg/m³</span>
|
<span style={{ lineHeight: 1.5 }}>颗粒物浓度 mg/m³</span>
|
||||||
<span style={{ lineHeight: 1.5 }}>
|
<span style={{ lineHeight: 1.5 }}>
|
||||||
{(+smokeInfo?.dust_float)?.toFixed(2) || 0}
|
{(+smokeInfo?.dust_float)?.toFixed(2) || 0}
|
||||||
|
@ -12,6 +12,7 @@
|
|||||||
box-shadow: inset 0 0 12px 3px #fff2;
|
box-shadow: inset 0 0 12px 3px #fff2;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
padding: 4px;
|
padding: 4px;
|
||||||
|
backdrop-filter: blur(3px);
|
||||||
}
|
}
|
||||||
|
|
||||||
.shadowBorder.border {
|
.shadowBorder.border {
|
||||||
@ -54,3 +55,10 @@
|
|||||||
color: #00fff7;
|
color: #00fff7;
|
||||||
font-size: 28px;
|
font-size: 28px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.disabled {
|
||||||
|
display: none;
|
||||||
|
pointer-events: none;
|
||||||
|
opacity: 0.5;
|
||||||
|
color: transparent;
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user