├── miniprogram ├── pages │ └── test1 │ │ ├── test1.wxss │ │ ├── test1.wxml │ │ ├── test1.json │ │ └── test1.js ├── cmpts │ ├── public │ │ ├── poster │ │ │ ├── wxa-plugin-canvas │ │ │ │ ├── poster │ │ │ │ │ ├── index.wxss │ │ │ │ │ ├── index.json │ │ │ │ │ ├── index.wxml │ │ │ │ │ └── poster.js │ │ │ │ └── index │ │ │ │ │ ├── index.json │ │ │ │ │ ├── index.wxml │ │ │ │ │ └── index.wxss │ │ │ ├── images │ │ │ │ ├── friend.png │ │ │ │ └── wechat.png │ │ │ ├── poster_cmpt.json │ │ │ ├── poster_cmpt.wxml │ │ │ └── poster_cmpt_helper.js │ │ ├── rows │ │ │ ├── rows_cmpt.json │ │ │ └── rows_set_helper.js │ │ ├── editor │ │ │ └── editor_cmpt.json │ │ ├── img │ │ │ ├── img_upload_cmpt.json │ │ │ ├── img_upload_cmpt.wxss │ │ │ └── img_upload_cmpt.wxml │ │ ├── list │ │ │ └── comm_list_cmpt.json │ │ ├── modal │ │ │ ├── modal_cmpt.json │ │ │ ├── modal_cmpt.wxss │ │ │ └── modal_cmpt.js │ │ ├── picker │ │ │ ├── picker_cmpt.json │ │ │ ├── picker_cmpt.wxss │ │ │ └── picker_cmpt.wxml │ │ ├── radio │ │ │ ├── radio_cmpt.json │ │ │ └── radio_cmpt.wxml │ │ ├── swiper │ │ │ ├── swiper_cmpt.json │ │ │ ├── swiper_cmpt.wxss │ │ │ ├── swiper_cmpt.wxml │ │ │ └── swiper_cmpt.js │ │ ├── table │ │ │ ├── table_cmpt.json │ │ │ ├── table_cmpt.wxml │ │ │ └── table_cmpt.js │ │ ├── checkbox │ │ │ ├── checkbox_cmpt.json │ │ │ ├── checkbox_cmpt.wxml │ │ │ ├── checkbox_cmpt.wxss │ │ │ └── checkbox_cmpt.js │ │ ├── picker_time │ │ │ ├── picker_time_cmpt.wxss │ │ │ ├── picker_time_cmpt.json │ │ │ └── picker_time_cmpt.wxml │ │ ├── custom_nav │ │ │ ├── custom_nav_cmpt.json │ │ │ ├── custom_nav_cmpt.wxml │ │ │ ├── custom_nav_cmpt.wxss │ │ │ └── custom_nav_cmpt.js │ │ ├── form │ │ │ ├── form_set │ │ │ │ ├── form_set_cmpt.json │ │ │ │ ├── field │ │ │ │ │ ├── form_set_field.json │ │ │ │ │ └── form_set_field.wxss │ │ │ │ └── form_set_cmpt.wxss │ │ │ └── form_show │ │ │ │ ├── content │ │ │ │ ├── form_show_content.json │ │ │ │ ├── form_show_content.wxml │ │ │ │ └── form_show_content.wxss │ │ │ │ └── form_show_cmpt.json │ │ ├── picker_multi │ │ │ ├── picker_multi_cmpt.json │ │ │ ├── picker_multi_cmpt.wxss │ │ │ └── picker_multi_cmpt.wxml │ │ └── calendar │ │ │ ├── date_select │ │ │ ├── date_select_cmpt.json │ │ │ ├── date_select_cmpt.wxml │ │ │ └── date_select_cmpt.wxss │ │ │ ├── time_select │ │ │ ├── time_select_cmpt.json │ │ │ └── time_select_cmpt.wxml │ │ │ ├── calendar_comm │ │ │ └── calendar_comm_cmpt.json │ │ │ └── calendar_meet │ │ │ └── calendar_meet_cmpt.json │ └── biz │ │ ├── foot │ │ ├── foot_cmpt.json │ │ ├── foot_cmpt.wxml │ │ ├── foot_cmpt.wxss │ │ └── foot_cmpt.js │ │ └── detail │ │ └── detail_cmpt.json ├── app.wxss ├── projects │ └── meetsport │ │ ├── pages │ │ ├── about │ │ │ ├── list │ │ │ │ ├── about_list.wxml │ │ │ │ ├── about_list.wxss │ │ │ │ ├── about_list.json │ │ │ │ └── about_list.js │ │ │ └── index │ │ │ │ ├── about_index.wxml │ │ │ │ ├── about_index.json │ │ │ │ ├── about_index.wxss │ │ │ │ └── about_index.js │ │ ├── enroll │ │ │ ├── join_edit │ │ │ │ ├── enroll_join_edit.wxss │ │ │ │ ├── enroll_join_edit.wxml │ │ │ │ └── enroll_join_edit.json │ │ │ ├── my_join_list │ │ │ │ ├── enroll_my_join_list.json │ │ │ │ └── enroll_my_join_list.wxss │ │ │ ├── my_join_detail │ │ │ │ └── enroll_my_join_detail.json │ │ │ ├── join │ │ │ │ ├── enroll_join.json │ │ │ │ ├── enroll_join.wxss │ │ │ │ └── enroll_join.wxml │ │ │ └── all │ │ │ │ ├── enroll_all.json │ │ │ │ ├── enroll_all.wxss │ │ │ │ └── enroll_all.wxml │ │ ├── search │ │ │ ├── search.wxml │ │ │ ├── search.json │ │ │ ├── search.wxss │ │ │ └── search.js │ │ ├── my │ │ │ ├── fav │ │ │ │ ├── my_fav.wxml │ │ │ │ ├── my_fav.json │ │ │ │ ├── my_fav.wxss │ │ │ │ └── my_fav.js │ │ │ ├── foot │ │ │ │ ├── my_foot.wxml │ │ │ │ ├── my_foot.json │ │ │ │ ├── my_foot.wxss │ │ │ │ └── my_foot.js │ │ │ ├── index │ │ │ │ └── my_index.json │ │ │ ├── reg │ │ │ │ ├── my_reg.json │ │ │ │ ├── my_reg.wxss │ │ │ │ └── my_reg.wxml │ │ │ └── edit │ │ │ │ ├── my_edit.json │ │ │ │ ├── my_edit.wxss │ │ │ │ └── my_edit.wxml │ │ ├── admin │ │ │ ├── mgr │ │ │ │ ├── add │ │ │ │ │ ├── admin_mgr_add.wxss │ │ │ │ │ ├── admin_mgr_add.json │ │ │ │ │ └── admin_mgr_add.wxml │ │ │ │ ├── edit │ │ │ │ │ ├── admin_mgr_edit.wxss │ │ │ │ │ └── admin_mgr_edit.json │ │ │ │ ├── pwd │ │ │ │ │ ├── admin_mgr_pwd.wxss │ │ │ │ │ ├── admin_mgr_pwd.json │ │ │ │ │ ├── admin_mgr_pwd.wxml │ │ │ │ │ └── admin_mgr_pwd.js │ │ │ │ ├── list │ │ │ │ │ ├── admin_mgr_list.wxss │ │ │ │ │ └── admin_mgr_list.json │ │ │ │ └── log │ │ │ │ │ ├── admin_log_list.wxss │ │ │ │ │ └── admin_log_list.json │ │ │ ├── news │ │ │ │ ├── edit │ │ │ │ │ ├── admin_news_edit.wxss │ │ │ │ │ ├── admin_news_edit.json │ │ │ │ │ └── admin_news_edit.wxml │ │ │ │ ├── add │ │ │ │ │ ├── admin_news_add.wxss │ │ │ │ │ ├── admin_news_add.wxml │ │ │ │ │ └── admin_news_add.json │ │ │ │ └── list │ │ │ │ │ ├── admin_news_list.json │ │ │ │ │ └── admin_news_list.wxss │ │ │ ├── enroll │ │ │ │ ├── add │ │ │ │ │ ├── admin_enroll_add.wxss │ │ │ │ │ ├── admin_enroll_add.wxml │ │ │ │ │ └── admin_enroll_add.json │ │ │ │ ├── edit │ │ │ │ │ ├── admin_enroll_edit.wxss │ │ │ │ │ ├── admin_enroll_edit.wxml │ │ │ │ │ └── admin_enroll_edit.json │ │ │ │ ├── list │ │ │ │ │ ├── admin_enroll_list.json │ │ │ │ │ └── admin_enroll_list.wxss │ │ │ │ ├── join_list │ │ │ │ │ └── admin_enroll_join_list.json │ │ │ │ ├── scan │ │ │ │ │ ├── admin_enroll_scan.json │ │ │ │ │ ├── admin_enroll_scan.wxml │ │ │ │ │ ├── admin_enroll_scan.wxss │ │ │ │ │ └── admin_enroll_scan.js │ │ │ │ ├── temp │ │ │ │ │ ├── admin_enroll_temp.json │ │ │ │ │ ├── admin_enroll_temp.wxss │ │ │ │ │ └── admin_enroll_temp.wxml │ │ │ │ ├── export │ │ │ │ │ ├── admin_enroll_export.wxss │ │ │ │ │ └── admin_enroll_export.json │ │ │ │ ├── record │ │ │ │ │ ├── admin_enroll_record.json │ │ │ │ │ ├── admin_enroll_record.wxss │ │ │ │ │ └── admin_enroll_record.wxml │ │ │ │ └── day │ │ │ │ │ └── admin_enroll_day.json │ │ │ ├── user │ │ │ │ ├── detail │ │ │ │ │ ├── admin_user_detail.wxss │ │ │ │ │ ├── admin_user_detail.json │ │ │ │ │ └── admin_user_detail.wxml │ │ │ │ ├── list │ │ │ │ │ ├── admin_user_list.wxss │ │ │ │ │ └── admin_user_list.json │ │ │ │ └── export │ │ │ │ │ ├── admin_user_export.json │ │ │ │ │ └── admin_user_export.wxss │ │ │ ├── index │ │ │ │ ├── login │ │ │ │ │ ├── admin_login.json │ │ │ │ │ ├── admin_login.wxml │ │ │ │ │ ├── admin_login.js │ │ │ │ │ └── admin_login.wxss │ │ │ │ └── home │ │ │ │ │ ├── admin_home.json │ │ │ │ │ └── admin_home.wxss │ │ │ ├── setup │ │ │ │ ├── qr │ │ │ │ │ ├── admin_setup_qr.json │ │ │ │ │ ├── admin_setup_qr.wxml │ │ │ │ │ └── admin_setup_qr.wxss │ │ │ │ ├── about_list │ │ │ │ │ ├── admin_setup_about_list.json │ │ │ │ │ ├── admin_setup_about_list.wxss │ │ │ │ │ ├── admin_setup_about_list.wxml │ │ │ │ │ └── admin_setup_about_list.js │ │ │ │ └── about │ │ │ │ │ ├── admin_setup_about.json │ │ │ │ │ ├── admin_setup_about.wxss │ │ │ │ │ └── admin_setup_about.wxml │ │ │ └── content │ │ │ │ ├── admin_content.json │ │ │ │ ├── admin_content.wxml │ │ │ │ ├── admin_content.wxss │ │ │ │ └── admin_content.js │ │ ├── default │ │ │ └── index │ │ │ │ ├── default_index.json │ │ │ │ ├── default_index.wxml │ │ │ │ ├── default_index.js │ │ │ │ └── default_index.wxss │ │ ├── news │ │ │ ├── detail │ │ │ │ ├── news_detail.wxss │ │ │ │ ├── news_detail.json │ │ │ │ └── news_detail.wxml │ │ │ ├── cate1 │ │ │ │ ├── news_cate1.wxss │ │ │ │ ├── news_cate1.json │ │ │ │ ├── news_cate1.js │ │ │ │ └── news_cate1.wxml │ │ │ ├── cate2 │ │ │ │ ├── news_cate2.wxss │ │ │ │ ├── news_cate2.json │ │ │ │ ├── news_cate2.js │ │ │ │ └── news_cate2.wxml │ │ │ └── index │ │ │ │ ├── news_index.wxss │ │ │ │ ├── news_index.json │ │ │ │ ├── news_index.js │ │ │ │ └── news_index.wxml │ │ └── tpls │ │ │ └── menu_tpl.wxml │ │ ├── cmpts │ │ ├── date_select │ │ │ ├── date_select_cmpt.json │ │ │ └── date_select_cmpt.wxml │ │ └── time_select │ │ │ └── time_select_cmpt.json │ │ ├── images │ │ ├── my.jpg │ │ ├── home.jpg │ │ ├── menu │ │ │ ├── 1.png │ │ │ ├── 10.png │ │ │ ├── 11.png │ │ │ ├── 12.png │ │ │ ├── 13.png │ │ │ ├── 14.png │ │ │ ├── 15.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ │ ├── my │ │ │ ├── all.png │ │ │ ├── out.png │ │ │ ├── use.png │ │ │ ├── cancel.png │ │ │ └── check.png │ │ └── tabbar │ │ │ ├── my.png │ │ │ ├── day.png │ │ │ ├── home.png │ │ │ ├── news.png │ │ │ ├── day_cur.png │ │ │ ├── my_cur.png │ │ │ ├── home_cur.png │ │ │ └── news_cur.png │ │ ├── biz │ │ ├── project_biz.js │ │ ├── enroll_biz.js │ │ └── admin_news_biz.js │ │ └── public │ │ └── project_setting.js ├── images │ └── cover.gif ├── style │ ├── project │ │ ├── my_fav_style.wxss │ │ ├── my_foot_style.wxss │ │ ├── admin_list_style.wxss │ │ └── search_style.wxss │ └── base │ │ ├── nav.wxss │ │ ├── comm.wxss │ │ ├── image.wxss │ │ └── avatar.wxss ├── sitemap.json ├── tpls │ ├── public │ │ ├── top_tpl.wxml │ │ ├── list_load_tpl.wxml │ │ └── admin_forms_detail_tpl.wxml │ ├── wxs │ │ └── tools.wxs │ └── project │ │ ├── my_foot_tpl.wxml │ │ ├── news_index_tpl.wxml │ │ ├── search_tpl.wxml │ │ ├── about_tpl.wxml │ │ └── my_fav_tpl.wxml ├── comm │ ├── constants.js │ ├── biz │ │ ├── search_biz.js │ │ ├── fav_biz.js │ │ ├── base_biz.js │ │ └── foot_biz.js │ └── behavior │ │ ├── my_foot_bh.js │ │ └── my_fav_bh.js ├── setting │ └── setting.js ├── helper │ ├── form_helper.js │ ├── file_helper.js │ ├── helper.js │ └── cache_helper.js └── app.js ├── demo ├── 1首页.png ├── 2预约场次.png ├── 3选择预约.png ├── 4填写资料.png ├── 5我的预约.png ├── 6预约详情.png ├── 7个人中心.png ├── 8最新通知.png ├── 二维码.png ├── 50后台=首页.png ├── 55后台-时段.png ├── 56后台-核销.png ├── 51后台-用户管理.png ├── 53后台-通知管理.png ├── 54后台-场地管理.png ├── 57后台-导出用户.png ├── 59后台-名单管理.png ├── 60后台-代用户预约.png ├── 60后台-核销与取消.png ├── 58后台-导出Excel.png ├── author-base.png └── 文体场所预约概要设计 (2).jpg ├── 中小学校园体育设施开放预约小程序安装使用手册.docx ├── cloudfunctions └── mcloud │ ├── project │ └── meetsport │ │ ├── public │ │ ├── constants.js │ │ └── project_config.js │ │ ├── controller │ │ ├── my_controller.js │ │ ├── base_project_controller.js │ │ ├── admin │ │ │ ├── base_project_admin_controller.js │ │ │ └── admin_home_controller.js │ │ ├── check_controller.js │ │ └── home_controller.js │ │ ├── model │ │ ├── base_project_model.js │ │ ├── temp_model.js │ │ ├── fav_model.js │ │ ├── day_model.js │ │ ├── news_model.js │ │ ├── user_model.js │ │ └── enroll_model.js │ │ └── service │ │ ├── admin │ │ ├── base_project_admin_service.js │ │ └── admin_setup_service.js │ │ └── home_service.js │ ├── config.json │ ├── index.js │ ├── framework │ ├── utils │ │ ├── constant.js │ │ ├── math_util.js │ │ ├── util.js │ │ └── setup │ │ │ └── setup_model.js │ ├── platform │ │ ├── model │ │ │ ├── base_model.js │ │ │ ├── log_model.js │ │ │ └── admin_model.js │ │ ├── service │ │ │ └── base_service.js │ │ └── controller │ │ │ ├── base_controller.js │ │ │ └── base_admin_controller.js │ ├── core │ │ ├── app_code.js │ │ ├── app_error.js │ │ ├── app_other.js │ │ └── app_util.js │ ├── cloud │ │ └── cloud_base.js │ └── lib │ │ └── mini_lib.js │ ├── package.json │ └── config │ └── config.js ├── .gitignore ├── README.md └── project.private.config.json /miniprogram/pages/test1/test1.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /miniprogram/cmpts/public/poster/wxa-plugin-canvas/poster/index.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/1首页.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/OpenAppt/HEAD/demo/1首页.png -------------------------------------------------------------------------------- /demo/2预约场次.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/OpenAppt/HEAD/demo/2预约场次.png -------------------------------------------------------------------------------- /demo/3选择预约.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/OpenAppt/HEAD/demo/3选择预约.png -------------------------------------------------------------------------------- /demo/4填写资料.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/OpenAppt/HEAD/demo/4填写资料.png -------------------------------------------------------------------------------- /demo/5我的预约.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/OpenAppt/HEAD/demo/5我的预约.png -------------------------------------------------------------------------------- /demo/6预约详情.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/OpenAppt/HEAD/demo/6预约详情.png -------------------------------------------------------------------------------- /demo/7个人中心.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/OpenAppt/HEAD/demo/7个人中心.png -------------------------------------------------------------------------------- /demo/8最新通知.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/OpenAppt/HEAD/demo/8最新通知.png -------------------------------------------------------------------------------- /demo/二维码.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/OpenAppt/HEAD/demo/二维码.png -------------------------------------------------------------------------------- /demo/50后台=首页.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/OpenAppt/HEAD/demo/50后台=首页.png -------------------------------------------------------------------------------- /demo/55后台-时段.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/OpenAppt/HEAD/demo/55后台-时段.png -------------------------------------------------------------------------------- /demo/56后台-核销.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/OpenAppt/HEAD/demo/56后台-核销.png -------------------------------------------------------------------------------- /demo/51后台-用户管理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/OpenAppt/HEAD/demo/51后台-用户管理.png -------------------------------------------------------------------------------- /demo/53后台-通知管理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/OpenAppt/HEAD/demo/53后台-通知管理.png -------------------------------------------------------------------------------- /demo/54后台-场地管理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/OpenAppt/HEAD/demo/54后台-场地管理.png -------------------------------------------------------------------------------- /demo/57后台-导出用户.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/OpenAppt/HEAD/demo/57后台-导出用户.png -------------------------------------------------------------------------------- /demo/59后台-名单管理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/OpenAppt/HEAD/demo/59后台-名单管理.png -------------------------------------------------------------------------------- /demo/60后台-代用户预约.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/OpenAppt/HEAD/demo/60后台-代用户预约.png -------------------------------------------------------------------------------- /demo/60后台-核销与取消.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/OpenAppt/HEAD/demo/60后台-核销与取消.png -------------------------------------------------------------------------------- /demo/58后台-导出Excel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/OpenAppt/HEAD/demo/58后台-导出Excel.png -------------------------------------------------------------------------------- /demo/author-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/OpenAppt/HEAD/demo/author-base.png -------------------------------------------------------------------------------- /miniprogram/app.wxss: -------------------------------------------------------------------------------- 1 | @import "style/base/comm.wxss"; 2 | @import "style/public/project.wxss"; 3 | -------------------------------------------------------------------------------- /demo/文体场所预约概要设计 (2).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/OpenAppt/HEAD/demo/文体场所预约概要设计 (2).jpg -------------------------------------------------------------------------------- /miniprogram/cmpts/biz/foot/foot_cmpt.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/public/poster/wxa-plugin-canvas/index/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/public/rows/rows_cmpt.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/about/list/about_list.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/about/list/about_list.wxss: -------------------------------------------------------------------------------- 1 | @import "../index/about_index.wxss"; -------------------------------------------------------------------------------- /miniprogram/cmpts/public/editor/editor_cmpt.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/public/img/img_upload_cmpt.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/public/list/comm_list_cmpt.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/public/modal/modal_cmpt.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/public/picker/picker_cmpt.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/public/radio/radio_cmpt.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/public/swiper/swiper_cmpt.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/public/table/table_cmpt.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/public/checkbox/checkbox_cmpt.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/public/picker_time/picker_time_cmpt.wxss: -------------------------------------------------------------------------------- 1 | /* cmpts/public/picker_time/picker_time_cmpt.wxss */ -------------------------------------------------------------------------------- /miniprogram/images/cover.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/OpenAppt/HEAD/miniprogram/images/cover.gif -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/enroll/join_edit/enroll_join_edit.wxss: -------------------------------------------------------------------------------- 1 | @import "../join/enroll_join.wxss"; -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/search/search.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /中小学校园体育设施开放预约小程序安装使用手册.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/OpenAppt/HEAD/中小学校园体育设施开放预约小程序安装使用手册.docx -------------------------------------------------------------------------------- /miniprogram/cmpts/public/custom_nav/custom_nav_cmpt.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/public/form/form_set/form_set_cmpt.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/public/picker_multi/picker_multi_cmpt.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/public/picker_time/picker_time_cmpt.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/pages/test1/test1.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/enroll/join_edit/enroll_join_edit.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/my/fav/my_fav.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/admin/mgr/add/admin_mgr_add.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/admin/mgr/edit/admin_mgr_edit.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/admin/mgr/pwd/admin_mgr_pwd.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/my/foot/my_foot.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /miniprogram/style/project/my_fav_style.wxss: -------------------------------------------------------------------------------- 1 | .text-pic-list-box .item .simple .simple-title { 2 | width: 100%; 3 | } -------------------------------------------------------------------------------- /miniprogram/style/project/my_foot_style.wxss: -------------------------------------------------------------------------------- 1 | .text-pic-list-box .item .simple .simple-title { 2 | width: 100%; 3 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/public/calendar/date_select/date_select_cmpt.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/public/calendar/time_select/time_select_cmpt.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/cmpts/date_select/date_select_cmpt.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/cmpts/time_select/time_select_cmpt.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/about/index/about_index.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/admin/news/edit/admin_news_edit.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; -------------------------------------------------------------------------------- /miniprogram/cmpts/public/calendar/calendar_comm/calendar_comm_cmpt.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/public/calendar/calendar_meet/calendar_meet_cmpt.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/admin/enroll/add/admin_enroll_add.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; 2 | -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/admin/enroll/edit/admin_enroll_edit.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/admin/news/add/admin_news_add.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; 2 | -------------------------------------------------------------------------------- /miniprogram/cmpts/public/swiper/swiper_cmpt.wxss: -------------------------------------------------------------------------------- 1 | .swiper { 2 | width: 100%; 3 | } 4 | .swiper-item-images { 5 | width: 100%; 6 | } -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/default/index/default_index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "navigationStyle": "custom" 4 | } -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/search/search.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "navigationBarTitleText": "搜索" 5 | } -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/images/my.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/OpenAppt/HEAD/miniprogram/projects/meetsport/images/my.jpg -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/images/home.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/OpenAppt/HEAD/miniprogram/projects/meetsport/images/home.jpg -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/about/index/about_index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "enablePullDownRefresh": true 5 | } -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/about/list/about_list.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "enablePullDownRefresh": true 5 | } -------------------------------------------------------------------------------- /cloudfunctions/mcloud/project/meetsport/public/constants.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | // 首页推荐 3 | SETUP_HOME_VOUCH_KEY : 'SETUP_HOME_VOUCH_KEY', 4 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/public/poster/images/friend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/OpenAppt/HEAD/miniprogram/cmpts/public/poster/images/friend.png -------------------------------------------------------------------------------- /miniprogram/cmpts/public/poster/images/wechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/OpenAppt/HEAD/miniprogram/cmpts/public/poster/images/wechat.png -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/images/menu/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/OpenAppt/HEAD/miniprogram/projects/meetsport/images/menu/1.png -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/images/menu/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/OpenAppt/HEAD/miniprogram/projects/meetsport/images/menu/10.png -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/images/menu/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/OpenAppt/HEAD/miniprogram/projects/meetsport/images/menu/11.png -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/images/menu/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/OpenAppt/HEAD/miniprogram/projects/meetsport/images/menu/12.png -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/images/menu/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/OpenAppt/HEAD/miniprogram/projects/meetsport/images/menu/13.png -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/images/menu/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/OpenAppt/HEAD/miniprogram/projects/meetsport/images/menu/14.png -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/images/menu/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/OpenAppt/HEAD/miniprogram/projects/meetsport/images/menu/15.png -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/images/menu/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/OpenAppt/HEAD/miniprogram/projects/meetsport/images/menu/2.png -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/images/menu/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/OpenAppt/HEAD/miniprogram/projects/meetsport/images/menu/3.png -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/images/menu/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/OpenAppt/HEAD/miniprogram/projects/meetsport/images/menu/4.png -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/images/menu/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/OpenAppt/HEAD/miniprogram/projects/meetsport/images/menu/5.png -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/images/menu/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/OpenAppt/HEAD/miniprogram/projects/meetsport/images/menu/6.png -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/images/menu/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/OpenAppt/HEAD/miniprogram/projects/meetsport/images/menu/7.png -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/images/menu/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/OpenAppt/HEAD/miniprogram/projects/meetsport/images/menu/8.png -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/images/menu/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/OpenAppt/HEAD/miniprogram/projects/meetsport/images/menu/9.png -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/images/my/all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/OpenAppt/HEAD/miniprogram/projects/meetsport/images/my/all.png -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/images/my/out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/OpenAppt/HEAD/miniprogram/projects/meetsport/images/my/out.png -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/images/my/use.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/OpenAppt/HEAD/miniprogram/projects/meetsport/images/my/use.png -------------------------------------------------------------------------------- /miniprogram/cmpts/public/poster/poster_cmpt.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "poster": "./wxa-plugin-canvas/poster" 5 | } 6 | } -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/images/my/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/OpenAppt/HEAD/miniprogram/projects/meetsport/images/my/cancel.png -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/images/my/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/OpenAppt/HEAD/miniprogram/projects/meetsport/images/my/check.png -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/images/tabbar/my.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/OpenAppt/HEAD/miniprogram/projects/meetsport/images/tabbar/my.png -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/news/detail/news_detail.wxss: -------------------------------------------------------------------------------- 1 | @import "../../../../../style/public/detail.wxss"; 2 | @import "../../../style/skin.wxss"; -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/images/tabbar/day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/OpenAppt/HEAD/miniprogram/projects/meetsport/images/tabbar/day.png -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/images/tabbar/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/OpenAppt/HEAD/miniprogram/projects/meetsport/images/tabbar/home.png -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/images/tabbar/news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/OpenAppt/HEAD/miniprogram/projects/meetsport/images/tabbar/news.png -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/news/cate1/news_cate1.wxss: -------------------------------------------------------------------------------- 1 | @import "../../../../../style/public/comm_box_list.wxss"; 2 | @import "../../../style/skin.wxss"; -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/news/cate2/news_cate2.wxss: -------------------------------------------------------------------------------- 1 | @import "../../../../../style/public/comm_box_list.wxss"; 2 | @import "../../../style/skin.wxss"; -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/news/index/news_index.wxss: -------------------------------------------------------------------------------- 1 | @import "../../../../../style/public/comm_box_list.wxss"; 2 | @import "../../../style/skin.wxss"; -------------------------------------------------------------------------------- /miniprogram/cmpts/biz/detail/detail_cmpt.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "cmpt-poster": "/cmpts/public/poster/poster_cmpt" 5 | } 6 | } -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/images/tabbar/day_cur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/OpenAppt/HEAD/miniprogram/projects/meetsport/images/tabbar/day_cur.png -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/images/tabbar/my_cur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/OpenAppt/HEAD/miniprogram/projects/meetsport/images/tabbar/my_cur.png -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/about/index/about_index.wxss: -------------------------------------------------------------------------------- 1 | @import "../../../../../style/public/detail.wxss"; 2 | @import "../../../style/skin.wxss"; 3 | -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/my/fav/my_fav.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "enablePullDownRefresh": true, 4 | "navigationBarTitleText": "我的收藏" 5 | } -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/my/foot/my_foot.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "enablePullDownRefresh": true, 4 | "navigationBarTitleText": "历史浏览" 5 | } -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/images/tabbar/home_cur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/OpenAppt/HEAD/miniprogram/projects/meetsport/images/tabbar/home_cur.png -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/images/tabbar/news_cur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/OpenAppt/HEAD/miniprogram/projects/meetsport/images/tabbar/news_cur.png -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/news/cate1/news_cate1.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "disableScroll": true, 5 | "navigationBarTitleText": "资讯" 6 | } -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/news/cate2/news_cate2.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "disableScroll": true, 5 | "navigationBarTitleText": "资讯" 6 | } -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/news/index/news_index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "disableScroll": true, 5 | "navigationBarTitleText": "最新通知" 6 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/public/poster/wxa-plugin-canvas/poster/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "we-canvas": "../index/index" 5 | } 6 | } -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/admin/user/detail/admin_user_detail.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; 2 | 3 | .main-admin { 4 | padding: 30rpx 0rpx; 5 | } -------------------------------------------------------------------------------- /cloudfunctions/mcloud/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "permissions": { 3 | "openapi": ["wxacode.getUnlimited", "security.imgSecCheck", "security.msgSecCheck","serviceMarket.invokeService"] 4 | } 5 | } -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/enroll/my_join_list/enroll_my_join_list.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "disableScroll": true, 5 | "navigationBarTitleText": "我的预订" 6 | } -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/search/search.wxss: -------------------------------------------------------------------------------- 1 | @import "../../style/skin.wxss"; 2 | @import "../../../../style/project/search_style.wxss"; 3 | .bg-project { 4 | color:#000!important; 5 | } -------------------------------------------------------------------------------- /cloudfunctions/mcloud/project/meetsport/public/project_config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | // ## 缓存相关 3 | CACHE_CALENDAR_TIME: 60 * 30, //日历缓存 4 | 5 | // 每个时段最大预订次数 6 | MEET_MAX_JOIN_CNT: 1, 7 | 8 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/public/form/form_show/content/form_show_content.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "cmpt-editor": "/cmpts/public/editor/editor_cmpt" 4 | }, 5 | "navigationBarTitleText": "详细内容" 6 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/public/poster/wxa-plugin-canvas/poster/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/enroll/my_join_detail/enroll_my_join_detail.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "enablePullDownRefresh": true, 5 | "navigationBarTitleText": "预订详情" 6 | } -------------------------------------------------------------------------------- /cloudfunctions/mcloud/index.js: -------------------------------------------------------------------------------- 1 | const application = require('./framework/core/application.js'); 2 | 3 | // 云函数入口函数 4 | exports.main = async (event, context) => { 5 | return await application.app(event, context); 6 | } -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/my/fav/my_fav.wxss: -------------------------------------------------------------------------------- 1 | @import "../../../../../style/public/article_list.wxss"; 2 | @import "../../../style/skin.wxss"; 3 | @import "../../../../../style/project/my_fav_style.wxss"; -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/my/foot/my_foot.wxss: -------------------------------------------------------------------------------- 1 | @import "../../../../../style/public/article_list.wxss"; 2 | @import "../../../style/skin.wxss"; 3 | @import "../../../../../style/project/my_foot_style.wxss"; -------------------------------------------------------------------------------- /miniprogram/sitemap.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "disallow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Windows 2 | [Dd]esktop.ini 3 | Thumbs.db 4 | $RECYCLE.BIN/ 5 | 6 | # macOS 7 | .DS_Store 8 | .fseventsd 9 | .Spotlight-V100 10 | .TemporaryItems 11 | .Trashes 12 | 13 | # Node.js 14 | node_modules/ 15 | -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/my/index/my_index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | 4 | }, 5 | "navigationBarBackgroundColor": "#55BF9B", 6 | "enablePullDownRefresh": true, 7 | "navigationBarTitleText": "" 8 | } -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/admin/mgr/add/admin_mgr_add.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "navigationBarBackgroundColor": "#2499f2", 4 | "navigationBarTextStyle": "white", 5 | "navigationBarTitleText": "添加管理员" 6 | } -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/admin/mgr/list/admin_mgr_list.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; 2 | 3 | .admin-comm-list .item .info.title-mid .info-item .title { 4 | justify-content: flex-end; 5 | } -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/admin/news/list/admin_news_list.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "navigationBarBackgroundColor": "#2499f2", 5 | "navigationBarTextStyle": "white", 6 | "disableScroll": true 7 | } -------------------------------------------------------------------------------- /cloudfunctions/mcloud/framework/utils/constant.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Notes: 通用常量定义 3 | * Ver : CCMiniCloud Framework 2.32.1 ALL RIGHTS RESERVED BY cclinux0730 (wechat) 4 | * Date: 2020-09-05 04:00:00 5 | */ 6 | module.exports = { 7 | 8 | } -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/admin/enroll/list/admin_enroll_list.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "navigationBarBackgroundColor": "#2499f2", 5 | "navigationBarTextStyle": "white", 6 | "disableScroll": true 7 | } -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/admin/mgr/list/admin_mgr_list.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "navigationBarBackgroundColor": "#2499f2", 4 | "navigationBarTextStyle": "white", 5 | "navigationBarTitleText": "管理员管理" 6 | } -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/admin/mgr/pwd/admin_mgr_pwd.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "navigationBarBackgroundColor": "#2499f2", 4 | "navigationBarTextStyle": "white", 5 | "navigationBarTitleText": "管理员密码修改" 6 | } -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/news/detail/news_detail.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "cmpt-detail": "/cmpts/biz/detail/detail_cmpt" 4 | }, 5 | "enablePullDownRefresh": true, 6 | "navigationBarTitleText": "详细内容" 7 | } -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/my/reg/my_reg.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "cmpt-form-show": "/cmpts/public/form/form_show/form_show_cmpt" 4 | }, 5 | "enablePullDownRefresh": true, 6 | "navigationBarTitleText": "注册" 7 | } -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/my/edit/my_edit.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "cmpt-form-show": "/cmpts/public/form/form_show/form_show_cmpt" 4 | }, 5 | "enablePullDownRefresh": true, 6 | "navigationBarTitleText": "个人资料" 7 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/public/picker_multi/picker_multi_cmpt.wxss: -------------------------------------------------------------------------------- 1 | .picker-cmpt { 2 | line-height: 100rpx; 3 | font-size: 28rpx; 4 | text-overflow: ellipsis; 5 | white-space: nowrap; 6 | overflow: hidden; 7 | width: 100%; 8 | text-align: right; 9 | } -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/admin/mgr/log/admin_log_list.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; 2 | 3 | page { 4 | background-color: #f8f8f8; 5 | } 6 | 7 | .admin-comm-list .item .info { 8 | padding: 15rpx 20rpx 0rpx; 9 | } -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/admin/user/list/admin_user_list.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; 2 | 3 | page { 4 | background-color: #f8f8f8; 5 | } 6 | 7 | .admin-comm-list .item .info .oprt { 8 | padding: 0rpx 0rpx; 9 | } -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/enroll/join/enroll_join.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "cmpt-form-show": "/cmpts/public/form/form_show/form_show_cmpt" 4 | }, 5 | "enablePullDownRefresh": true, 6 | "navigationBarTitleText": "填写资料" 7 | } -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/admin/news/list/admin_news_list.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; 2 | @import '../../../../../../style/project/admin_list_style.wxss'; 3 | 4 | page { 5 | background-color: #f8f8f8; 6 | } 7 | 8 | -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/enroll/join_edit/enroll_join_edit.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "cmpt-form-show": "/cmpts/public/form/form_show/form_show_cmpt" 4 | }, 5 | "navigationBarTitleText": "我的预订修改", 6 | "enablePullDownRefresh": true 7 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/public/poster/wxa-plugin-canvas/index/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/admin/enroll/join_list/admin_enroll_join_list.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | 4 | }, 5 | "navigationBarBackgroundColor": "#2499f2", 6 | "navigationBarTextStyle": "white", 7 | "navigationBarTitleText": "后台-预订记录管理" 8 | } -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/admin/mgr/edit/admin_mgr_edit.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "navigationBarBackgroundColor": "#2499f2", 4 | "navigationBarTextStyle": "white", 5 | "enablePullDownRefresh": true, 6 | "navigationBarTitleText": "修改管理员" 7 | } -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/admin/mgr/log/admin_log_list.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "navigationBarBackgroundColor": "#2499f2", 5 | "navigationBarTextStyle": "white", 6 | "disableScroll": true, 7 | "navigationBarTitleText": "后台-操作日志" 8 | } -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/admin/enroll/add/admin_enroll_add.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/admin/index/login/admin_login.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "cmpt-foot": "/cmpts/biz/foot/foot_cmpt" 4 | }, 5 | "disableScroll": true, 6 | "navigationBarBackgroundColor": "#ffffff", 7 | "navigationBarTextStyle": "black" 8 | } -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/admin/news/add/admin_news_add.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/admin/user/list/admin_user_list.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | 4 | }, 5 | "navigationBarBackgroundColor": "#2499f2", 6 | "navigationBarTextStyle": "white", 7 | "disableScroll": true, 8 | "navigationBarTitleText": "用户管理" 9 | } -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/admin/enroll/scan/admin_enroll_scan.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "navigationBarBackgroundColor": "#2499f2", 5 | "navigationBarTextStyle": "white", 6 | "enablePullDownRefresh": true, 7 | "navigationBarTitleText": "管理员扫码核销" 8 | } -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/admin/setup/qr/admin_setup_qr.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | 4 | }, 5 | "navigationBarBackgroundColor": "#2499f2", 6 | "navigationBarTextStyle": "white", 7 | "enablePullDownRefresh": true, 8 | "navigationBarTitleText": "小程序码" 9 | } -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/admin/enroll/temp/admin_enroll_temp.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "enablePullDownRefresh": true, 5 | "navigationBarBackgroundColor": "#2499f2", 6 | "navigationBarTextStyle": "white", 7 | "navigationBarTitleText": "后台-时间模板选择" 8 | } -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/admin/user/detail/admin_user_detail.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | 4 | }, 5 | "navigationBarBackgroundColor": "#2499f2", 6 | "navigationBarTextStyle": "white", 7 | "enablePullDownRefresh": true, 8 | "navigationBarTitleText": "用户详情" 9 | } -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/admin/user/export/admin_user_export.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | 4 | }, 5 | "navigationBarBackgroundColor": "#2499f2", 6 | "navigationBarTextStyle": "white", 7 | "enablePullDownRefresh": true, 8 | "navigationBarTitleText": "用户资料导出" 9 | } -------------------------------------------------------------------------------- /miniprogram/tpls/public/top_tpl.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /miniprogram/cmpts/biz/foot/foot_cmpt.wxml: -------------------------------------------------------------------------------- 1 | 2 | © {{company}} 3 | {{ver}} 4 | -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/admin/content/admin_content.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "cmpt-editor": "/cmpts/public/editor/editor_cmpt" 4 | }, 5 | "navigationBarBackgroundColor": "#2499f2", 6 | "navigationBarTextStyle": "white", 7 | "navigationBarTitleText": "后台-详细内容编辑" 8 | } -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/admin/setup/about_list/admin_setup_about_list.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | 4 | }, 5 | "navigationBarBackgroundColor": "#2499f2", 6 | "navigationBarTextStyle": "white", 7 | "enablePullDownRefresh": true, 8 | "navigationBarTitleText": "单页文章" 9 | } -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/enroll/all/enroll_all.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "time_select": "../../../cmpts/time_select/time_select_cmpt", 4 | "date_select": "../../../cmpts/date_select/date_select_cmpt" 5 | }, 6 | "disableScroll":true, 7 | "navigationBarTitleText": "场地预订" 8 | } -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/admin/index/home/admin_home.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "cmpt-foot": "/cmpts/biz/foot/foot_cmpt" 4 | }, 5 | "enablePullDownRefresh": true, 6 | "navigationBarBackgroundColor": "#2499f2", 7 | "navigationBarTextStyle": "white", 8 | "navigationBarTitleText": "后台管理" 9 | } -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/admin/user/export/admin_user_export.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; 2 | 3 | .form-box .title-desc { 4 | padding-bottom: 10rpx; 5 | border: 0; 6 | font-size: 29rpx; 7 | color: #888; 8 | } 9 | 10 | .btn-admin{ 11 | margin-bottom: 20rpx; 12 | } -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/admin/enroll/export/admin_enroll_export.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; 2 | 3 | .form-box .title-desc { 4 | padding-bottom: 10rpx; 5 | border: 0; 6 | font-size: 29rpx; 7 | color: #888; 8 | } 9 | 10 | .btn-admin{ 11 | margin-bottom: 20rpx; 12 | } -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/my/fav/my_fav.js: -------------------------------------------------------------------------------- 1 | const behavior = require('../../../../../comm/behavior/my_fav_bh.js'); 2 | const ProjectBiz = require('../../../biz/project_biz.js'); 3 | 4 | Page({ 5 | 6 | behaviors: [behavior], 7 | 8 | onReady: function () { 9 | ProjectBiz.initPage(this); 10 | }, 11 | }) -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/my/foot/my_foot.js: -------------------------------------------------------------------------------- 1 | const behavior = require('../../../../../comm/behavior/my_foot_bh.js'); 2 | const ProjectBiz = require('../../../biz/project_biz.js'); 3 | 4 | Page({ 5 | 6 | behaviors: [behavior], 7 | 8 | onReady: function () { 9 | ProjectBiz.initPage(this); 10 | }, 11 | }) -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/admin/setup/about/admin_setup_about.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "cmpt-editor": "/cmpts/public/editor/editor_cmpt" 4 | }, 5 | "navigationBarBackgroundColor": "#2499f2", 6 | "navigationBarTextStyle": "white", 7 | "enablePullDownRefresh": true, 8 | "navigationBarTitleText": "编辑" 9 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/biz/foot/foot_cmpt.wxss: -------------------------------------------------------------------------------- 1 | @import "../../../style/public/project.wxss"; 2 | 3 | .site-footer { 4 | width: 100%; 5 | display: flex; 6 | flex-direction: column; 7 | justify-content: center; 8 | align-items: center; 9 | font-size: 24rpx; 10 | color: #aaa; 11 | margin-top: 20rpx; 12 | margin-bottom: 20rpx; 13 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/public/form/form_show/form_show_cmpt.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "cmpt-checkbox": "/cmpts/public/checkbox/checkbox_cmpt", 5 | "cmpt-radio": "/cmpts/public/radio/radio_cmpt", 6 | "cmpt-rows": "/cmpts/public/rows/rows_cmpt", 7 | "cmpt-img-upload": "/cmpts/public/img/img_upload_cmpt" 8 | } 9 | } -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/my/edit/my_edit.wxss: -------------------------------------------------------------------------------- 1 | @import "../../../style/skin.wxss"; 2 | .submit-line { 3 | width: 100%; 4 | } 5 | 6 | .form-group .mobile { 7 | flex: 1; 8 | text-align: left; 9 | } 10 | 11 | .submit-line { 12 | width: 100%; 13 | } 14 | 15 | .form-group .mobile { 16 | flex: 1; 17 | text-align: left; 18 | } -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/admin/enroll/list/admin_enroll_list.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; 2 | @import '../../../../../../style/project/admin_list_style.wxss'; 3 | 4 | page { 5 | background-color: #f8f8f8; 6 | } 7 | 8 | .admin-comm-list .item .info .oprt .btn { 9 | padding:0 10rpx!important; 10 | } -------------------------------------------------------------------------------- /miniprogram/style/project/admin_list_style.wxss: -------------------------------------------------------------------------------- 1 | 2 | .admin-comm-list .item .info .oprt { 3 | padding: 0rpx 0rpx; 4 | display: flex; 5 | justify-content: space-between; 6 | } 7 | 8 | .admin-comm-list .item .info .oprt .btn { 9 | width: 155rpx; 10 | margin-right: 0rpx !important; 11 | height: 60rpx !important; 12 | padding: 0 0rpx; 13 | } -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/admin/enroll/export/admin_enroll_export.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "cmpt-picker-time": "/cmpts/public/picker_time/picker_time_cmpt" 4 | }, 5 | "navigationBarBackgroundColor": "#2499f2", 6 | "navigationBarTextStyle": "white", 7 | "enablePullDownRefresh": true, 8 | "navigationBarTitleText": "后台-预订名单导出" 9 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/public/picker_time/picker_time_cmpt.wxml: -------------------------------------------------------------------------------- 1 | 10 | 11 | -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/admin/news/add/admin_news_add.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "cmpt-img-upload": "/cmpts/public/img/img_upload_cmpt", 4 | "cmpt-form-show": "/cmpts/public/form/form_show/form_show_cmpt" 5 | }, 6 | "navigationBarBackgroundColor": "#2499f2", 7 | "navigationBarTextStyle": "white", 8 | "enablePullDownRefresh": true 9 | } -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/admin/news/edit/admin_news_edit.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "cmpt-img-upload": "/cmpts/public/img/img_upload_cmpt", 4 | "cmpt-form-show": "/cmpts/public/form/form_show/form_show_cmpt" 5 | }, 6 | "navigationBarBackgroundColor": "#2499f2", 7 | "navigationBarTextStyle": "white", 8 | "enablePullDownRefresh": true 9 | } -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/my/reg/my_reg.wxss: -------------------------------------------------------------------------------- 1 | @import "../../../style/skin.wxss"; 2 | .submit-line { 3 | width: 100%; 4 | } 5 | 6 | .form-group .mobile { 7 | flex: 1; 8 | text-align: left; 9 | } 10 | 11 | .submit-line { 12 | width: 100%; 13 | } 14 | 15 | .form-group .mobile { 16 | flex: 1; 17 | text-align: left; 18 | font-size:28rpx; 19 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/public/img/img_upload_cmpt.wxss: -------------------------------------------------------------------------------- 1 | @import "../../../style/base/comm.wxss"; 2 | @import "../../../style/public/project.wxss"; 3 | 4 | .form-group .upload-img .img-no { 5 | position: absolute; 6 | right: 0; 7 | bottom: 0; 8 | border-top-left-radius: 6rpx; 9 | padding: 6rpx 12rpx; 10 | height: 35rpx; 11 | opacity: .9; 12 | } -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/admin/enroll/edit/admin_enroll_edit.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/admin/news/edit/admin_news_edit.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /miniprogram/cmpts/public/form/form_set/field/form_set_field.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "cmpt-picker-multi": "/cmpts/public/picker_multi/picker_multi_cmpt" 4 | }, 5 | "navigationBarBackgroundColor": "#ffffff", 6 | "navigationBarTextStyle": "black", 7 | "enablePullDownRefresh": true, 8 | "backgroundTextStyle": "dark", 9 | "navigationBarTitleText": "后台-字段添加" 10 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/public/poster/wxa-plugin-canvas/index/index.wxss: -------------------------------------------------------------------------------- 1 | .canvas { 2 | width: 750rpx; 3 | height: 750rpx; 4 | } 5 | .canvas.pro { 6 | position: absolute; 7 | bottom: 0; 8 | left: 0; 9 | transform: translate3d(-9999rpx, 0, 0); 10 | } 11 | .canvas.debug { 12 | position: absolute; 13 | bottom: 0; 14 | left: 0; 15 | border: 1rpx solid #ccc; 16 | } -------------------------------------------------------------------------------- /cloudfunctions/mcloud/framework/platform/model/base_model.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Notes: 实体基类 3 | * Date: 2021-03-15 19:20:00 4 | * Ver : CCMiniCloud Framework 2.0.6 ALL RIGHTS RESERVED BY cclinux0730 (wechat) 5 | */ 6 | 7 | 8 | const MultiModel = require('../../../framework/database/multi_model.js'); 9 | 10 | class BaseModel extends MultiModel { 11 | 12 | } 13 | 14 | module.exports = BaseModel; -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/enroll/join/enroll_join.wxss: -------------------------------------------------------------------------------- 1 | @import "../../../../../style/public/detail.wxss"; 2 | @import "../../../style/skin.wxss"; 3 | 4 | .form-group .line-desc { 5 | font-size: 28rpx; 6 | text-align: center; 7 | width: 100%; 8 | color: #666; 9 | } 10 | 11 | .submit-line { 12 | width: 100%; 13 | } 14 | 15 | .title { 16 | font-weight: normal!important; 17 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## 功能 介绍 2 | 3 | 4 | ![输入图片说明](demo/%E4%BA%8C%E7%BB%B4%E7%A0%81.png) 5 | 6 | 中小学校园体育设施开放预约小程序可以提供学生、教职工和社会公众方便的体育场馆使用服务。 7 | 8 | - 1.账户注册与登录: 用户可以通过小程序注册账户,方便预约记录的保存和查询。 9 | - 2.体育场馆信息浏览: 提供学校体育场馆的详细信息,包括开放时间、设施介绍、规定使用费用等。 10 | - 3.预约系统: 用户可以选择预约所需的体育设施,选择日期和时间段,系统实时反馈可用时段。 11 | - 4.预约历史记录: 用户可以查看过去的预约记录,方便追踪自己的活动安排。 12 | - 5.提醒与通知: 小程序可以发送预约成功、取消等通知,提醒用户按时到场或进行变更。 13 | 14 | 15 | -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/admin/setup/about_list/admin_setup_about_list.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; 2 | 3 | page { 4 | background-color: #f8f8f8; 5 | } 6 | 7 | .main-admin { 8 | padding: 40rpx 0; 9 | } 10 | 11 | .admin-comm-list .item { 12 | margin-bottom: 40rpx; 13 | } 14 | 15 | .admin-comm-list .item .header .left { 16 | font-size: 32rpx !important; 17 | } -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/admin/setup/about/admin_setup_about.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; 2 | 3 | .main-admin { 4 | width: 100%; 5 | box-sizing: border-box; 6 | padding: 30rpx 20rpx; 7 | padding-bottom: 200rpx; 8 | } 9 | 10 | .form-group { 11 | padding: 1rpx 1rpx; 12 | overflow: hidden; 13 | } 14 | 15 | .btn-bottom-admin>view { 16 | width: 100%; 17 | } -------------------------------------------------------------------------------- /cloudfunctions/mcloud/project/meetsport/controller/my_controller.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Notes: 用户中心模块控制器 3 | * Date: 2021-03-15 19:20:00 4 | * Ver : CCMiniCloud Framework 2.0.1 ALL RIGHTS RESERVED BY cclinux0730 (wechat) 5 | */ 6 | 7 | const BaseProjectController = require('./base_project_controller.js'); 8 | 9 | class MyController extends BaseProjectController { 10 | 11 | } 12 | 13 | module.exports = MyController; -------------------------------------------------------------------------------- /project.private.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "setting": { 3 | "compileHotReLoad": true, 4 | "urlCheck": false 5 | }, 6 | "description": "项目私有配置文件。此文件中的内容将覆盖 project.config.json 中的相同字段。项目的改动优先同步到此文件中。详见文档:https://developers.weixin.qq.com/miniprogram/dev/devtools/projectconfig.html", 7 | "projectname": "%E6%96%87%E4%BD%93%E5%9C%BA%E6%89%80%E9%A2%84%E8%AE%A2-gitee", 8 | "condition": {}, 9 | "libVersion": "2.17.0" 10 | } -------------------------------------------------------------------------------- /cloudfunctions/mcloud/project/meetsport/model/base_project_model.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Notes: 实体ORM基类 3 | * Date: 2022-03-15 19:20:00 4 | * Ver : CCMiniCloud Framework 2.0.1 ALL RIGHTS RESERVED BY cclinux0730 (wechat) 5 | */ 6 | 7 | 8 | const BaseModel = require('../../../framework/platform/model/base_model.js'); 9 | 10 | class BaseProjectModel extends BaseModel { 11 | 12 | 13 | } 14 | 15 | module.exports = BaseProjectModel; -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/admin/enroll/record/admin_enroll_record.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "time_select": "../../../../cmpts/time_select/time_select_cmpt", 4 | "date_select": "/cmpts/public/calendar/date_select/date_select_cmpt" 5 | }, 6 | "enablePullDownRefresh": true, 7 | "navigationBarBackgroundColor": "#2499f2", 8 | "navigationBarTextStyle": "white", 9 | "navigationBarTitleText": "预订名单" 10 | } -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/admin/enroll/day/admin_enroll_day.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "cmpt-picker-multi": "/cmpts/public/picker_multi/picker_multi_cmpt", 4 | "cmpt-calendar": "/cmpts/public/calendar/calendar_meet/calendar_meet_cmpt" 5 | }, 6 | "enablePullDownRefresh": true, 7 | "navigationBarBackgroundColor": "#2499f2", 8 | "navigationBarTextStyle": "white", 9 | "navigationBarTitleText": "后台-时段设置" 10 | } -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/my/edit/my_edit.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/my/reg/my_reg.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /miniprogram/style/base/nav.wxss: -------------------------------------------------------------------------------- 1 | 2 | /* ================== 3 | 导航栏 4 | ==================== */ 5 | 6 | .tab { 7 | white-space: nowrap; 8 | } 9 | 10 | ::-webkit-scrollbar { 11 | display: none; 12 | } 13 | 14 | .tab .item { 15 | height: 90rpx; 16 | display: inline-block; 17 | line-height: 90rpx; 18 | margin: 0 10rpx; 19 | padding: 0 20rpx; 20 | } 21 | 22 | .tab .item.cur { 23 | border-bottom: 4rpx solid; 24 | } 25 | 26 | -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/news/cate1/news_cate1.js: -------------------------------------------------------------------------------- 1 | let behavior = require('../../../../../comm/behavior/news_index_bh.js'); 2 | const ProjectBiz = require('../../../biz/project_biz.js'); 3 | const NewsBiz = require('../../../biz/news_biz.js'); 4 | 5 | 6 | Page({ 7 | behaviors: [behavior], 8 | 9 | onLoad: function (options) { 10 | ProjectBiz.initPage(this); 11 | this._setCate(NewsBiz.getCateList(), options, 1); 12 | 13 | }, 14 | }) -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/news/cate2/news_cate2.js: -------------------------------------------------------------------------------- 1 | let behavior = require('../../../../../comm/behavior/news_index_bh.js'); 2 | const ProjectBiz = require('../../../biz/project_biz.js'); 3 | const NewsBiz = require('../../../biz/news_biz.js'); 4 | 5 | 6 | Page({ 7 | behaviors: [behavior], 8 | 9 | onLoad: function (options) { 10 | ProjectBiz.initPage(this); 11 | this._setCate(NewsBiz.getCateList(), options, 2); 12 | 13 | }, 14 | }) -------------------------------------------------------------------------------- /cloudfunctions/mcloud/framework/core/app_code.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Notes: 错误代码定义 3 | * Ver : CCMiniCloud Framework 2.4.1 ALL RIGHTS RESERVED BY Cclinux0730 (wechat) 4 | * Date: 2020-09-05 04:00:00 5 | */ 6 | module.exports = { 7 | SUCC: 200, 8 | SVR: 500, // 服务器错误 9 | LOGIC: 1600, //逻辑错误 10 | DATA: 1301, // 数据校验错误 11 | HEADER: 1302, // header 校验错误 12 | 13 | 14 | //2000开始为业务错误代码, 15 | 16 | ADMIN_ERROR: 2401, //管理员错误 17 | WORK_ERROR: 2501 //服务者错误 18 | } -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/news/index/news_index.js: -------------------------------------------------------------------------------- 1 | let behavior = require('../../../../../comm/behavior/news_index_bh.js'); 2 | const ProjectBiz = require('../../../biz/project_biz.js'); 3 | const NewsBiz = require('../../../biz/news_biz.js'); 4 | 5 | Page({ 6 | 7 | behaviors: [behavior], 8 | 9 | onLoad: function (options) { 10 | ProjectBiz.initPage(this); 11 | this._setCate(NewsBiz.getCateList(), options, null); 12 | }, 13 | 14 | 15 | }) -------------------------------------------------------------------------------- /miniprogram/projects/meetsport/pages/news/cate2/news_cate2.wxml: -------------------------------------------------------------------------------- 1 | 2 |