├── miniprogram ├── 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 │ │ │ └── poster_cmpt.wxss │ │ ├── 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 │ │ ├── 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 │ │ ├── form │ │ │ ├── form_set │ │ │ │ ├── form_set_cmpt.json │ │ │ │ ├── field │ │ │ │ │ ├── form_set_field.json │ │ │ │ │ └── form_set_field.wxss │ │ │ │ ├── form_set_cmpt.wxss │ │ │ │ └── form_set_cmpt.wxml │ │ │ └── form_show │ │ │ │ ├── content │ │ │ │ ├── form_show_content.json │ │ │ │ ├── form_show_content.wxml │ │ │ │ └── form_show_content.wxss │ │ │ │ ├── form_show_cmpt.json │ │ │ │ └── form_show_cmpt.wxss │ │ ├── picker_multi │ │ │ ├── picker_multi_cmpt.json │ │ │ ├── picker_multi_cmpt.wxss │ │ │ └── picker_multi_cmpt.wxml │ │ └── calendar │ │ │ ├── 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 ├── pages │ └── test1 │ │ ├── test1.wxml │ │ └── test1.js ├── projects │ └── kidschool │ │ ├── pages │ │ ├── enroll │ │ │ ├── join_edit │ │ │ │ ├── enroll_join_edit.wxss │ │ │ │ ├── enroll_join_edit.wxml │ │ │ │ └── enroll_join_edit.json │ │ │ ├── index │ │ │ │ ├── enroll_index.json │ │ │ │ ├── enroll_index.wxss │ │ │ │ └── enroll_index.wxml │ │ │ ├── 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 │ │ │ └── detail │ │ │ │ └── enroll_detail.json │ │ ├── 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 │ │ │ │ └── user_form.wxml │ │ ├── admin │ │ │ ├── mgr │ │ │ │ ├── add │ │ │ │ │ ├── admin_mgr_add.wxss │ │ │ │ │ ├── admin_mgr_add.json │ │ │ │ │ ├── admin_mgr_add.wxml │ │ │ │ │ └── admin_mgr_add.js │ │ │ │ ├── edit │ │ │ │ │ ├── admin_mgr_edit.wxss │ │ │ │ │ ├── admin_mgr_edit.json │ │ │ │ │ └── admin_mgr_edit.wxml │ │ │ │ ├── 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 │ │ │ ├── album │ │ │ │ ├── edit │ │ │ │ │ ├── admin_album_edit.wxss │ │ │ │ │ ├── admin_album_edit.json │ │ │ │ │ └── admin_album_edit.wxml │ │ │ │ ├── add │ │ │ │ │ ├── admin_album_add.wxss │ │ │ │ │ ├── admin_album_add.wxml │ │ │ │ │ └── admin_album_add.json │ │ │ │ ├── list │ │ │ │ │ ├── admin_album_list.json │ │ │ │ │ └── admin_album_list.wxss │ │ │ │ └── admin_album_form_tpl.wxml │ │ │ ├── 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 │ │ │ │ └── export │ │ │ │ │ ├── admin_enroll_export.json │ │ │ │ │ └── admin_enroll_export.wxss │ │ │ ├── user │ │ │ │ ├── detail │ │ │ │ │ ├── admin_user_detail.wxss │ │ │ │ │ ├── admin_user_detail.json │ │ │ │ │ ├── admin_user_detail.wxml │ │ │ │ │ └── admin_user_detail.js │ │ │ │ ├── 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 │ │ ├── about │ │ │ └── index │ │ │ │ ├── about_index.wxml │ │ │ │ ├── about_index.json │ │ │ │ ├── about_index.wxss │ │ │ │ └── about_index.js │ │ ├── news │ │ │ ├── detail │ │ │ │ ├── news_detail.wxss │ │ │ │ ├── news_detail.json │ │ │ │ └── news_detail.wxml │ │ │ ├── cate1 │ │ │ │ ├── news_cate1.wxss │ │ │ │ ├── news_cate1.json │ │ │ │ ├── news_cate1.wxml │ │ │ │ └── news_cate1.js │ │ │ └── index │ │ │ │ ├── news_index.wxss │ │ │ │ ├── news_index.json │ │ │ │ ├── news_index.wxml │ │ │ │ └── news_index.js │ │ ├── album │ │ │ ├── detail │ │ │ │ ├── album_detail.wxss │ │ │ │ ├── album_detail.json │ │ │ │ └── album_detail.wxml │ │ │ └── index │ │ │ │ ├── album_index.json │ │ │ │ ├── album_index.wxss │ │ │ │ ├── album_index.wxml │ │ │ │ └── album_index.js │ │ ├── default │ │ │ └── index │ │ │ │ ├── default_index.json │ │ │ │ └── default_index.js │ │ └── tpls │ │ │ └── menu_tpl.wxml │ │ ├── images │ │ ├── my.jpg │ │ ├── home.jpg │ │ ├── menu │ │ │ ├── my.png │ │ │ ├── album.png │ │ │ ├── guide.png │ │ │ ├── intro.png │ │ │ ├── news.png │ │ │ ├── enroll.png │ │ │ ├── news_2.png │ │ │ └── news_4.png │ │ └── tabbar │ │ │ ├── my.png │ │ │ ├── album.png │ │ │ ├── enroll.png │ │ │ ├── home.png │ │ │ ├── my_cur.png │ │ │ ├── home_cur.png │ │ │ ├── album_cur.png │ │ │ └── enroll_cur.png │ │ └── biz │ │ ├── project_biz.js │ │ ├── admin_album_biz.js │ │ ├── album_biz.js │ │ ├── enroll_biz.js │ │ ├── admin_news_biz.js │ │ └── admin_enroll_biz.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 │ ├── 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 │ │ ├── base_biz.js │ │ ├── fav_biz.js │ │ ├── foot_biz.js │ │ └── public_biz.js │ └── behavior │ │ ├── my_foot_bh.js │ │ ├── my_fav_bh.js │ │ ├── news_index_bh.js │ │ └── about_bh.js ├── setting │ └── setting.js ├── helper │ ├── form_helper.js │ ├── file_helper.js │ ├── helper.js │ └── cache_helper.js └── app.js ├── 幼儿园招生报名小程序安装使用手册.docx ├── cloudfunctions └── mcloud │ ├── project │ └── kidschool │ │ ├── public │ │ ├── constants.js │ │ └── project_config.js │ │ ├── controller │ │ ├── my_controller.js │ │ ├── base_project_controller.js │ │ ├── admin │ │ │ ├── base_project_admin_controller.js │ │ │ ├── admin_home_controller.js │ │ │ └── admin_setup_controller.js │ │ ├── check_controller.js │ │ ├── home_controller.js │ │ └── album_controller.js │ │ ├── model │ │ ├── base_project_model.js │ │ ├── fav_model.js │ │ ├── album_model.js │ │ ├── news_model.js │ │ ├── user_model.js │ │ ├── enroll_join_model.js │ │ └── enroll_model.js │ │ └── service │ │ ├── admin │ │ └── base_project_admin_service.js │ │ ├── home_service.js │ │ └── news_service.js │ ├── config.json │ ├── index.js │ ├── framework │ ├── utils │ │ ├── constant.js │ │ ├── math_util.js │ │ ├── util.js │ │ └── setup │ │ │ ├── setup_model.js │ │ │ └── setup_util.js │ ├── platform │ │ ├── model │ │ │ ├── base_model.js │ │ │ ├── log_model.js │ │ │ └── admin_model.js │ │ ├── service │ │ │ └── base_service.js │ │ └── controller │ │ │ ├── base_admin_controller.js │ │ │ └── base_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 ├── project.private.config.json └── project.config.json /miniprogram/cmpts/public/poster/wxa-plugin-canvas/poster/index.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /miniprogram/app.wxss: -------------------------------------------------------------------------------- 1 | @import "style/base/comm.wxss"; 2 | @import "style/public/project.wxss"; 3 | -------------------------------------------------------------------------------- /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 | } -------------------------------------------------------------------------------- /幼儿园招生报名小程序安装使用手册.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yixuandouyin/KidEnroll/HEAD/幼儿园招生报名小程序安装使用手册.docx -------------------------------------------------------------------------------- /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/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/pages/test1/test1.wxml: -------------------------------------------------------------------------------- 1 | 2 | pages/test1/test1.wxml 3 | -------------------------------------------------------------------------------- /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/projects/kidschool/pages/enroll/join_edit/enroll_join_edit.wxss: -------------------------------------------------------------------------------- 1 | @import "../join/enroll_join.wxss"; -------------------------------------------------------------------------------- /miniprogram/projects/kidschool/pages/search/search.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/images/cover.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yixuandouyin/KidEnroll/HEAD/miniprogram/images/cover.gif -------------------------------------------------------------------------------- /miniprogram/projects/kidschool/pages/enroll/join_edit/enroll_join_edit.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /miniprogram/projects/kidschool/pages/my/fav/my_fav.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /miniprogram/projects/kidschool/pages/admin/mgr/add/admin_mgr_add.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; -------------------------------------------------------------------------------- /miniprogram/projects/kidschool/pages/admin/mgr/edit/admin_mgr_edit.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; -------------------------------------------------------------------------------- /miniprogram/projects/kidschool/pages/admin/mgr/pwd/admin_mgr_pwd.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; -------------------------------------------------------------------------------- /miniprogram/projects/kidschool/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/projects/kidschool/pages/about/index/about_index.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /miniprogram/projects/kidschool/pages/admin/album/edit/admin_album_edit.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; -------------------------------------------------------------------------------- /miniprogram/projects/kidschool/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/kidschool/pages/admin/album/add/admin_album_add.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; 2 | -------------------------------------------------------------------------------- /miniprogram/projects/kidschool/pages/admin/enroll/add/admin_enroll_add.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; 2 | -------------------------------------------------------------------------------- /miniprogram/projects/kidschool/pages/admin/enroll/edit/admin_enroll_edit.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; -------------------------------------------------------------------------------- /miniprogram/projects/kidschool/pages/admin/mgr/list/admin_mgr_list.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; 2 | -------------------------------------------------------------------------------- /miniprogram/projects/kidschool/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/kidschool/pages/search/search.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "navigationBarTitleText": "搜索" 5 | } -------------------------------------------------------------------------------- /miniprogram/projects/kidschool/images/my.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yixuandouyin/KidEnroll/HEAD/miniprogram/projects/kidschool/images/my.jpg -------------------------------------------------------------------------------- /miniprogram/projects/kidschool/pages/about/index/about_index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "enablePullDownRefresh": true 5 | } -------------------------------------------------------------------------------- /miniprogram/projects/kidschool/pages/search/search.wxss: -------------------------------------------------------------------------------- 1 | @import "../../style/skin.wxss"; 2 | @import "../../../../style/project/search_style.wxss"; -------------------------------------------------------------------------------- /cloudfunctions/mcloud/project/kidschool/public/constants.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | // 首页推荐 3 | SETUP_HOME_VOUCH_KEY : 'SETUP_HOME_VOUCH_KEY', 4 | } -------------------------------------------------------------------------------- /miniprogram/projects/kidschool/images/home.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yixuandouyin/KidEnroll/HEAD/miniprogram/projects/kidschool/images/home.jpg -------------------------------------------------------------------------------- /miniprogram/cmpts/public/poster/images/friend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yixuandouyin/KidEnroll/HEAD/miniprogram/cmpts/public/poster/images/friend.png -------------------------------------------------------------------------------- /miniprogram/cmpts/public/poster/images/wechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yixuandouyin/KidEnroll/HEAD/miniprogram/cmpts/public/poster/images/wechat.png -------------------------------------------------------------------------------- /miniprogram/cmpts/public/poster/poster_cmpt.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "poster": "./wxa-plugin-canvas/poster" 5 | } 6 | } -------------------------------------------------------------------------------- /miniprogram/projects/kidschool/images/menu/my.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yixuandouyin/KidEnroll/HEAD/miniprogram/projects/kidschool/images/menu/my.png -------------------------------------------------------------------------------- /miniprogram/projects/kidschool/pages/news/detail/news_detail.wxss: -------------------------------------------------------------------------------- 1 | @import "../../../../../style/public/detail.wxss"; 2 | @import "../../../style/skin.wxss"; -------------------------------------------------------------------------------- /cloudfunctions/mcloud/project/kidschool/public/project_config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | // ## 缓存相关 3 | CACHE_CALENDAR_TIME: 60 * 30, //日历缓存 4 | 5 | } -------------------------------------------------------------------------------- /miniprogram/projects/kidschool/images/menu/album.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yixuandouyin/KidEnroll/HEAD/miniprogram/projects/kidschool/images/menu/album.png -------------------------------------------------------------------------------- /miniprogram/projects/kidschool/images/menu/guide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yixuandouyin/KidEnroll/HEAD/miniprogram/projects/kidschool/images/menu/guide.png -------------------------------------------------------------------------------- /miniprogram/projects/kidschool/images/menu/intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yixuandouyin/KidEnroll/HEAD/miniprogram/projects/kidschool/images/menu/intro.png -------------------------------------------------------------------------------- /miniprogram/projects/kidschool/images/menu/news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yixuandouyin/KidEnroll/HEAD/miniprogram/projects/kidschool/images/menu/news.png -------------------------------------------------------------------------------- /miniprogram/projects/kidschool/images/tabbar/my.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yixuandouyin/KidEnroll/HEAD/miniprogram/projects/kidschool/images/tabbar/my.png -------------------------------------------------------------------------------- /miniprogram/projects/kidschool/pages/album/detail/album_detail.wxss: -------------------------------------------------------------------------------- 1 | @import "../../../../../style/public/detail.wxss"; 2 | @import "../../../style/skin.wxss"; -------------------------------------------------------------------------------- /miniprogram/projects/kidschool/pages/news/cate1/news_cate1.wxss: -------------------------------------------------------------------------------- 1 | @import "../../../../../style/public/comm_box_list.wxss"; 2 | @import "../../../style/skin.wxss"; -------------------------------------------------------------------------------- /miniprogram/projects/kidschool/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/kidschool/images/menu/enroll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yixuandouyin/KidEnroll/HEAD/miniprogram/projects/kidschool/images/menu/enroll.png -------------------------------------------------------------------------------- /miniprogram/projects/kidschool/images/menu/news_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yixuandouyin/KidEnroll/HEAD/miniprogram/projects/kidschool/images/menu/news_2.png -------------------------------------------------------------------------------- /miniprogram/projects/kidschool/images/menu/news_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yixuandouyin/KidEnroll/HEAD/miniprogram/projects/kidschool/images/menu/news_4.png -------------------------------------------------------------------------------- /miniprogram/projects/kidschool/images/tabbar/album.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yixuandouyin/KidEnroll/HEAD/miniprogram/projects/kidschool/images/tabbar/album.png -------------------------------------------------------------------------------- /miniprogram/projects/kidschool/images/tabbar/enroll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yixuandouyin/KidEnroll/HEAD/miniprogram/projects/kidschool/images/tabbar/enroll.png -------------------------------------------------------------------------------- /miniprogram/projects/kidschool/images/tabbar/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yixuandouyin/KidEnroll/HEAD/miniprogram/projects/kidschool/images/tabbar/home.png -------------------------------------------------------------------------------- /miniprogram/projects/kidschool/images/tabbar/my_cur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yixuandouyin/KidEnroll/HEAD/miniprogram/projects/kidschool/images/tabbar/my_cur.png -------------------------------------------------------------------------------- /miniprogram/projects/kidschool/pages/about/index/about_index.wxss: -------------------------------------------------------------------------------- 1 | @import "../../../../../style/public/detail.wxss"; 2 | @import "../../../style/skin.wxss"; 3 | -------------------------------------------------------------------------------- /miniprogram/projects/kidschool/pages/my/fav/my_fav.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "enablePullDownRefresh": true, 4 | "navigationBarTitleText": "我的收藏" 5 | } -------------------------------------------------------------------------------- /miniprogram/projects/kidschool/pages/my/foot/my_foot.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "enablePullDownRefresh": true, 4 | "navigationBarTitleText": "历史浏览" 5 | } -------------------------------------------------------------------------------- /miniprogram/projects/kidschool/images/tabbar/home_cur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yixuandouyin/KidEnroll/HEAD/miniprogram/projects/kidschool/images/tabbar/home_cur.png -------------------------------------------------------------------------------- /miniprogram/projects/kidschool/pages/news/cate1/news_cate1.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "disableScroll": true, 5 | "navigationBarTitleText": "资讯" 6 | } -------------------------------------------------------------------------------- /miniprogram/projects/kidschool/pages/news/index/news_index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "disableScroll": true, 5 | "navigationBarTitleText": "资讯" 6 | } -------------------------------------------------------------------------------- /miniprogram/projects/kidschool/images/tabbar/album_cur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yixuandouyin/KidEnroll/HEAD/miniprogram/projects/kidschool/images/tabbar/album_cur.png -------------------------------------------------------------------------------- /miniprogram/projects/kidschool/images/tabbar/enroll_cur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yixuandouyin/KidEnroll/HEAD/miniprogram/projects/kidschool/images/tabbar/enroll_cur.png -------------------------------------------------------------------------------- /miniprogram/projects/kidschool/pages/album/index/album_index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "disableScroll": true, 5 | "navigationBarTitleText": "多彩校园" 6 | } -------------------------------------------------------------------------------- /miniprogram/projects/kidschool/pages/enroll/index/enroll_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/kidschool/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/kidschool/pages/enroll/my_join_list/enroll_my_join_list.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "disableScroll": true, 5 | "navigationBarTitleText": "我的报名" 6 | } -------------------------------------------------------------------------------- /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/kidschool/pages/enroll/my_join_detail/enroll_my_join_detail.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "enablePullDownRefresh": true, 5 | "navigationBarTitleText": "我的报名详情" 6 | } -------------------------------------------------------------------------------- /miniprogram/projects/kidschool/pages/my/index/my_index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | 4 | }, 5 | "navigationStyle": "custom", 6 | "enablePullDownRefresh": true, 7 | "navigationBarTitleText": "我的" 8 | } -------------------------------------------------------------------------------- /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/kidschool/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/kidschool/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 | } -------------------------------------------------------------------------------- /miniprogram/projects/kidschool/pages/default/index/default_index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "enablePullDownRefresh": true, 5 | "navigationStyle": "custom", 6 | "navigationBarTitleText": "首页" 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/kidschool/pages/admin/mgr/add/admin_mgr_add.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "navigationBarBackgroundColor": "#2499f2", 4 | "navigationBarTextStyle": "white", 5 | "navigationBarTitleText": "添加管理员" 6 | } -------------------------------------------------------------------------------- /miniprogram/projects/kidschool/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/kidschool/pages/admin/album/list/admin_album_list.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "navigationBarBackgroundColor": "#2499f2", 5 | "navigationBarTextStyle": "white", 6 | "disableScroll": true 7 | } -------------------------------------------------------------------------------- /miniprogram/projects/kidschool/pages/admin/enroll/list/admin_enroll_list.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "navigationBarBackgroundColor": "#2499f2", 5 | "navigationBarTextStyle": "white", 6 | "disableScroll": true 7 | } -------------------------------------------------------------------------------- /miniprogram/projects/kidschool/pages/admin/mgr/list/admin_mgr_list.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "navigationBarBackgroundColor": "#2499f2", 4 | "navigationBarTextStyle": "white", 5 | "navigationBarTitleText": "管理员管理" 6 | } -------------------------------------------------------------------------------- /miniprogram/projects/kidschool/pages/admin/mgr/pwd/admin_mgr_pwd.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "navigationBarBackgroundColor": "#2499f2", 4 | "navigationBarTextStyle": "white", 5 | "navigationBarTitleText": "管理员密码修改" 6 | } -------------------------------------------------------------------------------- /miniprogram/projects/kidschool/pages/album/detail/album_detail.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "cmpt-detail": "/cmpts/biz/detail/detail_cmpt" 4 | }, 5 | "enablePullDownRefresh": true, 6 | "navigationBarTitleText": "校园详情" 7 | } -------------------------------------------------------------------------------- /miniprogram/projects/kidschool/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/kidschool/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/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-img-upload": "/cmpts/public/img/img_upload_cmpt" 6 | } 7 | } -------------------------------------------------------------------------------- /miniprogram/projects/kidschool/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/kidschool/pages/admin/album/list/admin_album_list.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; 2 | @import '../../../../../../style/project/admin_list_style.wxss'; 3 | page { 4 | background-color: #f8f8f8; 5 | } 6 | -------------------------------------------------------------------------------- /miniprogram/projects/kidschool/pages/admin/enroll/list/admin_enroll_list.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; 2 | @import '../../../../../../style/project/admin_list_style.wxss'; 3 | page { 4 | background-color: #f8f8f8; 5 | } 6 | -------------------------------------------------------------------------------- /miniprogram/projects/kidschool/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/kidschool/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/kidschool/pages/news/index/news_index.wxml: -------------------------------------------------------------------------------- 1 | 2 |