update kiln

Bu işleme şunda yer alıyor:
lb 2023-06-30 16:58:38 +08:00
ebeveyn 533a59ddac
işleme f116f7bc95
2 değiştirilmiş dosya ile 39 ekleme ve 9 silme

Dosyayı Görüntüle

@ -27,6 +27,17 @@ var Number = 1
export default function Kiln() {
const [infos, setInfos] = useState([
{ label: '窑炉压力', value: '29Pa' },
{ label: '循环水温度', value: '59℃' },
{ label: '压力流量', value: '29Pa' },
{ label: '混合料温度', value: '49℃' },
{ label: '窑温', value: '59℃' },
{ label: '压缩器压力', value: '293Pa' },
{ label: '水分', value: '12%' },
{ label: '助燃风', value: '122' },
])
useEffect(() => {
setInterval(() => {
Number = Number + 1
@ -43,11 +54,20 @@ export default function Kiln() {
return (
<Container title='窑炉信息' icon='kiln' className={cls.leftBar__top}>
<div className='LeftChart1ItemBorder'>
<div className="leftBar__top__content">
{
infos.map(item =>
<div className={cls.info__item}>{item.label}: {item.value}</div>
)
}
</div>
{/* <div className='LeftChart1ItemBorder'>
<div className='LeftChart1ItemRow'>
<div className='LeftChart1ItemRowDetail'>
{/* <img src={Icon1} alt="" /> */}
<h2 className='LeftChart1ItemRowDetailTxt'>水泵水管</h2>
<div className='LeftChart1ItemRowDetail'> */}
{/* <img src={Icon1} alt="" /> */}
{/* <h2 className='LeftChart1ItemRowDetailTxt'></h2>
</div>
<Item data={num == 1 ? Data1 : Data2} />
</div>
@ -60,7 +80,7 @@ export default function Kiln() {
<Item data={num == 1 ? Data1 : Data2} />
</div>
<div className='LeftChart1ItemRow'></div>
</div>
</div> */}
</Container>
)

Dosyayı Görüntüle

@ -1,10 +1,20 @@
.leftBar__top {
width: 625px;
height: 305px;
background: url('../../assets/ItemBg.png');
display: flex;
flex-direction: column;
justify-content: space-between;
background: url('../../assets/ItemBg.png'), #938f0034;
.leftBar__top__content {
flex: 1;
height: 1px;
background: #9039;
display: flex;
flex-wrap: wrap;
.info__item {
background: red;
}
}
.LeftChart1ItemitemBorder {
margin-top: 24px;