This commit is contained in:
lb
2024-01-03 15:21:43 +08:00
parent 678c1b86ed
commit bee1aedda4
3 changed files with 8 additions and 8 deletions

View File

@@ -12,16 +12,16 @@ function SmokeHandle(props) {
<div className={`${cls.smokeHandle__content} flex flex-col`}>
<div className={cls.info__item_groups}>
<div className={cls.info__item}>
: {smokeInfo?.O2_float?.toFixed(2) || 0}%
: {(+smokeInfo?.O2_float)?.toFixed(2) || 0}%
</div>
<div className={cls.info__item}>
氮氧化物浓度: {smokeInfo?.NOX_float?.toFixed(2) || 0}mg/
氮氧化物浓度: {(+smokeInfo?.NOX_float)?.toFixed(2) || 0}mg/
</div>
<div className={cls.info__item}>
二氧化硫浓度: {smokeInfo?.SO2_float?.toFixed(2) || 0}mg/
二氧化硫浓度: {(+smokeInfo?.SO2_float)?.toFixed(2) || 0}mg/
</div>
<div className={cls.info__item}>
颗粒物浓度: {smokeInfo?.dust_float?.toFixed(2) || 0}mg/
颗粒物浓度: {(+smokeInfo?.dust_float)?.toFixed(2) || 0}mg/
</div>
</div>
<TechSplitline />