24 lines
636 B
JavaScript
24 lines
636 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:'100px', height:'30px',marginRight:'10px'}}/>
|
|
<img src='/assets/水厂切换.jpg' style={{width:'165px', height:'20px',marginRight:'5px'}}/>
|
|
</>
|
|
}
|
|
>
|
|
<img src='/assets/药耗分析.jpg' style={{width:'26rem', height:'17.5rem',marginLeft:'8px'}}/>
|
|
</PanelBox>
|
|
)
|
|
}
|
|
|
|
export default DrpReal;
|