29 lines
818 B
TypeScript
Raw Normal View History

2026-01-08 16:35:06 +08:00
// import MyModalsMapLeaflet from '@/components/ModalsMapLeaflet';
2026-02-06 17:40:04 +08:00
import { Apis } from '@/gen/Apis';
import { FloatButton } from 'antd';
2026-02-04 12:32:17 +08:00
import LayoutLeft from './components/LayoutLeft';
import LayoutRight from './components/LayoutRight';
2026-01-08 16:35:06 +08:00
import './style.scss';
export default function Index() {
2026-02-04 12:32:17 +08:00
return (
<div className="overview_content">
<div className="overview_left">
<LayoutLeft />
</div>
<div className="overview_right">
<LayoutRight />
</div>
2026-02-06 17:40:04 +08:00
<FloatButton
// icon={<Loading3QuartersOutlined />}
description="刷新"
onClick={() => {
Apis.Statistics.IndexCount.ClearCache().then(() => {
// message.success('刷新成功');
window.location.reload();
});
}}
/>
2026-02-04 12:32:17 +08:00
</div>
);
2026-01-08 16:35:06 +08:00
}