This commit is contained in:
D8D Developer
2025-06-27 02:43:31 +00:00
parent 7f50ebc956
commit ee21f49eeb
4 changed files with 0 additions and 42178 deletions

File diff suppressed because one or more lines are too long

View File

@@ -1,8 +0,0 @@
jsonp_914566_1693035292315_({
"info": "INVALID_USER_SCODE",
"infocode": "10008",
"status": "0",
"sec_code_debug": "d41d8cd98f00b204e9800998ecf8427e",
"key": "460db32598e2b08c3f258cf6e58c5fe4",
"sec_code": "6c473a397dedf8f964fffa87cc3a6aaf"
})

File diff suppressed because one or more lines are too long

View File

@@ -1,33 +0,0 @@
import { RouterProvider } from 'react-router';
import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
import { App as AntdApp } from 'antd'
import dayjs from 'dayjs';
import weekday from 'dayjs/plugin/weekday';
import localeData from 'dayjs/plugin/localeData';
import 'dayjs/locale/zh-cn';
import { AuthProvider } from './hooks/AuthProvider';
import { router } from './routes';
// 配置 dayjs 插件
dayjs.extend(weekday);
dayjs.extend(localeData);
// 设置 dayjs 语言
dayjs.locale('zh-cn');
// 创建QueryClient实例
const queryClient = new QueryClient();
// 应用入口组件
const App = () => {
return (
<QueryClientProvider client={queryClient}>
<AntdApp>
<AuthProvider>
<RouterProvider router={router} />
</AuthProvider>
</AntdApp>
</QueryClientProvider>
)
};