├── .github └── workflows │ ├── docker.yml │ └── publish.yml ├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── package.json ├── renovate.json ├── template ├── .dockerignore ├── .editorconfig ├── .env.development ├── .env.production ├── .env.test ├── .eslintignore ├── .eslintrc.cjs ├── .gitignore ├── .husky │ ├── commit-msg │ └── pre-commit ├── .prettierignore ├── .prettierrc.cjs ├── .stylelintignore ├── .stylelintrc.cjs ├── .vscode │ └── extensions.json ├── .yarnrc ├── Dockerfile ├── README.md ├── commitlint.config.cjs ├── index.html ├── nginx.conf ├── package.json ├── postcss.config.cjs ├── prepare.js ├── public │ ├── example.gif │ ├── favicon.svg │ └── logo.svg ├── src │ ├── App.tsx │ ├── api │ │ └── index.ts │ ├── assets │ │ ├── font │ │ │ ├── AlibabaPuHuiTi-2-45-Light.otf │ │ │ └── DINPro-Medium.otf │ │ ├── img │ │ │ └── logo.svg │ │ └── style │ │ │ ├── dark.var.css │ │ │ ├── index.css │ │ │ ├── light.var.css │ │ │ └── tailwind.css │ ├── components │ │ ├── HeaderRight │ │ │ ├── index.module.css │ │ │ └── index.tsx │ │ ├── Loading │ │ │ ├── ChaseLoading │ │ │ │ ├── index.css │ │ │ │ └── index.tsx │ │ │ ├── CubeGridLoading │ │ │ │ ├── index.css │ │ │ │ └── index.tsx │ │ │ ├── CubeLoading │ │ │ │ ├── index.css │ │ │ │ └── index.tsx │ │ │ ├── FoldingCubeLoading │ │ │ │ ├── index.css │ │ │ │ └── index.tsx │ │ │ ├── ProcessLoading │ │ │ │ └── index.tsx │ │ │ ├── RectLoading │ │ │ │ ├── index.css │ │ │ │ └── index.tsx │ │ │ ├── RotateCardLoading │ │ │ │ ├── index.module.css │ │ │ │ └── index.tsx │ │ │ └── index.ts │ │ └── UserModal │ │ │ └── index.tsx │ ├── config │ │ ├── access.ts │ │ ├── core.tsx │ │ ├── proxy.ts │ │ └── theme.ts │ ├── core │ │ ├── Access │ │ │ ├── index.tsx │ │ │ └── useAccess.ts │ │ ├── Create │ │ │ └── index.tsx │ │ ├── Global │ │ │ └── index.tsx │ │ ├── Layout │ │ │ ├── components │ │ │ │ ├── ContentPro │ │ │ │ │ ├── index.module.css │ │ │ │ │ └── index.tsx │ │ │ │ ├── HeaderPro │ │ │ │ │ ├── index.module.css │ │ │ │ │ └── index.tsx │ │ │ │ ├── HistoryTabPro │ │ │ │ │ ├── index.module.css │ │ │ │ │ └── index.tsx │ │ │ │ ├── LeftSiderPro │ │ │ │ │ ├── index.module.css │ │ │ │ │ └── index.tsx │ │ │ │ └── TopMenuPro │ │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ ├── Router │ │ │ ├── BeforeRouter │ │ │ │ └── index.tsx │ │ │ ├── KeepAlive │ │ │ │ └── index.tsx │ │ │ ├── RouterView │ │ │ │ └── index.tsx │ │ │ ├── type.d.ts │ │ │ ├── utils.tsx │ │ │ └── withRouter │ │ │ │ └── index.tsx │ │ ├── context │ │ │ ├── global.ts │ │ │ └── router.ts │ │ ├── index.ts │ │ └── service │ │ │ ├── axiosPro.ts │ │ │ └── index.ts │ ├── main.tsx │ ├── pages │ │ ├── Analyse │ │ │ ├── Sell │ │ │ │ └── index.tsx │ │ │ └── User │ │ │ │ └── index.tsx │ │ ├── Login │ │ │ └── index.tsx │ │ ├── NotAccess │ │ │ └── index.tsx │ │ ├── NotFound │ │ │ └── index.tsx │ │ └── Parent │ │ │ ├── Child1 │ │ │ └── index.tsx │ │ │ └── Child2 │ │ │ └── index.tsx │ ├── routes │ │ ├── img │ │ │ ├── icon-brand-manage.svg │ │ │ ├── icon-brand-rule.svg │ │ │ └── icon-report-brand.svg │ │ └── index.tsx │ ├── typings │ │ ├── declaration.d.ts │ │ └── vite-env.d.ts │ └── utils │ │ ├── index.ts │ │ └── regex.ts ├── tailwind.config.cjs ├── tsconfig.json ├── tsconfig.node.json ├── vite.config.ts └── yarn.lock ├── vercel.json └── yarn.lock /.github/workflows/docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/.github/workflows/docker.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/.npmignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/renovate.json -------------------------------------------------------------------------------- /template/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/.dockerignore -------------------------------------------------------------------------------- /template/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/.editorconfig -------------------------------------------------------------------------------- /template/.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/.env.development -------------------------------------------------------------------------------- /template/.env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/.env.production -------------------------------------------------------------------------------- /template/.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/.env.test -------------------------------------------------------------------------------- /template/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/.eslintignore -------------------------------------------------------------------------------- /template/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/.eslintrc.cjs -------------------------------------------------------------------------------- /template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/.gitignore -------------------------------------------------------------------------------- /template/.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/.husky/commit-msg -------------------------------------------------------------------------------- /template/.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | yarn run lint-staged -------------------------------------------------------------------------------- /template/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/.prettierignore -------------------------------------------------------------------------------- /template/.prettierrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/.prettierrc.cjs -------------------------------------------------------------------------------- /template/.stylelintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/.stylelintignore -------------------------------------------------------------------------------- /template/.stylelintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/.stylelintrc.cjs -------------------------------------------------------------------------------- /template/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/.vscode/extensions.json -------------------------------------------------------------------------------- /template/.yarnrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/.yarnrc -------------------------------------------------------------------------------- /template/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/Dockerfile -------------------------------------------------------------------------------- /template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/README.md -------------------------------------------------------------------------------- /template/commitlint.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/commitlint.config.cjs -------------------------------------------------------------------------------- /template/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/index.html -------------------------------------------------------------------------------- /template/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/nginx.conf -------------------------------------------------------------------------------- /template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/package.json -------------------------------------------------------------------------------- /template/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/postcss.config.cjs -------------------------------------------------------------------------------- /template/prepare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/prepare.js -------------------------------------------------------------------------------- /template/public/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/public/example.gif -------------------------------------------------------------------------------- /template/public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/public/favicon.svg -------------------------------------------------------------------------------- /template/public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/public/logo.svg -------------------------------------------------------------------------------- /template/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/App.tsx -------------------------------------------------------------------------------- /template/src/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/api/index.ts -------------------------------------------------------------------------------- /template/src/assets/font/AlibabaPuHuiTi-2-45-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/assets/font/AlibabaPuHuiTi-2-45-Light.otf -------------------------------------------------------------------------------- /template/src/assets/font/DINPro-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/assets/font/DINPro-Medium.otf -------------------------------------------------------------------------------- /template/src/assets/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/assets/img/logo.svg -------------------------------------------------------------------------------- /template/src/assets/style/dark.var.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/assets/style/dark.var.css -------------------------------------------------------------------------------- /template/src/assets/style/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/assets/style/index.css -------------------------------------------------------------------------------- /template/src/assets/style/light.var.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/assets/style/light.var.css -------------------------------------------------------------------------------- /template/src/assets/style/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/assets/style/tailwind.css -------------------------------------------------------------------------------- /template/src/components/HeaderRight/index.module.css: -------------------------------------------------------------------------------- 1 | .drop { 2 | cursor: pointer; 3 | 4 | &:hover { 5 | opacity: 0.8; 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /template/src/components/HeaderRight/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/components/HeaderRight/index.tsx -------------------------------------------------------------------------------- /template/src/components/Loading/ChaseLoading/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/components/Loading/ChaseLoading/index.css -------------------------------------------------------------------------------- /template/src/components/Loading/ChaseLoading/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/components/Loading/ChaseLoading/index.tsx -------------------------------------------------------------------------------- /template/src/components/Loading/CubeGridLoading/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/components/Loading/CubeGridLoading/index.css -------------------------------------------------------------------------------- /template/src/components/Loading/CubeGridLoading/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/components/Loading/CubeGridLoading/index.tsx -------------------------------------------------------------------------------- /template/src/components/Loading/CubeLoading/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/components/Loading/CubeLoading/index.css -------------------------------------------------------------------------------- /template/src/components/Loading/CubeLoading/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/components/Loading/CubeLoading/index.tsx -------------------------------------------------------------------------------- /template/src/components/Loading/FoldingCubeLoading/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/components/Loading/FoldingCubeLoading/index.css -------------------------------------------------------------------------------- /template/src/components/Loading/FoldingCubeLoading/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/components/Loading/FoldingCubeLoading/index.tsx -------------------------------------------------------------------------------- /template/src/components/Loading/ProcessLoading/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/components/Loading/ProcessLoading/index.tsx -------------------------------------------------------------------------------- /template/src/components/Loading/RectLoading/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/components/Loading/RectLoading/index.css -------------------------------------------------------------------------------- /template/src/components/Loading/RectLoading/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/components/Loading/RectLoading/index.tsx -------------------------------------------------------------------------------- /template/src/components/Loading/RotateCardLoading/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/components/Loading/RotateCardLoading/index.module.css -------------------------------------------------------------------------------- /template/src/components/Loading/RotateCardLoading/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/components/Loading/RotateCardLoading/index.tsx -------------------------------------------------------------------------------- /template/src/components/Loading/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/components/Loading/index.ts -------------------------------------------------------------------------------- /template/src/components/UserModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/components/UserModal/index.tsx -------------------------------------------------------------------------------- /template/src/config/access.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/config/access.ts -------------------------------------------------------------------------------- /template/src/config/core.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/config/core.tsx -------------------------------------------------------------------------------- /template/src/config/proxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/config/proxy.ts -------------------------------------------------------------------------------- /template/src/config/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/config/theme.ts -------------------------------------------------------------------------------- /template/src/core/Access/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/core/Access/index.tsx -------------------------------------------------------------------------------- /template/src/core/Access/useAccess.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/core/Access/useAccess.ts -------------------------------------------------------------------------------- /template/src/core/Create/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/core/Create/index.tsx -------------------------------------------------------------------------------- /template/src/core/Global/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/core/Global/index.tsx -------------------------------------------------------------------------------- /template/src/core/Layout/components/ContentPro/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/core/Layout/components/ContentPro/index.module.css -------------------------------------------------------------------------------- /template/src/core/Layout/components/ContentPro/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/core/Layout/components/ContentPro/index.tsx -------------------------------------------------------------------------------- /template/src/core/Layout/components/HeaderPro/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/core/Layout/components/HeaderPro/index.module.css -------------------------------------------------------------------------------- /template/src/core/Layout/components/HeaderPro/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/core/Layout/components/HeaderPro/index.tsx -------------------------------------------------------------------------------- /template/src/core/Layout/components/HistoryTabPro/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/core/Layout/components/HistoryTabPro/index.module.css -------------------------------------------------------------------------------- /template/src/core/Layout/components/HistoryTabPro/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/core/Layout/components/HistoryTabPro/index.tsx -------------------------------------------------------------------------------- /template/src/core/Layout/components/LeftSiderPro/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/core/Layout/components/LeftSiderPro/index.module.css -------------------------------------------------------------------------------- /template/src/core/Layout/components/LeftSiderPro/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/core/Layout/components/LeftSiderPro/index.tsx -------------------------------------------------------------------------------- /template/src/core/Layout/components/TopMenuPro/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/core/Layout/components/TopMenuPro/index.tsx -------------------------------------------------------------------------------- /template/src/core/Layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/core/Layout/index.tsx -------------------------------------------------------------------------------- /template/src/core/Router/BeforeRouter/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/core/Router/BeforeRouter/index.tsx -------------------------------------------------------------------------------- /template/src/core/Router/KeepAlive/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/core/Router/KeepAlive/index.tsx -------------------------------------------------------------------------------- /template/src/core/Router/RouterView/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/core/Router/RouterView/index.tsx -------------------------------------------------------------------------------- /template/src/core/Router/type.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/core/Router/type.d.ts -------------------------------------------------------------------------------- /template/src/core/Router/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/core/Router/utils.tsx -------------------------------------------------------------------------------- /template/src/core/Router/withRouter/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/core/Router/withRouter/index.tsx -------------------------------------------------------------------------------- /template/src/core/context/global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/core/context/global.ts -------------------------------------------------------------------------------- /template/src/core/context/router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/core/context/router.ts -------------------------------------------------------------------------------- /template/src/core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/core/index.ts -------------------------------------------------------------------------------- /template/src/core/service/axiosPro.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/core/service/axiosPro.ts -------------------------------------------------------------------------------- /template/src/core/service/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/core/service/index.ts -------------------------------------------------------------------------------- /template/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/main.tsx -------------------------------------------------------------------------------- /template/src/pages/Analyse/Sell/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/pages/Analyse/Sell/index.tsx -------------------------------------------------------------------------------- /template/src/pages/Analyse/User/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/pages/Analyse/User/index.tsx -------------------------------------------------------------------------------- /template/src/pages/Login/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/pages/Login/index.tsx -------------------------------------------------------------------------------- /template/src/pages/NotAccess/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/pages/NotAccess/index.tsx -------------------------------------------------------------------------------- /template/src/pages/NotFound/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/pages/NotFound/index.tsx -------------------------------------------------------------------------------- /template/src/pages/Parent/Child1/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/pages/Parent/Child1/index.tsx -------------------------------------------------------------------------------- /template/src/pages/Parent/Child2/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/pages/Parent/Child2/index.tsx -------------------------------------------------------------------------------- /template/src/routes/img/icon-brand-manage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/routes/img/icon-brand-manage.svg -------------------------------------------------------------------------------- /template/src/routes/img/icon-brand-rule.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/routes/img/icon-brand-rule.svg -------------------------------------------------------------------------------- /template/src/routes/img/icon-report-brand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/routes/img/icon-report-brand.svg -------------------------------------------------------------------------------- /template/src/routes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/routes/index.tsx -------------------------------------------------------------------------------- /template/src/typings/declaration.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/typings/declaration.d.ts -------------------------------------------------------------------------------- /template/src/typings/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/typings/vite-env.d.ts -------------------------------------------------------------------------------- /template/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/utils/index.ts -------------------------------------------------------------------------------- /template/src/utils/regex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/src/utils/regex.ts -------------------------------------------------------------------------------- /template/tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/tailwind.config.cjs -------------------------------------------------------------------------------- /template/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/tsconfig.json -------------------------------------------------------------------------------- /template/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/tsconfig.node.json -------------------------------------------------------------------------------- /template/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/vite.config.ts -------------------------------------------------------------------------------- /template/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/template/yarn.lock -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/vercel.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-void0/cta-template-admin/HEAD/yarn.lock --------------------------------------------------------------------------------