├── .eslintrc.js ├── .gitignore ├── README.md ├── babel.config.js ├── package.json ├── public ├── background.js ├── favicon.ico └── index.html ├── src ├── api.js ├── components │ ├── HelloWorld.vue │ ├── activityComp │ │ ├── ActivityDetail.vue │ │ └── NewActivity.vue │ ├── clubComp │ │ ├── ClubPage.vue │ │ ├── ExitClub.vue │ │ ├── JoinClub.vue │ │ ├── MessageDetail.vue │ │ ├── NewClub.vue │ │ ├── SendMessage.vue │ │ └── UpdateClubPic.vue │ ├── federationComp │ │ ├── ClubManager.vue │ │ ├── NewActivityApply.vue │ │ ├── NewClubApply.vue │ │ └── index.js │ ├── general │ │ └── GoBack.vue │ └── userComp │ │ └── UserSetting.vue ├── config.js ├── images │ ├── LoginBackground.jpg │ ├── avatar.png │ └── clubImages │ │ ├── 1.jpeg │ │ ├── 2.jpeg │ │ ├── 3.jpeg │ │ ├── 4.jpeg │ │ ├── 5.jpeg │ │ ├── 6.jpeg │ │ ├── 7.jpeg │ │ └── index.js ├── main.js ├── mixin.js ├── router.js ├── session.js └── views │ ├── Activity.vue │ ├── ActivityList.vue │ ├── Affair.vue │ ├── App.vue │ ├── ClubList.vue │ ├── Federation.vue │ ├── Finance.vue │ ├── MainPage.vue │ ├── UserCenter.vue │ └── login │ ├── Login.vue │ └── Sign.vue ├── vue.config.js └── yarn.lock /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoPGoldy/student-club-management-system/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoPGoldy/student-club-management-system/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoPGoldy/student-club-management-system/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoPGoldy/student-club-management-system/HEAD/babel.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoPGoldy/student-club-management-system/HEAD/package.json -------------------------------------------------------------------------------- /public/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoPGoldy/student-club-management-system/HEAD/public/background.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoPGoldy/student-club-management-system/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoPGoldy/student-club-management-system/HEAD/public/index.html -------------------------------------------------------------------------------- /src/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoPGoldy/student-club-management-system/HEAD/src/api.js -------------------------------------------------------------------------------- /src/components/HelloWorld.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoPGoldy/student-club-management-system/HEAD/src/components/HelloWorld.vue -------------------------------------------------------------------------------- /src/components/activityComp/ActivityDetail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoPGoldy/student-club-management-system/HEAD/src/components/activityComp/ActivityDetail.vue -------------------------------------------------------------------------------- /src/components/activityComp/NewActivity.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoPGoldy/student-club-management-system/HEAD/src/components/activityComp/NewActivity.vue -------------------------------------------------------------------------------- /src/components/clubComp/ClubPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoPGoldy/student-club-management-system/HEAD/src/components/clubComp/ClubPage.vue -------------------------------------------------------------------------------- /src/components/clubComp/ExitClub.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoPGoldy/student-club-management-system/HEAD/src/components/clubComp/ExitClub.vue -------------------------------------------------------------------------------- /src/components/clubComp/JoinClub.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoPGoldy/student-club-management-system/HEAD/src/components/clubComp/JoinClub.vue -------------------------------------------------------------------------------- /src/components/clubComp/MessageDetail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoPGoldy/student-club-management-system/HEAD/src/components/clubComp/MessageDetail.vue -------------------------------------------------------------------------------- /src/components/clubComp/NewClub.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoPGoldy/student-club-management-system/HEAD/src/components/clubComp/NewClub.vue -------------------------------------------------------------------------------- /src/components/clubComp/SendMessage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoPGoldy/student-club-management-system/HEAD/src/components/clubComp/SendMessage.vue -------------------------------------------------------------------------------- /src/components/clubComp/UpdateClubPic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoPGoldy/student-club-management-system/HEAD/src/components/clubComp/UpdateClubPic.vue -------------------------------------------------------------------------------- /src/components/federationComp/ClubManager.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoPGoldy/student-club-management-system/HEAD/src/components/federationComp/ClubManager.vue -------------------------------------------------------------------------------- /src/components/federationComp/NewActivityApply.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoPGoldy/student-club-management-system/HEAD/src/components/federationComp/NewActivityApply.vue -------------------------------------------------------------------------------- /src/components/federationComp/NewClubApply.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoPGoldy/student-club-management-system/HEAD/src/components/federationComp/NewClubApply.vue -------------------------------------------------------------------------------- /src/components/federationComp/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoPGoldy/student-club-management-system/HEAD/src/components/federationComp/index.js -------------------------------------------------------------------------------- /src/components/general/GoBack.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoPGoldy/student-club-management-system/HEAD/src/components/general/GoBack.vue -------------------------------------------------------------------------------- /src/components/userComp/UserSetting.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoPGoldy/student-club-management-system/HEAD/src/components/userComp/UserSetting.vue -------------------------------------------------------------------------------- /src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoPGoldy/student-club-management-system/HEAD/src/config.js -------------------------------------------------------------------------------- /src/images/LoginBackground.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoPGoldy/student-club-management-system/HEAD/src/images/LoginBackground.jpg -------------------------------------------------------------------------------- /src/images/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoPGoldy/student-club-management-system/HEAD/src/images/avatar.png -------------------------------------------------------------------------------- /src/images/clubImages/1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoPGoldy/student-club-management-system/HEAD/src/images/clubImages/1.jpeg -------------------------------------------------------------------------------- /src/images/clubImages/2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoPGoldy/student-club-management-system/HEAD/src/images/clubImages/2.jpeg -------------------------------------------------------------------------------- /src/images/clubImages/3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoPGoldy/student-club-management-system/HEAD/src/images/clubImages/3.jpeg -------------------------------------------------------------------------------- /src/images/clubImages/4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoPGoldy/student-club-management-system/HEAD/src/images/clubImages/4.jpeg -------------------------------------------------------------------------------- /src/images/clubImages/5.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoPGoldy/student-club-management-system/HEAD/src/images/clubImages/5.jpeg -------------------------------------------------------------------------------- /src/images/clubImages/6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoPGoldy/student-club-management-system/HEAD/src/images/clubImages/6.jpeg -------------------------------------------------------------------------------- /src/images/clubImages/7.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoPGoldy/student-club-management-system/HEAD/src/images/clubImages/7.jpeg -------------------------------------------------------------------------------- /src/images/clubImages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoPGoldy/student-club-management-system/HEAD/src/images/clubImages/index.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoPGoldy/student-club-management-system/HEAD/src/main.js -------------------------------------------------------------------------------- /src/mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoPGoldy/student-club-management-system/HEAD/src/mixin.js -------------------------------------------------------------------------------- /src/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoPGoldy/student-club-management-system/HEAD/src/router.js -------------------------------------------------------------------------------- /src/session.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoPGoldy/student-club-management-system/HEAD/src/session.js -------------------------------------------------------------------------------- /src/views/Activity.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoPGoldy/student-club-management-system/HEAD/src/views/Activity.vue -------------------------------------------------------------------------------- /src/views/ActivityList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoPGoldy/student-club-management-system/HEAD/src/views/ActivityList.vue -------------------------------------------------------------------------------- /src/views/Affair.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoPGoldy/student-club-management-system/HEAD/src/views/Affair.vue -------------------------------------------------------------------------------- /src/views/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoPGoldy/student-club-management-system/HEAD/src/views/App.vue -------------------------------------------------------------------------------- /src/views/ClubList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoPGoldy/student-club-management-system/HEAD/src/views/ClubList.vue -------------------------------------------------------------------------------- /src/views/Federation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoPGoldy/student-club-management-system/HEAD/src/views/Federation.vue -------------------------------------------------------------------------------- /src/views/Finance.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoPGoldy/student-club-management-system/HEAD/src/views/Finance.vue -------------------------------------------------------------------------------- /src/views/MainPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoPGoldy/student-club-management-system/HEAD/src/views/MainPage.vue -------------------------------------------------------------------------------- /src/views/UserCenter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoPGoldy/student-club-management-system/HEAD/src/views/UserCenter.vue -------------------------------------------------------------------------------- /src/views/login/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoPGoldy/student-club-management-system/HEAD/src/views/login/Login.vue -------------------------------------------------------------------------------- /src/views/login/Sign.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoPGoldy/student-club-management-system/HEAD/src/views/login/Sign.vue -------------------------------------------------------------------------------- /vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoPGoldy/student-club-management-system/HEAD/vue.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoPGoldy/student-club-management-system/HEAD/yarn.lock --------------------------------------------------------------------------------