├── .babelrc ├── .env ├── .eslintrc ├── .gitignore ├── .jsconfig.json ├── .prettierrc ├── .stylelintrc ├── .vscode └── tasks.json ├── LICENSE ├── README.md ├── package.json ├── postcss.config.js ├── src ├── assets │ └── favicon.ico ├── components │ ├── App.js │ ├── AsyncComponent.js │ ├── Common │ │ └── index.js │ ├── Hello │ │ └── Hello.js │ ├── Loading │ │ ├── Loading.js │ │ └── style.less │ ├── Login │ │ └── index.js │ └── Nav │ │ └── Nav.js ├── index.html ├── index.js ├── pages │ ├── Login │ │ └── index.js │ ├── Main │ │ ├── Antd │ │ │ └── index.js │ │ ├── Home │ │ │ └── index.js │ │ ├── User │ │ │ ├── Detail │ │ │ │ └── index.js │ │ │ ├── List │ │ │ │ ├── images │ │ │ │ │ └── show.png │ │ │ │ ├── index.js │ │ │ │ └── style.less │ │ │ └── index.js │ │ ├── index.js │ │ └── style.less │ └── NotFound │ │ └── NotFound.js ├── router │ └── router.js ├── services │ ├── index.js │ └── user.js ├── stores │ ├── appStore │ │ └── index.js │ ├── index.js │ └── loginStore │ │ └── index.js ├── themes │ └── base.less └── utils │ ├── index.js │ ├── request.js │ └── router.js ├── webpack ├── build.config.js ├── common.config.js ├── conf │ ├── dll.js │ └── index.js ├── dev.config.js ├── dll.config.js └── utils │ ├── HappyPacks.js │ ├── dll.js │ ├── index.js │ └── loaders.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxun33/react-mobx-antd-boilerplate/HEAD/.babelrc -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- 1 | NODE_PATH=src/ -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxun33/react-mobx-antd-boilerplate/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .DS_Store 3 | node_modules/ 4 | dist/ 5 | dll/ 6 | -------------------------------------------------------------------------------- /.jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxun33/react-mobx-antd-boilerplate/HEAD/.jsconfig.json -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxun33/react-mobx-antd-boilerplate/HEAD/.prettierrc -------------------------------------------------------------------------------- /.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxun33/react-mobx-antd-boilerplate/HEAD/.stylelintrc -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxun33/react-mobx-antd-boilerplate/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxun33/react-mobx-antd-boilerplate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxun33/react-mobx-antd-boilerplate/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxun33/react-mobx-antd-boilerplate/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxun33/react-mobx-antd-boilerplate/HEAD/postcss.config.js -------------------------------------------------------------------------------- /src/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxun33/react-mobx-antd-boilerplate/HEAD/src/assets/favicon.ico -------------------------------------------------------------------------------- /src/components/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxun33/react-mobx-antd-boilerplate/HEAD/src/components/App.js -------------------------------------------------------------------------------- /src/components/AsyncComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxun33/react-mobx-antd-boilerplate/HEAD/src/components/AsyncComponent.js -------------------------------------------------------------------------------- /src/components/Common/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxun33/react-mobx-antd-boilerplate/HEAD/src/components/Common/index.js -------------------------------------------------------------------------------- /src/components/Hello/Hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxun33/react-mobx-antd-boilerplate/HEAD/src/components/Hello/Hello.js -------------------------------------------------------------------------------- /src/components/Loading/Loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxun33/react-mobx-antd-boilerplate/HEAD/src/components/Loading/Loading.js -------------------------------------------------------------------------------- /src/components/Loading/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxun33/react-mobx-antd-boilerplate/HEAD/src/components/Loading/style.less -------------------------------------------------------------------------------- /src/components/Login/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxun33/react-mobx-antd-boilerplate/HEAD/src/components/Login/index.js -------------------------------------------------------------------------------- /src/components/Nav/Nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxun33/react-mobx-antd-boilerplate/HEAD/src/components/Nav/Nav.js -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxun33/react-mobx-antd-boilerplate/HEAD/src/index.html -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxun33/react-mobx-antd-boilerplate/HEAD/src/index.js -------------------------------------------------------------------------------- /src/pages/Login/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxun33/react-mobx-antd-boilerplate/HEAD/src/pages/Login/index.js -------------------------------------------------------------------------------- /src/pages/Main/Antd/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxun33/react-mobx-antd-boilerplate/HEAD/src/pages/Main/Antd/index.js -------------------------------------------------------------------------------- /src/pages/Main/Home/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxun33/react-mobx-antd-boilerplate/HEAD/src/pages/Main/Home/index.js -------------------------------------------------------------------------------- /src/pages/Main/User/Detail/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxun33/react-mobx-antd-boilerplate/HEAD/src/pages/Main/User/Detail/index.js -------------------------------------------------------------------------------- /src/pages/Main/User/List/images/show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxun33/react-mobx-antd-boilerplate/HEAD/src/pages/Main/User/List/images/show.png -------------------------------------------------------------------------------- /src/pages/Main/User/List/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxun33/react-mobx-antd-boilerplate/HEAD/src/pages/Main/User/List/index.js -------------------------------------------------------------------------------- /src/pages/Main/User/List/style.less: -------------------------------------------------------------------------------- 1 | .page-box { 2 | border: 1px solid red; 3 | } 4 | -------------------------------------------------------------------------------- /src/pages/Main/User/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxun33/react-mobx-antd-boilerplate/HEAD/src/pages/Main/User/index.js -------------------------------------------------------------------------------- /src/pages/Main/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxun33/react-mobx-antd-boilerplate/HEAD/src/pages/Main/index.js -------------------------------------------------------------------------------- /src/pages/Main/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxun33/react-mobx-antd-boilerplate/HEAD/src/pages/Main/style.less -------------------------------------------------------------------------------- /src/pages/NotFound/NotFound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxun33/react-mobx-antd-boilerplate/HEAD/src/pages/NotFound/NotFound.js -------------------------------------------------------------------------------- /src/router/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxun33/react-mobx-antd-boilerplate/HEAD/src/router/router.js -------------------------------------------------------------------------------- /src/services/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxun33/react-mobx-antd-boilerplate/HEAD/src/services/index.js -------------------------------------------------------------------------------- /src/services/user.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/stores/appStore/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxun33/react-mobx-antd-boilerplate/HEAD/src/stores/appStore/index.js -------------------------------------------------------------------------------- /src/stores/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxun33/react-mobx-antd-boilerplate/HEAD/src/stores/index.js -------------------------------------------------------------------------------- /src/stores/loginStore/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxun33/react-mobx-antd-boilerplate/HEAD/src/stores/loginStore/index.js -------------------------------------------------------------------------------- /src/themes/base.less: -------------------------------------------------------------------------------- 1 | @primary-color: #2d5da7; 2 | -------------------------------------------------------------------------------- /src/utils/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/utils/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxun33/react-mobx-antd-boilerplate/HEAD/src/utils/request.js -------------------------------------------------------------------------------- /src/utils/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxun33/react-mobx-antd-boilerplate/HEAD/src/utils/router.js -------------------------------------------------------------------------------- /webpack/build.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxun33/react-mobx-antd-boilerplate/HEAD/webpack/build.config.js -------------------------------------------------------------------------------- /webpack/common.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxun33/react-mobx-antd-boilerplate/HEAD/webpack/common.config.js -------------------------------------------------------------------------------- /webpack/conf/dll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxun33/react-mobx-antd-boilerplate/HEAD/webpack/conf/dll.js -------------------------------------------------------------------------------- /webpack/conf/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxun33/react-mobx-antd-boilerplate/HEAD/webpack/conf/index.js -------------------------------------------------------------------------------- /webpack/dev.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxun33/react-mobx-antd-boilerplate/HEAD/webpack/dev.config.js -------------------------------------------------------------------------------- /webpack/dll.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxun33/react-mobx-antd-boilerplate/HEAD/webpack/dll.config.js -------------------------------------------------------------------------------- /webpack/utils/HappyPacks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxun33/react-mobx-antd-boilerplate/HEAD/webpack/utils/HappyPacks.js -------------------------------------------------------------------------------- /webpack/utils/dll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxun33/react-mobx-antd-boilerplate/HEAD/webpack/utils/dll.js -------------------------------------------------------------------------------- /webpack/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxun33/react-mobx-antd-boilerplate/HEAD/webpack/utils/index.js -------------------------------------------------------------------------------- /webpack/utils/loaders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxun33/react-mobx-antd-boilerplate/HEAD/webpack/utils/loaders.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moxun33/react-mobx-antd-boilerplate/HEAD/yarn.lock --------------------------------------------------------------------------------