feat: 完成券商和用户管理

This commit is contained in:
R524809
2026-01-07 16:21:16 +08:00
parent 712f66b725
commit 457ba6d765
33 changed files with 2851 additions and 177 deletions

View File

@@ -1,5 +1,5 @@
import { RouterProvider } from 'react-router';
import { ConfigProvider } from 'antd';
import { ConfigProvider, App as AntdApp } from 'antd';
import zhCN from 'antd/locale/zh_CN';
import { router } from './router';
import './App.css';
@@ -15,7 +15,9 @@ function App() {
},
}}
>
<RouterProvider router={router} />
<AntdApp>
<RouterProvider router={router} />
</AntdApp>
</ConfigProvider>
);
}