23 lines
547 B
JavaScript
23 lines
547 B
JavaScript
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:'150px', height:'20px',marginRight:'5px'}}/>
|
|
</>
|
|
}
|
|
>
|
|
<img src='/assets/取水监管.jpg' style={{width:'429.81px', height:'182px',marginLeft:'1px',marginTop:'10px'}}/>
|
|
</PanelBox>
|
|
)
|
|
}
|
|
|
|
export default DrpReal;
|