├── .browserslistrc ├── .cz-config.js ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .github └── workflows │ └── deplay.yml ├── .gitignore ├── .husky ├── commit-msg └── pre-commit ├── .prettierignore ├── .prettierrc.js ├── .stylelintignore ├── .stylelintrc.js ├── LICENSE ├── README.md ├── babel.config.js ├── commitlint.config.js ├── doc ├── default-props.md ├── deploy.md ├── recoil.md ├── router-auth.md └── router.md ├── package.json ├── postcss.config.js ├── public ├── favicon.ico └── index.html ├── src ├── App.tsx ├── api │ └── user │ │ ├── login.ts │ │ └── type.d.ts ├── app.less ├── assets │ ├── images │ │ └── common │ │ │ ├── login_bg.png │ │ │ ├── login_bgm.mp4 │ │ │ ├── logo.svg │ │ │ ├── logo_simple.svg │ │ │ ├── product_gallery_illustration.svg │ │ │ ├── title_logo.svg │ │ │ ├── tps-609-606.png │ │ │ └── tps-884-496.png │ └── vr │ │ ├── back.png │ │ ├── bottom.png │ │ ├── front.png │ │ ├── kitchen.jpg │ │ ├── left.png │ │ ├── livingRoom.jpg │ │ ├── right.png │ │ ├── tip.png │ │ └── top.png ├── components │ └── SvgIcon │ │ ├── index.less │ │ └── index.tsx ├── config │ ├── defaultProps.tsx │ └── index.ts ├── core │ ├── enums │ │ ├── httpEnum.ts │ │ └── localKeyEnum.ts │ ├── http │ │ ├── helper │ │ │ ├── axiosCancel.ts │ │ │ └── checkStatus.ts │ │ └── index.ts │ └── storageEffect │ │ └── index.ts ├── icon │ ├── index.ts │ └── svg │ │ ├── icon-business-trip.svg │ │ ├── icon-change-request.svg │ │ ├── icon-doe-application-form.svg │ │ ├── icon-ecn-application.svg │ │ ├── icon-fixed-capital.svg │ │ ├── icon-interview-evaluation.svg │ │ ├── icon-leave-request.svg │ │ ├── icon-material-contracte.svg │ │ ├── icon-monitor-access.svg │ │ ├── icon-permission-application.svg │ │ ├── icon-permission-request.svg │ │ ├── icon-personnel-supple.svg │ │ ├── icon-quotation-request.svg │ │ ├── icon-quotation-sheet.svg │ │ ├── icon-release-permit.svg │ │ ├── icon-shipment-requisition.svg │ │ ├── icon-shuwupinfabao.svg │ │ ├── icon-wupinzhuanyishenqingdan.svg │ │ ├── icon-xinanjianpinggu.svg │ │ ├── icon-yingjiangongcheng.svg │ │ ├── icon-yuanguanshenqingdan.svg │ │ └── icon-zhijufabao.svg ├── index.tsx ├── layouts │ ├── components │ │ ├── AliveTag │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── BasicBreadcrumb │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── BasicHeaderMenu │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── BasicSider │ │ │ └── index.tsx │ │ ├── DefaultSetting │ │ │ └── index.tsx │ │ ├── HeaderDropdown │ │ │ └── index.tsx │ │ ├── LayoutEditor │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── Logo │ │ │ ├── index.less │ │ │ └── index.tsx │ │ └── RightContent │ │ │ ├── AvatarDropdown.tsx │ │ │ ├── ToolIcon.tsx │ │ │ └── index.tsx │ ├── index.less │ └── index.tsx ├── pages │ ├── dashboard │ │ ├── analysis │ │ │ ├── components │ │ │ │ ├── IntroduceRow │ │ │ │ │ └── index.tsx │ │ │ │ ├── NumberInfo │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── ProportionSales │ │ │ │ │ └── index.tsx │ │ │ │ ├── SalesCard │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── SalesHot │ │ │ │ │ └── index.tsx │ │ │ │ ├── StatisticsCard │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── TopSearch │ │ │ │ │ └── index.tsx │ │ │ │ └── Trend │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ ├── index.less │ │ │ ├── index.tsx │ │ │ └── utils │ │ │ │ └── utils.ts │ │ └── embedded │ │ │ └── index.tsx │ ├── dataScreen │ │ ├── index.less │ │ └── index.tsx │ ├── error │ │ ├── 403.tsx │ │ ├── 404.tsx │ │ └── 500.tsx │ ├── home │ │ ├── index.less │ │ └── index.tsx │ ├── iconDashboard │ │ ├── index.less │ │ └── index.tsx │ ├── login │ │ ├── components │ │ │ └── AccountForm │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ ├── index.less │ │ └── index.tsx │ ├── menu │ │ ├── menu1 │ │ │ └── index.tsx │ │ ├── menu2 │ │ │ ├── menu21 │ │ │ │ └── index.tsx │ │ │ ├── menu22 │ │ │ │ ├── menu221 │ │ │ │ │ └── index.tsx │ │ │ │ └── menu222 │ │ │ │ │ └── index.tsx │ │ │ └── menu23 │ │ │ │ └── index.tsx │ │ └── menu3 │ │ │ └── index.tsx │ ├── themeEditor │ │ ├── components │ │ │ └── Overview │ │ │ │ └── index.tsx │ │ ├── index.less │ │ └── index.tsx │ └── threeVR │ │ ├── index.less │ │ └── index.tsx ├── routers │ ├── index.tsx │ ├── interface │ │ └── index.d.ts │ ├── modules │ │ ├── dashboard.tsx │ │ ├── dataScreen.tsx │ │ ├── error.tsx │ │ ├── home.tsx │ │ ├── iconDashboard.tsx │ │ └── menu.tsx │ └── utils │ │ ├── authRouter.tsx │ │ ├── index.ts │ │ ├── is │ │ └── index.ts │ │ ├── lazyLoad.tsx │ │ └── useRouter.tsx ├── store │ ├── breadcrumb.ts │ ├── global.ts │ └── menus.ts ├── styles │ ├── clearfix.less │ ├── global.less │ ├── size.less │ └── variable.less ├── svg │ └── icon-business-trip.svg ├── typings │ ├── global.d.ts │ └── images.d.ts └── utils │ ├── index.ts │ └── validate.ts └── tsconfig.json /.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/.browserslistrc -------------------------------------------------------------------------------- /.cz-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/.cz-config.js -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/deplay.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/.github/workflows/deplay.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist/ 3 | yarn.lock 4 | -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npm run pre-check 5 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.stylelintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/.stylelintignore -------------------------------------------------------------------------------- /.stylelintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/.stylelintrc.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/babel.config.js -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/commitlint.config.js -------------------------------------------------------------------------------- /doc/default-props.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/doc/default-props.md -------------------------------------------------------------------------------- /doc/deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/doc/deploy.md -------------------------------------------------------------------------------- /doc/recoil.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/doc/recoil.md -------------------------------------------------------------------------------- /doc/router-auth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/doc/router-auth.md -------------------------------------------------------------------------------- /doc/router.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/doc/router.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: ['autoprefixer'], 3 | } 4 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/public/index.html -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/api/user/login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/api/user/login.ts -------------------------------------------------------------------------------- /src/api/user/type.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/api/user/type.d.ts -------------------------------------------------------------------------------- /src/app.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/app.less -------------------------------------------------------------------------------- /src/assets/images/common/login_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/assets/images/common/login_bg.png -------------------------------------------------------------------------------- /src/assets/images/common/login_bgm.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/assets/images/common/login_bgm.mp4 -------------------------------------------------------------------------------- /src/assets/images/common/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/assets/images/common/logo.svg -------------------------------------------------------------------------------- /src/assets/images/common/logo_simple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/assets/images/common/logo_simple.svg -------------------------------------------------------------------------------- /src/assets/images/common/product_gallery_illustration.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/assets/images/common/product_gallery_illustration.svg -------------------------------------------------------------------------------- /src/assets/images/common/title_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/assets/images/common/title_logo.svg -------------------------------------------------------------------------------- /src/assets/images/common/tps-609-606.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/assets/images/common/tps-609-606.png -------------------------------------------------------------------------------- /src/assets/images/common/tps-884-496.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/assets/images/common/tps-884-496.png -------------------------------------------------------------------------------- /src/assets/vr/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/assets/vr/back.png -------------------------------------------------------------------------------- /src/assets/vr/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/assets/vr/bottom.png -------------------------------------------------------------------------------- /src/assets/vr/front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/assets/vr/front.png -------------------------------------------------------------------------------- /src/assets/vr/kitchen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/assets/vr/kitchen.jpg -------------------------------------------------------------------------------- /src/assets/vr/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/assets/vr/left.png -------------------------------------------------------------------------------- /src/assets/vr/livingRoom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/assets/vr/livingRoom.jpg -------------------------------------------------------------------------------- /src/assets/vr/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/assets/vr/right.png -------------------------------------------------------------------------------- /src/assets/vr/tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/assets/vr/tip.png -------------------------------------------------------------------------------- /src/assets/vr/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/assets/vr/top.png -------------------------------------------------------------------------------- /src/components/SvgIcon/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/components/SvgIcon/index.less -------------------------------------------------------------------------------- /src/components/SvgIcon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/components/SvgIcon/index.tsx -------------------------------------------------------------------------------- /src/config/defaultProps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/config/defaultProps.tsx -------------------------------------------------------------------------------- /src/config/index.ts: -------------------------------------------------------------------------------- 1 | // * 首页地址(默认) 2 | export const HOME_URL: string = '/home/index' 3 | -------------------------------------------------------------------------------- /src/core/enums/httpEnum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/core/enums/httpEnum.ts -------------------------------------------------------------------------------- /src/core/enums/localKeyEnum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/core/enums/localKeyEnum.ts -------------------------------------------------------------------------------- /src/core/http/helper/axiosCancel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/core/http/helper/axiosCancel.ts -------------------------------------------------------------------------------- /src/core/http/helper/checkStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/core/http/helper/checkStatus.ts -------------------------------------------------------------------------------- /src/core/http/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/core/http/index.ts -------------------------------------------------------------------------------- /src/core/storageEffect/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/core/storageEffect/index.ts -------------------------------------------------------------------------------- /src/icon/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/icon/index.ts -------------------------------------------------------------------------------- /src/icon/svg/icon-business-trip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/icon/svg/icon-business-trip.svg -------------------------------------------------------------------------------- /src/icon/svg/icon-change-request.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/icon/svg/icon-change-request.svg -------------------------------------------------------------------------------- /src/icon/svg/icon-doe-application-form.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/icon/svg/icon-doe-application-form.svg -------------------------------------------------------------------------------- /src/icon/svg/icon-ecn-application.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/icon/svg/icon-ecn-application.svg -------------------------------------------------------------------------------- /src/icon/svg/icon-fixed-capital.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/icon/svg/icon-fixed-capital.svg -------------------------------------------------------------------------------- /src/icon/svg/icon-interview-evaluation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/icon/svg/icon-interview-evaluation.svg -------------------------------------------------------------------------------- /src/icon/svg/icon-leave-request.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/icon/svg/icon-leave-request.svg -------------------------------------------------------------------------------- /src/icon/svg/icon-material-contracte.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/icon/svg/icon-material-contracte.svg -------------------------------------------------------------------------------- /src/icon/svg/icon-monitor-access.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/icon/svg/icon-monitor-access.svg -------------------------------------------------------------------------------- /src/icon/svg/icon-permission-application.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/icon/svg/icon-permission-application.svg -------------------------------------------------------------------------------- /src/icon/svg/icon-permission-request.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/icon/svg/icon-permission-request.svg -------------------------------------------------------------------------------- /src/icon/svg/icon-personnel-supple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/icon/svg/icon-personnel-supple.svg -------------------------------------------------------------------------------- /src/icon/svg/icon-quotation-request.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/icon/svg/icon-quotation-request.svg -------------------------------------------------------------------------------- /src/icon/svg/icon-quotation-sheet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/icon/svg/icon-quotation-sheet.svg -------------------------------------------------------------------------------- /src/icon/svg/icon-release-permit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/icon/svg/icon-release-permit.svg -------------------------------------------------------------------------------- /src/icon/svg/icon-shipment-requisition.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/icon/svg/icon-shipment-requisition.svg -------------------------------------------------------------------------------- /src/icon/svg/icon-shuwupinfabao.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/icon/svg/icon-shuwupinfabao.svg -------------------------------------------------------------------------------- /src/icon/svg/icon-wupinzhuanyishenqingdan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/icon/svg/icon-wupinzhuanyishenqingdan.svg -------------------------------------------------------------------------------- /src/icon/svg/icon-xinanjianpinggu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/icon/svg/icon-xinanjianpinggu.svg -------------------------------------------------------------------------------- /src/icon/svg/icon-yingjiangongcheng.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/icon/svg/icon-yingjiangongcheng.svg -------------------------------------------------------------------------------- /src/icon/svg/icon-yuanguanshenqingdan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/icon/svg/icon-yuanguanshenqingdan.svg -------------------------------------------------------------------------------- /src/icon/svg/icon-zhijufabao.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/icon/svg/icon-zhijufabao.svg -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/layouts/components/AliveTag/index.less: -------------------------------------------------------------------------------- 1 | @import url('@/styles/variable.less'); 2 | 3 | .alive-tag { 4 | padding: 12px; 5 | } 6 | -------------------------------------------------------------------------------- /src/layouts/components/AliveTag/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/layouts/components/AliveTag/index.tsx -------------------------------------------------------------------------------- /src/layouts/components/BasicBreadcrumb/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/layouts/components/BasicBreadcrumb/index.less -------------------------------------------------------------------------------- /src/layouts/components/BasicBreadcrumb/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/layouts/components/BasicBreadcrumb/index.tsx -------------------------------------------------------------------------------- /src/layouts/components/BasicHeaderMenu/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/layouts/components/BasicHeaderMenu/index.less -------------------------------------------------------------------------------- /src/layouts/components/BasicHeaderMenu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/layouts/components/BasicHeaderMenu/index.tsx -------------------------------------------------------------------------------- /src/layouts/components/BasicSider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/layouts/components/BasicSider/index.tsx -------------------------------------------------------------------------------- /src/layouts/components/DefaultSetting/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/layouts/components/DefaultSetting/index.tsx -------------------------------------------------------------------------------- /src/layouts/components/HeaderDropdown/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/layouts/components/HeaderDropdown/index.tsx -------------------------------------------------------------------------------- /src/layouts/components/LayoutEditor/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/layouts/components/LayoutEditor/index.less -------------------------------------------------------------------------------- /src/layouts/components/LayoutEditor/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/layouts/components/LayoutEditor/index.tsx -------------------------------------------------------------------------------- /src/layouts/components/Logo/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/layouts/components/Logo/index.less -------------------------------------------------------------------------------- /src/layouts/components/Logo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/layouts/components/Logo/index.tsx -------------------------------------------------------------------------------- /src/layouts/components/RightContent/AvatarDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/layouts/components/RightContent/AvatarDropdown.tsx -------------------------------------------------------------------------------- /src/layouts/components/RightContent/ToolIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/layouts/components/RightContent/ToolIcon.tsx -------------------------------------------------------------------------------- /src/layouts/components/RightContent/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/layouts/components/RightContent/index.tsx -------------------------------------------------------------------------------- /src/layouts/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/layouts/index.less -------------------------------------------------------------------------------- /src/layouts/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/layouts/index.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/analysis/components/IntroduceRow/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/pages/dashboard/analysis/components/IntroduceRow/index.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/analysis/components/NumberInfo/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/pages/dashboard/analysis/components/NumberInfo/index.less -------------------------------------------------------------------------------- /src/pages/dashboard/analysis/components/NumberInfo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/pages/dashboard/analysis/components/NumberInfo/index.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/analysis/components/ProportionSales/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/pages/dashboard/analysis/components/ProportionSales/index.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/analysis/components/SalesCard/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/pages/dashboard/analysis/components/SalesCard/index.less -------------------------------------------------------------------------------- /src/pages/dashboard/analysis/components/SalesCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/pages/dashboard/analysis/components/SalesCard/index.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/analysis/components/SalesHot/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/pages/dashboard/analysis/components/SalesHot/index.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/analysis/components/StatisticsCard/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/pages/dashboard/analysis/components/StatisticsCard/index.less -------------------------------------------------------------------------------- /src/pages/dashboard/analysis/components/StatisticsCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/pages/dashboard/analysis/components/StatisticsCard/index.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/analysis/components/TopSearch/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/pages/dashboard/analysis/components/TopSearch/index.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/analysis/components/Trend/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/pages/dashboard/analysis/components/Trend/index.less -------------------------------------------------------------------------------- /src/pages/dashboard/analysis/components/Trend/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/pages/dashboard/analysis/components/Trend/index.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/analysis/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/pages/dashboard/analysis/index.less -------------------------------------------------------------------------------- /src/pages/dashboard/analysis/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/pages/dashboard/analysis/index.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/analysis/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/pages/dashboard/analysis/utils/utils.ts -------------------------------------------------------------------------------- /src/pages/dashboard/embedded/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/pages/dashboard/embedded/index.tsx -------------------------------------------------------------------------------- /src/pages/dataScreen/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/pages/dataScreen/index.less -------------------------------------------------------------------------------- /src/pages/dataScreen/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/pages/dataScreen/index.tsx -------------------------------------------------------------------------------- /src/pages/error/403.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/pages/error/403.tsx -------------------------------------------------------------------------------- /src/pages/error/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/pages/error/404.tsx -------------------------------------------------------------------------------- /src/pages/error/500.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/pages/error/500.tsx -------------------------------------------------------------------------------- /src/pages/home/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/pages/home/index.less -------------------------------------------------------------------------------- /src/pages/home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/pages/home/index.tsx -------------------------------------------------------------------------------- /src/pages/iconDashboard/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/pages/iconDashboard/index.less -------------------------------------------------------------------------------- /src/pages/iconDashboard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/pages/iconDashboard/index.tsx -------------------------------------------------------------------------------- /src/pages/login/components/AccountForm/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/pages/login/components/AccountForm/index.less -------------------------------------------------------------------------------- /src/pages/login/components/AccountForm/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/pages/login/components/AccountForm/index.tsx -------------------------------------------------------------------------------- /src/pages/login/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/pages/login/index.less -------------------------------------------------------------------------------- /src/pages/login/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/pages/login/index.tsx -------------------------------------------------------------------------------- /src/pages/menu/menu1/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/pages/menu/menu1/index.tsx -------------------------------------------------------------------------------- /src/pages/menu/menu2/menu21/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/pages/menu/menu2/menu21/index.tsx -------------------------------------------------------------------------------- /src/pages/menu/menu2/menu22/menu221/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/pages/menu/menu2/menu22/menu221/index.tsx -------------------------------------------------------------------------------- /src/pages/menu/menu2/menu22/menu222/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/pages/menu/menu2/menu22/menu222/index.tsx -------------------------------------------------------------------------------- /src/pages/menu/menu2/menu23/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/pages/menu/menu2/menu23/index.tsx -------------------------------------------------------------------------------- /src/pages/menu/menu3/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/pages/menu/menu3/index.tsx -------------------------------------------------------------------------------- /src/pages/themeEditor/components/Overview/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/pages/themeEditor/components/Overview/index.tsx -------------------------------------------------------------------------------- /src/pages/themeEditor/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/pages/themeEditor/index.less -------------------------------------------------------------------------------- /src/pages/themeEditor/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/pages/themeEditor/index.tsx -------------------------------------------------------------------------------- /src/pages/threeVR/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/pages/threeVR/index.less -------------------------------------------------------------------------------- /src/pages/threeVR/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/pages/threeVR/index.tsx -------------------------------------------------------------------------------- /src/routers/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/routers/index.tsx -------------------------------------------------------------------------------- /src/routers/interface/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/routers/interface/index.d.ts -------------------------------------------------------------------------------- /src/routers/modules/dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/routers/modules/dashboard.tsx -------------------------------------------------------------------------------- /src/routers/modules/dataScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/routers/modules/dataScreen.tsx -------------------------------------------------------------------------------- /src/routers/modules/error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/routers/modules/error.tsx -------------------------------------------------------------------------------- /src/routers/modules/home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/routers/modules/home.tsx -------------------------------------------------------------------------------- /src/routers/modules/iconDashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/routers/modules/iconDashboard.tsx -------------------------------------------------------------------------------- /src/routers/modules/menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/routers/modules/menu.tsx -------------------------------------------------------------------------------- /src/routers/utils/authRouter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/routers/utils/authRouter.tsx -------------------------------------------------------------------------------- /src/routers/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/routers/utils/index.ts -------------------------------------------------------------------------------- /src/routers/utils/is/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/routers/utils/is/index.ts -------------------------------------------------------------------------------- /src/routers/utils/lazyLoad.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/routers/utils/lazyLoad.tsx -------------------------------------------------------------------------------- /src/routers/utils/useRouter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/routers/utils/useRouter.tsx -------------------------------------------------------------------------------- /src/store/breadcrumb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/store/breadcrumb.ts -------------------------------------------------------------------------------- /src/store/global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/store/global.ts -------------------------------------------------------------------------------- /src/store/menus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/store/menus.ts -------------------------------------------------------------------------------- /src/styles/clearfix.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/styles/clearfix.less -------------------------------------------------------------------------------- /src/styles/global.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/styles/global.less -------------------------------------------------------------------------------- /src/styles/size.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/styles/size.less -------------------------------------------------------------------------------- /src/styles/variable.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/styles/variable.less -------------------------------------------------------------------------------- /src/svg/icon-business-trip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/svg/icon-business-trip.svg -------------------------------------------------------------------------------- /src/typings/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/typings/global.d.ts -------------------------------------------------------------------------------- /src/typings/images.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/typings/images.d.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /src/utils/validate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/src/utils/validate.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigTig/react-webpack-ts/HEAD/tsconfig.json --------------------------------------------------------------------------------