├── .gitignore ├── README.md ├── babel.config.js ├── package.json ├── public ├── favicon.ico ├── img │ ├── default │ │ ├── defaultHead.png │ │ └── empty.png │ └── log │ │ └── msgLog.png ├── index.html ├── temp │ └── noData.png └── util.css ├── src ├── App.vue ├── assets │ ├── ajax-loader.gif │ ├── font │ │ └── iconfont │ │ │ ├── demo.css │ │ │ ├── demo_index.html │ │ │ ├── iconfont.css │ │ │ ├── iconfont.js │ │ │ ├── iconfont.json │ │ │ ├── iconfont.ttf │ │ │ ├── iconfont.woff │ │ │ └── iconfont.woff2 │ ├── icon_fail.png │ ├── icon_success.png │ ├── img │ │ ├── default │ │ │ ├── bg.jpg │ │ │ ├── captcha.png │ │ │ ├── defaultHead.png │ │ │ ├── empty.png │ │ │ ├── greenCode.png │ │ │ ├── logo.png │ │ │ ├── password.png │ │ │ └── username.png │ │ ├── hb │ │ │ ├── hb1.jpg │ │ │ └── hb2.jpg │ │ └── log │ │ │ └── msgLog.png │ └── logo.png ├── components │ ├── auth │ │ ├── center │ │ │ ├── Center.vue │ │ │ ├── QrCode │ │ │ │ └── QrCode.vue │ │ │ ├── info │ │ │ │ └── UserInfo.vue │ │ │ ├── settings │ │ │ │ └── Setting.vue │ │ │ └── update │ │ │ │ ├── UpdatePassword.vue │ │ │ │ └── UpdateUserInfo.vue │ │ ├── community │ │ │ ├── Community.vue │ │ │ ├── add │ │ │ │ ├── Add.vue │ │ │ │ ├── AddBuilding.vue │ │ │ │ ├── AddHousehold.vue │ │ │ │ ├── AddLayer.vue │ │ │ │ ├── AddPeriod.vue │ │ │ │ └── AddUnit.vue │ │ │ └── list │ │ │ │ ├── CommunityBuildingInfo.vue │ │ │ │ └── CommunityInfo.vue │ │ ├── communityException │ │ │ ├── add │ │ │ │ └── index.vue │ │ │ └── manage │ │ │ │ ├── End.vue │ │ │ │ ├── ExceptionGroup.vue │ │ │ │ ├── NotStarted.vue │ │ │ │ ├── OnGoing.vue │ │ │ │ └── index.vue │ │ ├── home │ │ │ └── Home.vue │ │ ├── householdExamination │ │ │ ├── UserInHousehold.vue │ │ │ └── index.vue │ │ ├── index.vue │ │ ├── message │ │ │ ├── index.vue │ │ │ └── messageList │ │ │ │ ├── ListGroup.vue │ │ │ │ ├── MessageItem.vue │ │ │ │ └── index.vue │ │ ├── posters │ │ │ └── index.vue │ │ ├── record │ │ │ ├── RecordGroup.vue │ │ │ ├── RecordItem.vue │ │ │ └── index.vue │ │ ├── registration │ │ │ ├── InAndOut.vue │ │ │ └── TemperatureRegistration.vue │ │ ├── role │ │ │ ├── AdminUserInfo.vue │ │ │ ├── ChangeUserRole.vue │ │ │ ├── RoleManager.vue │ │ │ ├── RoleUserManager.vue │ │ │ └── index.vue │ │ └── user │ │ │ ├── AdminUserInfo.vue │ │ │ ├── CommunityUserInfo.vue │ │ │ ├── OtherUserInfo.vue │ │ │ ├── UserGroup.vue │ │ │ └── index.vue │ ├── commons │ │ ├── NavTopBar.vue │ │ ├── SildToUnLock.vue │ │ ├── address │ │ │ └── index.vue │ │ ├── role │ │ │ ├── UpdateRoleBox.vue │ │ │ └── index.vue │ │ └── user │ │ │ └── SelectUser.vue │ ├── footer │ │ └── Foter.vue │ ├── login │ │ ├── Login.vue │ │ ├── LoginTable.vue │ │ └── UserLogin.vue │ ├── massage │ │ └── Wxs.vue │ └── register │ │ ├── Register.vue │ │ └── RegisterTable.vue ├── main.js ├── mixin.js ├── router │ └── index.js └── utils │ ├── api.js │ ├── appback.js │ ├── request.js │ ├── storage.js │ └── wxs.js ├── vue.config.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/babel.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/img/default/defaultHead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/public/img/default/defaultHead.png -------------------------------------------------------------------------------- /public/img/default/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/public/img/default/empty.png -------------------------------------------------------------------------------- /public/img/log/msgLog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/public/img/log/msgLog.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/public/index.html -------------------------------------------------------------------------------- /public/temp/noData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/public/temp/noData.png -------------------------------------------------------------------------------- /public/util.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/public/util.css -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/assets/ajax-loader.gif -------------------------------------------------------------------------------- /src/assets/font/iconfont/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/assets/font/iconfont/demo.css -------------------------------------------------------------------------------- /src/assets/font/iconfont/demo_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/assets/font/iconfont/demo_index.html -------------------------------------------------------------------------------- /src/assets/font/iconfont/iconfont.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/assets/font/iconfont/iconfont.css -------------------------------------------------------------------------------- /src/assets/font/iconfont/iconfont.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/assets/font/iconfont/iconfont.js -------------------------------------------------------------------------------- /src/assets/font/iconfont/iconfont.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/assets/font/iconfont/iconfont.json -------------------------------------------------------------------------------- /src/assets/font/iconfont/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/assets/font/iconfont/iconfont.ttf -------------------------------------------------------------------------------- /src/assets/font/iconfont/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/assets/font/iconfont/iconfont.woff -------------------------------------------------------------------------------- /src/assets/font/iconfont/iconfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/assets/font/iconfont/iconfont.woff2 -------------------------------------------------------------------------------- /src/assets/icon_fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/assets/icon_fail.png -------------------------------------------------------------------------------- /src/assets/icon_success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/assets/icon_success.png -------------------------------------------------------------------------------- /src/assets/img/default/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/assets/img/default/bg.jpg -------------------------------------------------------------------------------- /src/assets/img/default/captcha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/assets/img/default/captcha.png -------------------------------------------------------------------------------- /src/assets/img/default/defaultHead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/assets/img/default/defaultHead.png -------------------------------------------------------------------------------- /src/assets/img/default/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/assets/img/default/empty.png -------------------------------------------------------------------------------- /src/assets/img/default/greenCode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/assets/img/default/greenCode.png -------------------------------------------------------------------------------- /src/assets/img/default/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/assets/img/default/logo.png -------------------------------------------------------------------------------- /src/assets/img/default/password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/assets/img/default/password.png -------------------------------------------------------------------------------- /src/assets/img/default/username.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/assets/img/default/username.png -------------------------------------------------------------------------------- /src/assets/img/hb/hb1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/assets/img/hb/hb1.jpg -------------------------------------------------------------------------------- /src/assets/img/hb/hb2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/assets/img/hb/hb2.jpg -------------------------------------------------------------------------------- /src/assets/img/log/msgLog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/assets/img/log/msgLog.png -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/components/auth/center/Center.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/components/auth/center/Center.vue -------------------------------------------------------------------------------- /src/components/auth/center/QrCode/QrCode.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/components/auth/center/QrCode/QrCode.vue -------------------------------------------------------------------------------- /src/components/auth/center/info/UserInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/components/auth/center/info/UserInfo.vue -------------------------------------------------------------------------------- /src/components/auth/center/settings/Setting.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/components/auth/center/settings/Setting.vue -------------------------------------------------------------------------------- /src/components/auth/center/update/UpdatePassword.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/components/auth/center/update/UpdatePassword.vue -------------------------------------------------------------------------------- /src/components/auth/center/update/UpdateUserInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/components/auth/center/update/UpdateUserInfo.vue -------------------------------------------------------------------------------- /src/components/auth/community/Community.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/components/auth/community/Community.vue -------------------------------------------------------------------------------- /src/components/auth/community/add/Add.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/components/auth/community/add/Add.vue -------------------------------------------------------------------------------- /src/components/auth/community/add/AddBuilding.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/components/auth/community/add/AddBuilding.vue -------------------------------------------------------------------------------- /src/components/auth/community/add/AddHousehold.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/components/auth/community/add/AddHousehold.vue -------------------------------------------------------------------------------- /src/components/auth/community/add/AddLayer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/components/auth/community/add/AddLayer.vue -------------------------------------------------------------------------------- /src/components/auth/community/add/AddPeriod.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/components/auth/community/add/AddPeriod.vue -------------------------------------------------------------------------------- /src/components/auth/community/add/AddUnit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/components/auth/community/add/AddUnit.vue -------------------------------------------------------------------------------- /src/components/auth/community/list/CommunityBuildingInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/components/auth/community/list/CommunityBuildingInfo.vue -------------------------------------------------------------------------------- /src/components/auth/community/list/CommunityInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/components/auth/community/list/CommunityInfo.vue -------------------------------------------------------------------------------- /src/components/auth/communityException/add/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/components/auth/communityException/add/index.vue -------------------------------------------------------------------------------- /src/components/auth/communityException/manage/End.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/components/auth/communityException/manage/End.vue -------------------------------------------------------------------------------- /src/components/auth/communityException/manage/ExceptionGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/components/auth/communityException/manage/ExceptionGroup.vue -------------------------------------------------------------------------------- /src/components/auth/communityException/manage/NotStarted.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/components/auth/communityException/manage/NotStarted.vue -------------------------------------------------------------------------------- /src/components/auth/communityException/manage/OnGoing.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/components/auth/communityException/manage/OnGoing.vue -------------------------------------------------------------------------------- /src/components/auth/communityException/manage/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/components/auth/communityException/manage/index.vue -------------------------------------------------------------------------------- /src/components/auth/home/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/components/auth/home/Home.vue -------------------------------------------------------------------------------- /src/components/auth/householdExamination/UserInHousehold.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/components/auth/householdExamination/UserInHousehold.vue -------------------------------------------------------------------------------- /src/components/auth/householdExamination/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/components/auth/householdExamination/index.vue -------------------------------------------------------------------------------- /src/components/auth/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/components/auth/index.vue -------------------------------------------------------------------------------- /src/components/auth/message/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/components/auth/message/index.vue -------------------------------------------------------------------------------- /src/components/auth/message/messageList/ListGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/components/auth/message/messageList/ListGroup.vue -------------------------------------------------------------------------------- /src/components/auth/message/messageList/MessageItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/components/auth/message/messageList/MessageItem.vue -------------------------------------------------------------------------------- /src/components/auth/message/messageList/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/components/auth/message/messageList/index.vue -------------------------------------------------------------------------------- /src/components/auth/posters/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/components/auth/posters/index.vue -------------------------------------------------------------------------------- /src/components/auth/record/RecordGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/components/auth/record/RecordGroup.vue -------------------------------------------------------------------------------- /src/components/auth/record/RecordItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/components/auth/record/RecordItem.vue -------------------------------------------------------------------------------- /src/components/auth/record/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/components/auth/record/index.vue -------------------------------------------------------------------------------- /src/components/auth/registration/InAndOut.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/components/auth/registration/InAndOut.vue -------------------------------------------------------------------------------- /src/components/auth/registration/TemperatureRegistration.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/components/auth/registration/TemperatureRegistration.vue -------------------------------------------------------------------------------- /src/components/auth/role/AdminUserInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/components/auth/role/AdminUserInfo.vue -------------------------------------------------------------------------------- /src/components/auth/role/ChangeUserRole.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/components/auth/role/ChangeUserRole.vue -------------------------------------------------------------------------------- /src/components/auth/role/RoleManager.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/components/auth/role/RoleManager.vue -------------------------------------------------------------------------------- /src/components/auth/role/RoleUserManager.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/components/auth/role/RoleUserManager.vue -------------------------------------------------------------------------------- /src/components/auth/role/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/components/auth/role/index.vue -------------------------------------------------------------------------------- /src/components/auth/user/AdminUserInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/components/auth/user/AdminUserInfo.vue -------------------------------------------------------------------------------- /src/components/auth/user/CommunityUserInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/components/auth/user/CommunityUserInfo.vue -------------------------------------------------------------------------------- /src/components/auth/user/OtherUserInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/components/auth/user/OtherUserInfo.vue -------------------------------------------------------------------------------- /src/components/auth/user/UserGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/components/auth/user/UserGroup.vue -------------------------------------------------------------------------------- /src/components/auth/user/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/components/auth/user/index.vue -------------------------------------------------------------------------------- /src/components/commons/NavTopBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/components/commons/NavTopBar.vue -------------------------------------------------------------------------------- /src/components/commons/SildToUnLock.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/components/commons/SildToUnLock.vue -------------------------------------------------------------------------------- /src/components/commons/address/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/components/commons/address/index.vue -------------------------------------------------------------------------------- /src/components/commons/role/UpdateRoleBox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/components/commons/role/UpdateRoleBox.vue -------------------------------------------------------------------------------- /src/components/commons/role/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/components/commons/role/index.vue -------------------------------------------------------------------------------- /src/components/commons/user/SelectUser.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/components/commons/user/SelectUser.vue -------------------------------------------------------------------------------- /src/components/footer/Foter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/components/footer/Foter.vue -------------------------------------------------------------------------------- /src/components/login/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/components/login/Login.vue -------------------------------------------------------------------------------- /src/components/login/LoginTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/components/login/LoginTable.vue -------------------------------------------------------------------------------- /src/components/login/UserLogin.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/components/login/UserLogin.vue -------------------------------------------------------------------------------- /src/components/massage/Wxs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/components/massage/Wxs.vue -------------------------------------------------------------------------------- /src/components/register/Register.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/components/register/Register.vue -------------------------------------------------------------------------------- /src/components/register/RegisterTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/components/register/RegisterTable.vue -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/main.js -------------------------------------------------------------------------------- /src/mixin.js: -------------------------------------------------------------------------------- 1 | export const LReq = { 2 | 3 | } -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/router/index.js -------------------------------------------------------------------------------- /src/utils/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/utils/api.js -------------------------------------------------------------------------------- /src/utils/appback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/utils/appback.js -------------------------------------------------------------------------------- /src/utils/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/utils/request.js -------------------------------------------------------------------------------- /src/utils/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/utils/storage.js -------------------------------------------------------------------------------- /src/utils/wxs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/src/utils/wxs.js -------------------------------------------------------------------------------- /vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/vue.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvyuanx/CommunitySystem-web/HEAD/yarn.lock --------------------------------------------------------------------------------