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}
|
2025-05-29 13:27:37 +08:00
|
|
|
title="水质监测"
|
2025-05-27 16:33:56 +08:00
|
|
|
color="green"
|
2025-05-27 17:31:45 +08:00
|
|
|
extra={
|
|
|
|
|
<>
|
2025-05-29 13:27:37 +08:00
|
|
|
<img src='/assets/镇下拉.jpg' style={{width:'100px', height:'30px',marginRight:'10px'}}/>
|
|
|
|
|
<img src='/assets/水厂切换.jpg' style={{width:'165px', height:'20px',marginRight:'5px'}}/>
|
2025-05-27 17:31:45 +08:00
|
|
|
</>
|
|
|
|
|
}
|
2025-05-27 16:33:56 +08:00
|
|
|
>
|
2025-05-29 13:27:37 +08:00
|
|
|
<img src='/assets/水厂水质监测.jpg' style={{width:'26.5rem', height:'12rem',marginLeft:'0rem',marginTop:'1rem'}}/>
|
2025-05-27 16:33:56 +08:00
|
|
|
</PanelBox>
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default DrpReal;
|