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

23 lines
547 B
JavaScript
Raw Normal View History

2025-05-22 16:13:42 +08:00
import React, { useMemo, useState } from 'react';
import PanelBox from '../../components/PanelBox';
function DrpReal({ style }) {
return (
<PanelBox
style={style}
2025-05-29 13:27:37 +08:00
title="取水监管"
2025-05-22 16:13:42 +08:00
color="green"
2025-05-29 13:27:37 +08:00
extra={
<>
<img src='/assets/镇切换.jpg' style={{width:'150px', height:'20px',marginRight:'5px'}}/>
</>
}
2025-05-22 16:13:42 +08:00
>
2025-05-29 13:27:37 +08:00
<img src='/assets/取水监管.jpg' style={{width:'429.81px', height:'182px',marginLeft:'1px',marginTop:'10px'}}/>
2025-05-22 16:13:42 +08:00
</PanelBox>
)
}
export default DrpReal;