├── .gitignore ├── LICENSE ├── README.md ├── config ├── env.js ├── getHttpsConfig.js ├── jest │ ├── babelTransform.js │ ├── cssTransform.js │ └── fileTransform.js ├── modules.js ├── paths.js ├── webpack.config.js ├── webpack │ └── persistentCache │ │ └── createEnvironmentHash.js └── webpackDevServer.config.js ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── scripts ├── build.js ├── start.js └── test.js ├── src ├── App.css ├── App.jsx ├── assets │ ├── icon │ │ ├── iconfont.css │ │ └── iconfont.ttf │ └── img │ │ ├── 404.png │ │ ├── Vue.png │ │ ├── alipay.png │ │ ├── angular.png │ │ ├── antd.png │ │ ├── avatar.png │ │ ├── react.png │ │ └── ui.png ├── components │ ├── AuthComponent │ │ └── index.jsx │ ├── Breadcrumb │ │ └── index.jsx │ ├── Content │ │ ├── index.jsx │ │ └── index.less │ ├── Footer │ │ ├── index.jsx │ │ └── index.less │ ├── Header │ │ ├── index.jsx │ │ └── index.less │ ├── HeaderTools │ │ └── index.jsx │ ├── Layout │ │ ├── index.jsx │ │ └── index.less │ ├── Lazyload │ │ ├── index.jsx │ │ └── index.less │ ├── LineChart │ │ └── index.jsx │ ├── RoleComponent │ │ └── index.jsx │ └── Sider │ │ ├── index.jsx │ │ └── index.less ├── index.css ├── index.js ├── pages │ ├── 404 │ │ ├── index.jsx │ │ └── index.less │ ├── Common │ │ ├── components │ │ │ ├── Form │ │ │ │ └── index.jsx │ │ │ └── Table │ │ │ │ ├── index.jsx │ │ │ │ └── index.less │ │ └── index.jsx │ ├── Dashboard │ │ ├── components │ │ │ ├── Analysis │ │ │ │ └── index.jsx │ │ │ └── WorkPlatform │ │ │ │ ├── index.jsx │ │ │ │ └── index.less │ │ └── index.jsx │ ├── Home │ │ ├── components │ │ │ └── UserCard │ │ │ │ ├── index.jsx │ │ │ │ └── index.less │ │ ├── index.jsx │ │ └── index.less │ ├── Login │ │ ├── index.jsx │ │ └── index.less │ ├── NestedRoute │ │ ├── components │ │ │ ├── FirstRoute │ │ │ │ └── index.jsx │ │ │ └── SecondRoute │ │ │ │ ├── childRoute.jsx │ │ │ │ └── index.jsx │ │ └── index.jsx │ └── theme.less ├── routes.js ├── service │ └── user │ │ └── user.js ├── setupProxy.js ├── store │ ├── index.js │ └── user.store.js └── utils │ ├── request.js │ └── session.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/README.md -------------------------------------------------------------------------------- /config/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/config/env.js -------------------------------------------------------------------------------- /config/getHttpsConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/config/getHttpsConfig.js -------------------------------------------------------------------------------- /config/jest/babelTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/config/jest/babelTransform.js -------------------------------------------------------------------------------- /config/jest/cssTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/config/jest/cssTransform.js -------------------------------------------------------------------------------- /config/jest/fileTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/config/jest/fileTransform.js -------------------------------------------------------------------------------- /config/modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/config/modules.js -------------------------------------------------------------------------------- /config/paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/config/paths.js -------------------------------------------------------------------------------- /config/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/config/webpack.config.js -------------------------------------------------------------------------------- /config/webpack/persistentCache/createEnvironmentHash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/config/webpack/persistentCache/createEnvironmentHash.js -------------------------------------------------------------------------------- /config/webpackDevServer.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/config/webpackDevServer.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/public/robots.txt -------------------------------------------------------------------------------- /scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/scripts/build.js -------------------------------------------------------------------------------- /scripts/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/scripts/start.js -------------------------------------------------------------------------------- /scripts/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/scripts/test.js -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/assets/icon/iconfont.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/src/assets/icon/iconfont.css -------------------------------------------------------------------------------- /src/assets/icon/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/src/assets/icon/iconfont.ttf -------------------------------------------------------------------------------- /src/assets/img/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/src/assets/img/404.png -------------------------------------------------------------------------------- /src/assets/img/Vue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/src/assets/img/Vue.png -------------------------------------------------------------------------------- /src/assets/img/alipay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/src/assets/img/alipay.png -------------------------------------------------------------------------------- /src/assets/img/angular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/src/assets/img/angular.png -------------------------------------------------------------------------------- /src/assets/img/antd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/src/assets/img/antd.png -------------------------------------------------------------------------------- /src/assets/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/src/assets/img/avatar.png -------------------------------------------------------------------------------- /src/assets/img/react.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/src/assets/img/react.png -------------------------------------------------------------------------------- /src/assets/img/ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/src/assets/img/ui.png -------------------------------------------------------------------------------- /src/components/AuthComponent/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/src/components/AuthComponent/index.jsx -------------------------------------------------------------------------------- /src/components/Breadcrumb/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/src/components/Breadcrumb/index.jsx -------------------------------------------------------------------------------- /src/components/Content/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/src/components/Content/index.jsx -------------------------------------------------------------------------------- /src/components/Content/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/src/components/Content/index.less -------------------------------------------------------------------------------- /src/components/Footer/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/src/components/Footer/index.jsx -------------------------------------------------------------------------------- /src/components/Footer/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/src/components/Footer/index.less -------------------------------------------------------------------------------- /src/components/Header/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/src/components/Header/index.jsx -------------------------------------------------------------------------------- /src/components/Header/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/src/components/Header/index.less -------------------------------------------------------------------------------- /src/components/HeaderTools/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/src/components/HeaderTools/index.jsx -------------------------------------------------------------------------------- /src/components/Layout/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/src/components/Layout/index.jsx -------------------------------------------------------------------------------- /src/components/Layout/index.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/Lazyload/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/src/components/Lazyload/index.jsx -------------------------------------------------------------------------------- /src/components/Lazyload/index.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/LineChart/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/src/components/LineChart/index.jsx -------------------------------------------------------------------------------- /src/components/RoleComponent/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/src/components/RoleComponent/index.jsx -------------------------------------------------------------------------------- /src/components/Sider/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/src/components/Sider/index.jsx -------------------------------------------------------------------------------- /src/components/Sider/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/src/components/Sider/index.less -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/src/index.js -------------------------------------------------------------------------------- /src/pages/404/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/src/pages/404/index.jsx -------------------------------------------------------------------------------- /src/pages/404/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/src/pages/404/index.less -------------------------------------------------------------------------------- /src/pages/Common/components/Form/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/src/pages/Common/components/Form/index.jsx -------------------------------------------------------------------------------- /src/pages/Common/components/Table/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/src/pages/Common/components/Table/index.jsx -------------------------------------------------------------------------------- /src/pages/Common/components/Table/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/src/pages/Common/components/Table/index.less -------------------------------------------------------------------------------- /src/pages/Common/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/src/pages/Common/index.jsx -------------------------------------------------------------------------------- /src/pages/Dashboard/components/Analysis/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/src/pages/Dashboard/components/Analysis/index.jsx -------------------------------------------------------------------------------- /src/pages/Dashboard/components/WorkPlatform/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/src/pages/Dashboard/components/WorkPlatform/index.jsx -------------------------------------------------------------------------------- /src/pages/Dashboard/components/WorkPlatform/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/src/pages/Dashboard/components/WorkPlatform/index.less -------------------------------------------------------------------------------- /src/pages/Dashboard/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/src/pages/Dashboard/index.jsx -------------------------------------------------------------------------------- /src/pages/Home/components/UserCard/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/src/pages/Home/components/UserCard/index.jsx -------------------------------------------------------------------------------- /src/pages/Home/components/UserCard/index.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pages/Home/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/src/pages/Home/index.jsx -------------------------------------------------------------------------------- /src/pages/Home/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/src/pages/Home/index.less -------------------------------------------------------------------------------- /src/pages/Login/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/src/pages/Login/index.jsx -------------------------------------------------------------------------------- /src/pages/Login/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/src/pages/Login/index.less -------------------------------------------------------------------------------- /src/pages/NestedRoute/components/FirstRoute/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/src/pages/NestedRoute/components/FirstRoute/index.jsx -------------------------------------------------------------------------------- /src/pages/NestedRoute/components/SecondRoute/childRoute.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/src/pages/NestedRoute/components/SecondRoute/childRoute.jsx -------------------------------------------------------------------------------- /src/pages/NestedRoute/components/SecondRoute/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/src/pages/NestedRoute/components/SecondRoute/index.jsx -------------------------------------------------------------------------------- /src/pages/NestedRoute/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/src/pages/NestedRoute/index.jsx -------------------------------------------------------------------------------- /src/pages/theme.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/src/pages/theme.less -------------------------------------------------------------------------------- /src/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/src/routes.js -------------------------------------------------------------------------------- /src/service/user/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/src/service/user/user.js -------------------------------------------------------------------------------- /src/setupProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/src/setupProxy.js -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/src/store/index.js -------------------------------------------------------------------------------- /src/store/user.store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/src/store/user.store.js -------------------------------------------------------------------------------- /src/utils/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/src/utils/request.js -------------------------------------------------------------------------------- /src/utils/session.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/src/utils/session.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyFish/react-admin-template-pro/HEAD/yarn.lock --------------------------------------------------------------------------------