mcfxkh-Web/src/views/Home/panels/Yhfx/index.js

18 lines
381 B
JavaScript
Raw Normal View History

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"
>
<img src='/assets/药耗分析.jpg' style={{width:'26rem', height:'17.5rem',marginLeft:'8px'}}/>
</PanelBox>
)
}
export default DrpReal;