├── .gitignore ├── .idea ├── app-manager-system.iml ├── inspectionProfiles │ └── Project_Default.xml ├── misc.xml ├── modules.xml └── workspace.xml ├── LICENSE ├── README.md ├── config-overrides.js ├── package.json ├── public ├── favicon.ico ├── index.html └── manifest.json ├── screenshots ├── pic1.png ├── pic2.jpg ├── pic3.jpg ├── pic4.jpg ├── pic5.png └── pic6.jpg ├── src ├── App.js ├── App.test.js ├── components │ ├── ActionBar.js │ ├── AddProjectForm.js │ ├── CreateProjectButton.js │ ├── CustomToolTip.js │ ├── EditProjectForm.js │ ├── MenuNavigation.js │ └── TabContent.js ├── css │ ├── ActionBar.css │ ├── AppLogo.css │ └── Login.css ├── images │ ├── Android.png │ ├── icon.png │ ├── icon_project.png │ └── iphone.png ├── index.css ├── index.js ├── logo.svg ├── pages │ ├── AppDownloadPage.js │ ├── AppLoginStatisticsPage.js │ ├── AppLoginTablePage.js │ ├── AppPage.js │ ├── DataStatisticsPage.js │ ├── ErrorPage.js │ ├── LoginPage.js │ ├── ProjectListPage.js │ └── ReleaseVersionPage.js ├── registerServiceWorker.js └── utils │ ├── CryptionUtil.js │ ├── DateUtil.js │ ├── HttpUtil.js │ ├── NavRouter.js │ └── URL.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyz/AppManagerSystem_React/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/app-manager-system.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyz/AppManagerSystem_React/HEAD/.idea/app-manager-system.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyz/AppManagerSystem_React/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyz/AppManagerSystem_React/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyz/AppManagerSystem_React/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyz/AppManagerSystem_React/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyz/AppManagerSystem_React/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyz/AppManagerSystem_React/HEAD/README.md -------------------------------------------------------------------------------- /config-overrides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyz/AppManagerSystem_React/HEAD/config-overrides.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyz/AppManagerSystem_React/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyz/AppManagerSystem_React/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyz/AppManagerSystem_React/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyz/AppManagerSystem_React/HEAD/public/manifest.json -------------------------------------------------------------------------------- /screenshots/pic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyz/AppManagerSystem_React/HEAD/screenshots/pic1.png -------------------------------------------------------------------------------- /screenshots/pic2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyz/AppManagerSystem_React/HEAD/screenshots/pic2.jpg -------------------------------------------------------------------------------- /screenshots/pic3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyz/AppManagerSystem_React/HEAD/screenshots/pic3.jpg -------------------------------------------------------------------------------- /screenshots/pic4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyz/AppManagerSystem_React/HEAD/screenshots/pic4.jpg -------------------------------------------------------------------------------- /screenshots/pic5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyz/AppManagerSystem_React/HEAD/screenshots/pic5.png -------------------------------------------------------------------------------- /screenshots/pic6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyz/AppManagerSystem_React/HEAD/screenshots/pic6.jpg -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyz/AppManagerSystem_React/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyz/AppManagerSystem_React/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/components/ActionBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyz/AppManagerSystem_React/HEAD/src/components/ActionBar.js -------------------------------------------------------------------------------- /src/components/AddProjectForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyz/AppManagerSystem_React/HEAD/src/components/AddProjectForm.js -------------------------------------------------------------------------------- /src/components/CreateProjectButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyz/AppManagerSystem_React/HEAD/src/components/CreateProjectButton.js -------------------------------------------------------------------------------- /src/components/CustomToolTip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyz/AppManagerSystem_React/HEAD/src/components/CustomToolTip.js -------------------------------------------------------------------------------- /src/components/EditProjectForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyz/AppManagerSystem_React/HEAD/src/components/EditProjectForm.js -------------------------------------------------------------------------------- /src/components/MenuNavigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyz/AppManagerSystem_React/HEAD/src/components/MenuNavigation.js -------------------------------------------------------------------------------- /src/components/TabContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyz/AppManagerSystem_React/HEAD/src/components/TabContent.js -------------------------------------------------------------------------------- /src/css/ActionBar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyz/AppManagerSystem_React/HEAD/src/css/ActionBar.css -------------------------------------------------------------------------------- /src/css/AppLogo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyz/AppManagerSystem_React/HEAD/src/css/AppLogo.css -------------------------------------------------------------------------------- /src/css/Login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyz/AppManagerSystem_React/HEAD/src/css/Login.css -------------------------------------------------------------------------------- /src/images/Android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyz/AppManagerSystem_React/HEAD/src/images/Android.png -------------------------------------------------------------------------------- /src/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyz/AppManagerSystem_React/HEAD/src/images/icon.png -------------------------------------------------------------------------------- /src/images/icon_project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyz/AppManagerSystem_React/HEAD/src/images/icon_project.png -------------------------------------------------------------------------------- /src/images/iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyz/AppManagerSystem_React/HEAD/src/images/iphone.png -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyz/AppManagerSystem_React/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyz/AppManagerSystem_React/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyz/AppManagerSystem_React/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/pages/AppDownloadPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyz/AppManagerSystem_React/HEAD/src/pages/AppDownloadPage.js -------------------------------------------------------------------------------- /src/pages/AppLoginStatisticsPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyz/AppManagerSystem_React/HEAD/src/pages/AppLoginStatisticsPage.js -------------------------------------------------------------------------------- /src/pages/AppLoginTablePage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyz/AppManagerSystem_React/HEAD/src/pages/AppLoginTablePage.js -------------------------------------------------------------------------------- /src/pages/AppPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyz/AppManagerSystem_React/HEAD/src/pages/AppPage.js -------------------------------------------------------------------------------- /src/pages/DataStatisticsPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyz/AppManagerSystem_React/HEAD/src/pages/DataStatisticsPage.js -------------------------------------------------------------------------------- /src/pages/ErrorPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyz/AppManagerSystem_React/HEAD/src/pages/ErrorPage.js -------------------------------------------------------------------------------- /src/pages/LoginPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyz/AppManagerSystem_React/HEAD/src/pages/LoginPage.js -------------------------------------------------------------------------------- /src/pages/ProjectListPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyz/AppManagerSystem_React/HEAD/src/pages/ProjectListPage.js -------------------------------------------------------------------------------- /src/pages/ReleaseVersionPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyz/AppManagerSystem_React/HEAD/src/pages/ReleaseVersionPage.js -------------------------------------------------------------------------------- /src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyz/AppManagerSystem_React/HEAD/src/registerServiceWorker.js -------------------------------------------------------------------------------- /src/utils/CryptionUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyz/AppManagerSystem_React/HEAD/src/utils/CryptionUtil.js -------------------------------------------------------------------------------- /src/utils/DateUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyz/AppManagerSystem_React/HEAD/src/utils/DateUtil.js -------------------------------------------------------------------------------- /src/utils/HttpUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyz/AppManagerSystem_React/HEAD/src/utils/HttpUtil.js -------------------------------------------------------------------------------- /src/utils/NavRouter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyz/AppManagerSystem_React/HEAD/src/utils/NavRouter.js -------------------------------------------------------------------------------- /src/utils/URL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyz/AppManagerSystem_React/HEAD/src/utils/URL.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/panyz/AppManagerSystem_React/HEAD/yarn.lock --------------------------------------------------------------------------------