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

25 lines
505 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';
import AreaDrpChart from './chart';
function DrpReal({ style }) {
return (
<PanelBox
style={style}
title="水厂生产情况"
color="green"
2025-05-29 13:27:37 +08:00
extra={
<>
<img src='/assets/年下拉3.jpg' style={{width:'100px', height:'30px',marginRight:'10px'}}/>
</>
}
2025-05-27 16:33:56 +08:00
>
2025-05-29 13:27:37 +08:00
<AreaDrpChart data={[]} />
2025-05-27 16:33:56 +08:00
</PanelBox>
)
}
export default DrpReal;