# antd_pro_test **Repository Path**: nonespace/antd_pro_test ## Basic Information - **Project Name**: antd_pro_test - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-04-18 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Ant Design Pro This project is initialized with [Ant Design Pro](https://pro.ant.design). Follow is the quick guide for how to use. ## Environment Prepare Install `node_modules`: ```bash npm install ``` or ```bash yarn ``` ## Provided Scripts Ant Design Pro provides some useful script to help you quick start and build with web project, code style check and test. Scripts provided in `package.json`. It's safe to modify or add additional script: ### Start project ```bash npm start ``` ### Build project ```bash npm run build ``` ### Check code style ```bash npm run lint ``` You can also use script to auto fix some lint error: ```bash npm run lint:fix ``` ### Test code ```bash npm test ``` ## More You can view full document on our [official website](https://pro.ant.design). And welcome any feedback in our [github](https://github.com/ant-design/ant-design-pro). ``` |____global.less |____locales | |____en-US.js | |____zh-CN | | |____globalHeader.js | | |____component.js | | |____menu.js //这个文件 | | |____settingDrawer.js | | |____settings.js | | |____pwa.js | |____zh-CN.js |____utils | |____Authorized.js | |____utils.less | |____request.js | |____utils.test.js | |____utils.js | |____authority.js |____models | |____setting.js | |____user.js | |____global.js | |____login.js |____components | |____Authorized | | |____AuthorizedRoute.jsx | | |____CheckPermissions.jsx | | |____renderAuthorize.js | | |____PromiseRender.jsx | | |____Authorized.jsx | | |____index.jsx | | |____Secured.jsx | |____SelectLang | | |____index.less | | |____index.jsx | |____PageLoading | | |____index.jsx | |____NoticeIcon | | |____index.less | | |____NoticeList.jsx | | |____index.jsx | | |____NoticeList.less | |____HeaderSearch | | |____index.less | | |____index.jsx | |____GlobalHeader | | |____NoticeIconView.jsx | | |____index.less | | |____RightContent.jsx | | |____AvatarDropdown.jsx | |____HeaderDropdown | | |____index.less | | |____index.jsx |____global.jsx |____layouts | |____SecurityLayout.jsx | |____BlankLayout.jsx | |____BasicLayout.jsx //这个目录 | |____UserLayout.jsx | |____UserLayout.less |____manifest.json |____service-worker.js |____e2e | |______mocks__ | | |____antd-pro-merge-less.js | |____baseLayout.e2e.js |____assets | |____logo.svg |____pages | |____document.ejs | |____Admin.jsx | |____Welcome.jsx | |____user | | |____login | | | |____components | | | | |____Login | | | | | |____LoginContext.jsx | | | | | |____LoginSubmit.jsx | | | | | |____index.less | | | | | |____index.jsx | | | | | |____LoginItem.jsx | | | | | |____map.jsx | | | | | |____LoginTab.jsx | | | |____index.jsx | | | |____style.less | |____Authorized.jsx | |____404.jsx | |____ListTableList | | |____service.js | | |____components | | | |____UpdateForm.jsx | | | |____CreateForm.jsx | | |____index.jsx | |____Welcome.less |____services | |____user.js | |____login.js ```