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-27 17:31:45 +08:00
|
|
|
extra={
|
|
|
|
|
<>
|
|
|
|
|
<img src='/assets/镇切换.jpg' style={{width:'150px', height:'20px',marginRight:'5px'}}/>
|
|
|
|
|
</>
|
|
|
|
|
}
|
2025-05-27 16:33:56 +08:00
|
|
|
>
|
|
|
|
|
<img src='/assets/水厂水质监测.jpg' style={{width:'26rem', height:'12rem',marginLeft:'0.3rem',marginTop:'1rem'}}/>
|
|
|
|
|
</PanelBox>
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default DrpReal;
|