├── .env ├── .github └── workflows │ └── deploy.yml ├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── README.md ├── eslint.config.mjs ├── package.json ├── pnpm-lock.yaml ├── prettier.config.mjs ├── rsbuild.config.ts ├── src ├── App.tsx ├── ThemeIndex.tsx ├── assets │ ├── images │ │ └── signIn │ │ │ └── bg.jpg │ └── svg │ │ ├── antd.svg │ │ └── v8-outline.svg ├── components │ ├── stateful │ │ ├── ErrorBoundary │ │ │ ├── index.module.less │ │ │ └── index.tsx │ │ └── index.tsx │ └── stateless │ │ ├── AlignCenter │ │ └── index.tsx │ │ ├── ContainerLoading │ │ ├── index.md │ │ └── index.tsx │ │ ├── Exception │ │ ├── exception401.tsx │ │ ├── exception403.tsx │ │ ├── exception404.tsx │ │ └── exception500.tsx │ │ ├── FixLayout │ │ └── index.tsx │ │ ├── FixTabPanel │ │ └── index.tsx │ │ ├── LanguageSwitcher │ │ └── index.tsx │ │ ├── Loading │ │ └── index.tsx │ │ ├── MultiColorBorder │ │ ├── index.module.less │ │ └── index.tsx │ │ ├── NoMatch │ │ └── index.tsx │ │ ├── ScrollToTop │ │ └── index.tsx │ │ ├── TypedText │ │ └── index.tsx │ │ └── UserIP │ │ └── index.tsx ├── env.d.ts ├── hooks │ └── usePagination │ │ └── index.ts ├── i18n │ └── i18n.ts ├── index.css ├── index.tsx ├── layout │ ├── fullscreen │ │ └── index.tsx │ ├── index.module.less │ ├── index.tsx │ ├── proContent │ │ ├── index.module.less │ │ └── index.tsx │ ├── proHeader │ │ ├── components │ │ │ ├── Breadcrumb │ │ │ │ ├── index.module.less │ │ │ │ ├── index.tsx │ │ │ │ └── util.ts │ │ │ ├── HeaderRight │ │ │ │ ├── index.module.less │ │ │ │ └── index.tsx │ │ │ ├── HeaderSearch │ │ │ │ ├── index.module.less │ │ │ │ └── index.tsx │ │ │ ├── SwitchWorkspace │ │ │ │ ├── index.module.less │ │ │ │ └── index.tsx │ │ │ ├── TabsHistory │ │ │ │ ├── index.module.less │ │ │ │ └── inex.tsx │ │ │ └── UserInfo │ │ │ │ ├── ChangeAvatar │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ │ ├── ChangePassword │ │ │ │ └── index.tsx │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ ├── index.module.less │ │ └── index.tsx │ ├── proSecNav │ │ ├── index.module.less │ │ └── index.tsx │ ├── proSider │ │ └── index.tsx │ └── proTabs │ │ └── index.tsx ├── locales │ ├── en │ │ └── translation.ts │ └── zh │ │ └── translation.ts ├── pages │ ├── coupons │ │ ├── add │ │ │ └── index.jsx │ │ ├── detail │ │ │ └── index.jsx │ │ ├── edit │ │ │ └── index.jsx │ │ ├── home │ │ │ └── index.jsx │ │ └── index.jsx │ ├── crypto │ │ └── index.jsx │ ├── demo │ │ └── index.tsx │ ├── echarts │ │ └── index.jsx │ ├── error │ │ └── index.jsx │ ├── home │ │ └── index.tsx │ └── signIn │ │ ├── LoginCard │ │ ├── index.less │ │ └── index.tsx │ │ └── index.tsx ├── routers │ ├── authRouter.tsx │ └── index.tsx ├── store │ ├── index.ts │ ├── tabsSlice │ │ └── index.tsx │ └── userInfoSlice │ │ └── index.ts ├── styles │ └── reset.css ├── theme │ ├── dark.ts │ ├── hooks.tsx │ ├── index.ts │ └── light.ts └── utils │ ├── aidFn.js │ ├── encrypt │ └── index.ts │ ├── index.ts │ ├── menu │ └── index.ts │ ├── publicFn │ └── index.tsx │ ├── sentry │ └── index.js │ ├── sleep │ └── index.ts │ ├── style │ └── index.ts │ ├── suffix │ └── index.ts │ ├── token │ └── index.ts │ └── tryCatch │ ├── index.js │ └── runPromise.js ├── tsconfig.json ├── typings └── i18next.d.ts └── uno.config.ts /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/.env -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /prettier.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/prettier.config.mjs -------------------------------------------------------------------------------- /rsbuild.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/rsbuild.config.ts -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/ThemeIndex.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/ThemeIndex.tsx -------------------------------------------------------------------------------- /src/assets/images/signIn/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/assets/images/signIn/bg.jpg -------------------------------------------------------------------------------- /src/assets/svg/antd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/assets/svg/antd.svg -------------------------------------------------------------------------------- /src/assets/svg/v8-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/assets/svg/v8-outline.svg -------------------------------------------------------------------------------- /src/components/stateful/ErrorBoundary/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/components/stateful/ErrorBoundary/index.module.less -------------------------------------------------------------------------------- /src/components/stateful/ErrorBoundary/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/components/stateful/ErrorBoundary/index.tsx -------------------------------------------------------------------------------- /src/components/stateful/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './ErrorBoundary'; 2 | -------------------------------------------------------------------------------- /src/components/stateless/AlignCenter/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/components/stateless/AlignCenter/index.tsx -------------------------------------------------------------------------------- /src/components/stateless/ContainerLoading/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/components/stateless/ContainerLoading/index.md -------------------------------------------------------------------------------- /src/components/stateless/ContainerLoading/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/components/stateless/ContainerLoading/index.tsx -------------------------------------------------------------------------------- /src/components/stateless/Exception/exception401.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/components/stateless/Exception/exception401.tsx -------------------------------------------------------------------------------- /src/components/stateless/Exception/exception403.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/components/stateless/Exception/exception403.tsx -------------------------------------------------------------------------------- /src/components/stateless/Exception/exception404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/components/stateless/Exception/exception404.tsx -------------------------------------------------------------------------------- /src/components/stateless/Exception/exception500.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/components/stateless/Exception/exception500.tsx -------------------------------------------------------------------------------- /src/components/stateless/FixLayout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/components/stateless/FixLayout/index.tsx -------------------------------------------------------------------------------- /src/components/stateless/FixTabPanel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/components/stateless/FixTabPanel/index.tsx -------------------------------------------------------------------------------- /src/components/stateless/LanguageSwitcher/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/components/stateless/LanguageSwitcher/index.tsx -------------------------------------------------------------------------------- /src/components/stateless/Loading/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/components/stateless/Loading/index.tsx -------------------------------------------------------------------------------- /src/components/stateless/MultiColorBorder/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/components/stateless/MultiColorBorder/index.module.less -------------------------------------------------------------------------------- /src/components/stateless/MultiColorBorder/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/components/stateless/MultiColorBorder/index.tsx -------------------------------------------------------------------------------- /src/components/stateless/NoMatch/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/components/stateless/NoMatch/index.tsx -------------------------------------------------------------------------------- /src/components/stateless/ScrollToTop/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/components/stateless/ScrollToTop/index.tsx -------------------------------------------------------------------------------- /src/components/stateless/TypedText/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/components/stateless/TypedText/index.tsx -------------------------------------------------------------------------------- /src/components/stateless/UserIP/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/components/stateless/UserIP/index.tsx -------------------------------------------------------------------------------- /src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/env.d.ts -------------------------------------------------------------------------------- /src/hooks/usePagination/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/hooks/usePagination/index.ts -------------------------------------------------------------------------------- /src/i18n/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/i18n/i18n.ts -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/layout/fullscreen/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/layout/fullscreen/index.tsx -------------------------------------------------------------------------------- /src/layout/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/layout/index.module.less -------------------------------------------------------------------------------- /src/layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/layout/index.tsx -------------------------------------------------------------------------------- /src/layout/proContent/index.module.less: -------------------------------------------------------------------------------- 1 | .layout { 2 | height: 100%; 3 | overflow: hidden; 4 | } 5 | -------------------------------------------------------------------------------- /src/layout/proContent/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/layout/proContent/index.tsx -------------------------------------------------------------------------------- /src/layout/proHeader/components/Breadcrumb/index.module.less: -------------------------------------------------------------------------------- 1 | .breadcrumb { 2 | cursor: pointer; 3 | line-height: 56px !important; 4 | } 5 | -------------------------------------------------------------------------------- /src/layout/proHeader/components/Breadcrumb/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/layout/proHeader/components/Breadcrumb/index.tsx -------------------------------------------------------------------------------- /src/layout/proHeader/components/Breadcrumb/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/layout/proHeader/components/Breadcrumb/util.ts -------------------------------------------------------------------------------- /src/layout/proHeader/components/HeaderRight/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/layout/proHeader/components/HeaderRight/index.module.less -------------------------------------------------------------------------------- /src/layout/proHeader/components/HeaderRight/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/layout/proHeader/components/HeaderRight/index.tsx -------------------------------------------------------------------------------- /src/layout/proHeader/components/HeaderSearch/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/layout/proHeader/components/HeaderSearch/index.module.less -------------------------------------------------------------------------------- /src/layout/proHeader/components/HeaderSearch/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/layout/proHeader/components/HeaderSearch/index.tsx -------------------------------------------------------------------------------- /src/layout/proHeader/components/SwitchWorkspace/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/layout/proHeader/components/SwitchWorkspace/index.module.less -------------------------------------------------------------------------------- /src/layout/proHeader/components/SwitchWorkspace/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/layout/proHeader/components/SwitchWorkspace/index.tsx -------------------------------------------------------------------------------- /src/layout/proHeader/components/TabsHistory/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/layout/proHeader/components/TabsHistory/index.module.less -------------------------------------------------------------------------------- /src/layout/proHeader/components/TabsHistory/inex.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/layout/proHeader/components/TabsHistory/inex.tsx -------------------------------------------------------------------------------- /src/layout/proHeader/components/UserInfo/ChangeAvatar/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/layout/proHeader/components/UserInfo/ChangeAvatar/index.less -------------------------------------------------------------------------------- /src/layout/proHeader/components/UserInfo/ChangeAvatar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/layout/proHeader/components/UserInfo/ChangeAvatar/index.tsx -------------------------------------------------------------------------------- /src/layout/proHeader/components/UserInfo/ChangePassword/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/layout/proHeader/components/UserInfo/ChangePassword/index.tsx -------------------------------------------------------------------------------- /src/layout/proHeader/components/UserInfo/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/layout/proHeader/components/UserInfo/index.less -------------------------------------------------------------------------------- /src/layout/proHeader/components/UserInfo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/layout/proHeader/components/UserInfo/index.tsx -------------------------------------------------------------------------------- /src/layout/proHeader/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/layout/proHeader/index.module.less -------------------------------------------------------------------------------- /src/layout/proHeader/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/layout/proHeader/index.tsx -------------------------------------------------------------------------------- /src/layout/proSecNav/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/layout/proSecNav/index.module.less -------------------------------------------------------------------------------- /src/layout/proSecNav/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/layout/proSecNav/index.tsx -------------------------------------------------------------------------------- /src/layout/proSider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/layout/proSider/index.tsx -------------------------------------------------------------------------------- /src/layout/proTabs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/layout/proTabs/index.tsx -------------------------------------------------------------------------------- /src/locales/en/translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/locales/en/translation.ts -------------------------------------------------------------------------------- /src/locales/zh/translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/locales/zh/translation.ts -------------------------------------------------------------------------------- /src/pages/coupons/add/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/pages/coupons/add/index.jsx -------------------------------------------------------------------------------- /src/pages/coupons/detail/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/pages/coupons/detail/index.jsx -------------------------------------------------------------------------------- /src/pages/coupons/edit/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/pages/coupons/edit/index.jsx -------------------------------------------------------------------------------- /src/pages/coupons/home/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/pages/coupons/home/index.jsx -------------------------------------------------------------------------------- /src/pages/coupons/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/pages/coupons/index.jsx -------------------------------------------------------------------------------- /src/pages/crypto/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/pages/crypto/index.jsx -------------------------------------------------------------------------------- /src/pages/demo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/pages/demo/index.tsx -------------------------------------------------------------------------------- /src/pages/echarts/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/pages/echarts/index.jsx -------------------------------------------------------------------------------- /src/pages/error/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/pages/error/index.jsx -------------------------------------------------------------------------------- /src/pages/home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/pages/home/index.tsx -------------------------------------------------------------------------------- /src/pages/signIn/LoginCard/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/pages/signIn/LoginCard/index.less -------------------------------------------------------------------------------- /src/pages/signIn/LoginCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/pages/signIn/LoginCard/index.tsx -------------------------------------------------------------------------------- /src/pages/signIn/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/pages/signIn/index.tsx -------------------------------------------------------------------------------- /src/routers/authRouter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/routers/authRouter.tsx -------------------------------------------------------------------------------- /src/routers/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/routers/index.tsx -------------------------------------------------------------------------------- /src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/store/index.ts -------------------------------------------------------------------------------- /src/store/tabsSlice/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/store/tabsSlice/index.tsx -------------------------------------------------------------------------------- /src/store/userInfoSlice/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/store/userInfoSlice/index.ts -------------------------------------------------------------------------------- /src/styles/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/styles/reset.css -------------------------------------------------------------------------------- /src/theme/dark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/theme/dark.ts -------------------------------------------------------------------------------- /src/theme/hooks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/theme/hooks.tsx -------------------------------------------------------------------------------- /src/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/theme/index.ts -------------------------------------------------------------------------------- /src/theme/light.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/theme/light.ts -------------------------------------------------------------------------------- /src/utils/aidFn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/utils/aidFn.js -------------------------------------------------------------------------------- /src/utils/encrypt/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/utils/encrypt/index.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /src/utils/menu/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/utils/menu/index.ts -------------------------------------------------------------------------------- /src/utils/publicFn/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/utils/publicFn/index.tsx -------------------------------------------------------------------------------- /src/utils/sentry/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/utils/sentry/index.js -------------------------------------------------------------------------------- /src/utils/sleep/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/utils/sleep/index.ts -------------------------------------------------------------------------------- /src/utils/style/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/utils/style/index.ts -------------------------------------------------------------------------------- /src/utils/suffix/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/utils/suffix/index.ts -------------------------------------------------------------------------------- /src/utils/token/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/utils/token/index.ts -------------------------------------------------------------------------------- /src/utils/tryCatch/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/utils/tryCatch/index.js -------------------------------------------------------------------------------- /src/utils/tryCatch/runPromise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/src/utils/tryCatch/runPromise.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typings/i18next.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/typings/i18next.d.ts -------------------------------------------------------------------------------- /uno.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cl1107/react-antd-admin-pro/HEAD/uno.config.ts --------------------------------------------------------------------------------