2025-06-04 20:45:32 +08:00
|
|
|
import React, { useMemo, useState } from 'react';
|
|
|
|
|
import PanelBox from '../../components/PanelBox';
|
|
|
|
|
|
|
|
|
|
function DrpReal({ style }) {
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<PanelBox
|
|
|
|
|
style={style}
|
|
|
|
|
title="预警成果"
|
|
|
|
|
color="green"
|
|
|
|
|
// extra={
|
|
|
|
|
// <>
|
|
|
|
|
// <img src='/assets/镇下拉.jpg' style={{width:'100px', height:'30px',marginRight:'10px'}}/>
|
|
|
|
|
// <img src='/assets/水厂切换.jpg' style={{width:'165px', height:'20px',marginRight:'5px'}}/>
|
|
|
|
|
// </>
|
|
|
|
|
// }
|
|
|
|
|
>
|
2025-06-13 11:37:44 +08:00
|
|
|
<img src={process.env.PUBLIC_URL+'/assets/组 4.png'} style={{width:'23rem',marginLeft:'1.7rem',marginTop:'1rem'}}/>
|
2025-06-04 20:45:32 +08:00
|
|
|
</PanelBox>
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default DrpReal;
|