mcfxkh-Web/src/views/Home/panels/Sbsltj/index.js

24 lines
743 B
JavaScript
Raw Normal View History

2025-05-27 16:33:56 +08:00
import React, { useMemo, useState } from 'react';
import PanelBox from '../../components/PanelBox';
function DrpReal({ style }) {
return (
<PanelBox
style={style}
title="设备数量统计"
color="green"
2025-05-28 17:06:13 +08:00
extra={
<>
2025-06-13 11:37:44 +08:00
<img src={process.env.PUBLIC_URL+'/assets/镇下拉.jpg'} style={{width:'100px', height:'30px',marginRight:'10px'}}/>
<img src={process.env.PUBLIC_URL+'/assets/水厂切换.jpg'} style={{width:'165px', height:'20px',marginRight:'5px'}}/>
2025-05-28 17:06:13 +08:00
</>
}
2025-05-27 16:33:56 +08:00
>
2025-06-13 11:37:44 +08:00
<img src={process.env.PUBLIC_URL+'/assets/设备数量统计.jpg'} style={{width:'26rem', height:'14rem',marginLeft:'0.3rem',marginTop:'0.5rem'}}/>
2025-05-27 16:33:56 +08:00
</PanelBox>
)
}
export default DrpReal;