├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .prettierignore ├── .prettierrc.js ├── LICENSE ├── README.md ├── config ├── config.ts ├── defaultSettings.ts ├── proxy.ts └── routes.ts ├── jsconfig.json ├── package.json ├── pnpm-lock.yaml ├── public ├── dog.jpg ├── favicon.ico ├── logo.svg ├── pro_icon.svg └── scripts │ └── loading.js ├── src ├── access.ts ├── app.tsx ├── assets │ └── logo.png ├── components │ ├── Footer │ │ └── index.tsx │ ├── HeaderDropdown │ │ └── index.tsx │ └── RightContent │ │ └── AvatarDropdown.tsx ├── constants │ └── index.ts ├── global.less ├── global.tsx ├── pages │ ├── 404.tsx │ ├── Admin.tsx │ ├── Admin │ │ └── User │ │ │ ├── components │ │ │ ├── CreateModal.tsx │ │ │ └── UpdateModal.tsx │ │ │ └── index.tsx │ ├── User │ │ ├── Login │ │ │ └── index.tsx │ │ ├── Register │ │ │ ├── index.less │ │ │ └── index.tsx │ │ └── components │ │ │ ├── UserAddProfile.less │ │ │ ├── UserAddProfile.tsx │ │ │ ├── UserProfile.less │ │ │ └── UserProfile.tsx │ └── Welcome.tsx ├── requestConfig.ts ├── service-worker.js ├── services │ ├── backend │ │ ├── chatController.ts │ │ ├── fileController.ts │ │ ├── index.ts │ │ ├── noticeMessageController.ts │ │ ├── typings.d.ts │ │ ├── userController.ts │ │ └── wxMpController.ts │ └── common │ │ └── typing.d.ts ├── typings.d.ts └── utils │ └── stringUtil.ts └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhccong/we-go-frontend/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | /lambda/ 2 | /scripts 3 | /config 4 | .history 5 | public 6 | dist 7 | .umi 8 | mock -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhccong/we-go-frontend/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhccong/we-go-frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhccong/we-go-frontend/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhccong/we-go-frontend/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhccong/we-go-frontend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhccong/we-go-frontend/HEAD/README.md -------------------------------------------------------------------------------- /config/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhccong/we-go-frontend/HEAD/config/config.ts -------------------------------------------------------------------------------- /config/defaultSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhccong/we-go-frontend/HEAD/config/defaultSettings.ts -------------------------------------------------------------------------------- /config/proxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhccong/we-go-frontend/HEAD/config/proxy.ts -------------------------------------------------------------------------------- /config/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhccong/we-go-frontend/HEAD/config/routes.ts -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhccong/we-go-frontend/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhccong/we-go-frontend/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhccong/we-go-frontend/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /public/dog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhccong/we-go-frontend/HEAD/public/dog.jpg -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhccong/we-go-frontend/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhccong/we-go-frontend/HEAD/public/logo.svg -------------------------------------------------------------------------------- /public/pro_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhccong/we-go-frontend/HEAD/public/pro_icon.svg -------------------------------------------------------------------------------- /public/scripts/loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhccong/we-go-frontend/HEAD/public/scripts/loading.js -------------------------------------------------------------------------------- /src/access.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhccong/we-go-frontend/HEAD/src/access.ts -------------------------------------------------------------------------------- /src/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhccong/we-go-frontend/HEAD/src/app.tsx -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhccong/we-go-frontend/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/components/Footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhccong/we-go-frontend/HEAD/src/components/Footer/index.tsx -------------------------------------------------------------------------------- /src/components/HeaderDropdown/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhccong/we-go-frontend/HEAD/src/components/HeaderDropdown/index.tsx -------------------------------------------------------------------------------- /src/components/RightContent/AvatarDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhccong/we-go-frontend/HEAD/src/components/RightContent/AvatarDropdown.tsx -------------------------------------------------------------------------------- /src/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhccong/we-go-frontend/HEAD/src/constants/index.ts -------------------------------------------------------------------------------- /src/global.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhccong/we-go-frontend/HEAD/src/global.less -------------------------------------------------------------------------------- /src/global.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhccong/we-go-frontend/HEAD/src/global.tsx -------------------------------------------------------------------------------- /src/pages/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhccong/we-go-frontend/HEAD/src/pages/404.tsx -------------------------------------------------------------------------------- /src/pages/Admin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhccong/we-go-frontend/HEAD/src/pages/Admin.tsx -------------------------------------------------------------------------------- /src/pages/Admin/User/components/CreateModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhccong/we-go-frontend/HEAD/src/pages/Admin/User/components/CreateModal.tsx -------------------------------------------------------------------------------- /src/pages/Admin/User/components/UpdateModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhccong/we-go-frontend/HEAD/src/pages/Admin/User/components/UpdateModal.tsx -------------------------------------------------------------------------------- /src/pages/Admin/User/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhccong/we-go-frontend/HEAD/src/pages/Admin/User/index.tsx -------------------------------------------------------------------------------- /src/pages/User/Login/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhccong/we-go-frontend/HEAD/src/pages/User/Login/index.tsx -------------------------------------------------------------------------------- /src/pages/User/Register/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhccong/we-go-frontend/HEAD/src/pages/User/Register/index.less -------------------------------------------------------------------------------- /src/pages/User/Register/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhccong/we-go-frontend/HEAD/src/pages/User/Register/index.tsx -------------------------------------------------------------------------------- /src/pages/User/components/UserAddProfile.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhccong/we-go-frontend/HEAD/src/pages/User/components/UserAddProfile.less -------------------------------------------------------------------------------- /src/pages/User/components/UserAddProfile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhccong/we-go-frontend/HEAD/src/pages/User/components/UserAddProfile.tsx -------------------------------------------------------------------------------- /src/pages/User/components/UserProfile.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhccong/we-go-frontend/HEAD/src/pages/User/components/UserProfile.less -------------------------------------------------------------------------------- /src/pages/User/components/UserProfile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhccong/we-go-frontend/HEAD/src/pages/User/components/UserProfile.tsx -------------------------------------------------------------------------------- /src/pages/Welcome.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhccong/we-go-frontend/HEAD/src/pages/Welcome.tsx -------------------------------------------------------------------------------- /src/requestConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhccong/we-go-frontend/HEAD/src/requestConfig.ts -------------------------------------------------------------------------------- /src/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhccong/we-go-frontend/HEAD/src/service-worker.js -------------------------------------------------------------------------------- /src/services/backend/chatController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhccong/we-go-frontend/HEAD/src/services/backend/chatController.ts -------------------------------------------------------------------------------- /src/services/backend/fileController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhccong/we-go-frontend/HEAD/src/services/backend/fileController.ts -------------------------------------------------------------------------------- /src/services/backend/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhccong/we-go-frontend/HEAD/src/services/backend/index.ts -------------------------------------------------------------------------------- /src/services/backend/noticeMessageController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhccong/we-go-frontend/HEAD/src/services/backend/noticeMessageController.ts -------------------------------------------------------------------------------- /src/services/backend/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhccong/we-go-frontend/HEAD/src/services/backend/typings.d.ts -------------------------------------------------------------------------------- /src/services/backend/userController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhccong/we-go-frontend/HEAD/src/services/backend/userController.ts -------------------------------------------------------------------------------- /src/services/backend/wxMpController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhccong/we-go-frontend/HEAD/src/services/backend/wxMpController.ts -------------------------------------------------------------------------------- /src/services/common/typing.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhccong/we-go-frontend/HEAD/src/services/common/typing.d.ts -------------------------------------------------------------------------------- /src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhccong/we-go-frontend/HEAD/src/typings.d.ts -------------------------------------------------------------------------------- /src/utils/stringUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhccong/we-go-frontend/HEAD/src/utils/stringUtil.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhccong/we-go-frontend/HEAD/tsconfig.json --------------------------------------------------------------------------------