├── 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 │ │ ├── radio │ │ │ ├── radio_cmpt.json │ │ │ ├── radio_cmpt.wxml │ │ │ └── radio_cmpt.wxss │ │ ├── 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_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 │ │ │ ├── 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 ├── projects │ └── house │ │ ├── pages │ │ ├── task │ │ │ ├── edit │ │ │ │ ├── task_edit.wxss │ │ │ │ ├── task_edit.wxml │ │ │ │ └── task_edit.json │ │ │ ├── my_list │ │ │ │ ├── task_my_list.json │ │ │ │ └── task_my_list.wxss │ │ │ └── add │ │ │ │ ├── task_add.json │ │ │ │ ├── task_add.wxss │ │ │ │ └── task_add.wxml │ │ ├── admin │ │ │ ├── vote │ │ │ │ ├── edit │ │ │ │ │ ├── admin_vote_edit.wxss │ │ │ │ │ ├── admin_vote_edit.wxml │ │ │ │ │ └── admin_vote_edit.json │ │ │ │ ├── list │ │ │ │ │ ├── admin_vote_list.json │ │ │ │ │ └── admin_vote_list.wxss │ │ │ │ └── add │ │ │ │ │ ├── admin_vote_add.wxml │ │ │ │ │ ├── admin_vote_add.wxss │ │ │ │ │ └── admin_vote_add.json │ │ │ ├── mgr │ │ │ │ ├── add │ │ │ │ │ ├── admin_mgr_add.wxss │ │ │ │ │ ├── admin_mgr_add.json │ │ │ │ │ ├── admin_mgr_add.wxml │ │ │ │ │ └── admin_mgr_add.js │ │ │ │ ├── pwd │ │ │ │ │ ├── admin_mgr_pwd.wxss │ │ │ │ │ ├── admin_mgr_pwd.json │ │ │ │ │ ├── admin_mgr_pwd.wxml │ │ │ │ │ └── admin_mgr_pwd.js │ │ │ │ ├── edit │ │ │ │ │ ├── admin_mgr_edit.wxss │ │ │ │ │ ├── admin_mgr_edit.json │ │ │ │ │ └── admin_mgr_edit.wxml │ │ │ │ ├── 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 │ │ │ ├── activity │ │ │ │ ├── add │ │ │ │ │ ├── admin_activity_add.wxss │ │ │ │ │ ├── admin_activity_add.wxml │ │ │ │ │ └── admin_activity_add.json │ │ │ │ ├── edit │ │ │ │ │ ├── admin_activity_edit.wxss │ │ │ │ │ ├── admin_activity_edit.wxml │ │ │ │ │ └── admin_activity_edit.json │ │ │ │ ├── list │ │ │ │ │ ├── admin_activity_list.json │ │ │ │ │ └── admin_activity_list.wxss │ │ │ │ ├── join_list │ │ │ │ │ └── admin_activity_join_list.json │ │ │ │ ├── export │ │ │ │ │ ├── admin_activity_export.json │ │ │ │ │ └── admin_activity_export.wxss │ │ │ │ ├── self │ │ │ │ │ ├── admin_activity_self.json │ │ │ │ │ ├── admin_activity_self.wxss │ │ │ │ │ └── admin_activity_self.wxml │ │ │ │ └── scan │ │ │ │ │ ├── admin_activity_scan.json │ │ │ │ │ ├── admin_activity_scan.wxml │ │ │ │ │ └── admin_activity_scan.wxss │ │ │ ├── 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 │ │ │ ├── task │ │ │ │ ├── detail │ │ │ │ │ ├── admin_task_detail.wxss │ │ │ │ │ ├── admin_task_detail.json │ │ │ │ │ └── admin_task_detail.wxml │ │ │ │ ├── list │ │ │ │ │ ├── admin_task_list.json │ │ │ │ │ └── admin_task_list.wxss │ │ │ │ └── export │ │ │ │ │ ├── admin_task_export.json │ │ │ │ │ └── admin_task_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 │ │ ├── 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 │ │ ├── search │ │ │ ├── search.wxml │ │ │ ├── search.json │ │ │ ├── search.wxss │ │ │ └── search.js │ │ ├── about │ │ │ └── index │ │ │ │ ├── about_index.wxml │ │ │ │ ├── about_index.json │ │ │ │ ├── about_index.wxss │ │ │ │ └── about_index.js │ │ ├── activity │ │ │ ├── my_join_self │ │ │ │ ├── activity_my_join_self.wxml │ │ │ │ ├── activity_my_join_self.json │ │ │ │ ├── activity_my_join_self.wxss │ │ │ │ └── activity_my_join_self.js │ │ │ ├── index │ │ │ │ └── activity_index.json │ │ │ ├── my_join_list │ │ │ │ ├── activity_my_join_list.json │ │ │ │ └── activity_my_join_list.wxss │ │ │ ├── my_join_detail │ │ │ │ └── activity_my_join_detail.json │ │ │ ├── detail │ │ │ │ └── activity_detail.json │ │ │ └── join │ │ │ │ ├── activity_join.json │ │ │ │ ├── activity_join.wxss │ │ │ │ └── activity_join.wxml │ │ ├── news │ │ │ ├── detail │ │ │ │ ├── news_detail.wxss │ │ │ │ ├── news_detail.json │ │ │ │ └── news_detail.wxml │ │ │ └── index │ │ │ │ ├── news_index.wxss │ │ │ │ ├── news_index.json │ │ │ │ ├── news_index.wxml │ │ │ │ └── news_index.js │ │ ├── vote │ │ │ ├── index │ │ │ │ ├── vote_index.json │ │ │ │ └── vote_index.js │ │ │ ├── my_join_list │ │ │ │ ├── vote_my_join_list.wxss │ │ │ │ ├── vote_my_join_list.json │ │ │ │ └── vote_my_join_list.wxml │ │ │ └── detail │ │ │ │ └── vote_detail.json │ │ ├── default │ │ │ └── index │ │ │ │ ├── default_index.json │ │ │ │ └── default_index.js │ │ └── tpls │ │ │ └── menu_tpl.wxml │ │ ├── images │ │ ├── menu │ │ │ ├── home.png │ │ │ ├── my.png │ │ │ ├── rule.png │ │ │ ├── vote.png │ │ │ ├── wei.png │ │ │ ├── board.png │ │ │ ├── repair.png │ │ │ └── activity.png │ │ ├── my │ │ │ ├── task.png │ │ │ ├── task_0.png │ │ │ ├── task_1.png │ │ │ ├── task_2.png │ │ │ └── service.png │ │ ├── tabbar │ │ │ ├── my.png │ │ │ ├── task.png │ │ │ ├── my_cur.png │ │ │ ├── service.png │ │ │ ├── activity.png │ │ │ ├── task_cur.png │ │ │ ├── activity_cur.png │ │ │ └── service_cur.png │ │ ├── home │ │ │ ├── board.png │ │ │ ├── cute_1.jpg │ │ │ ├── cute_2.jpg │ │ │ ├── cute_3.jpg │ │ │ └── cute_4.jpg │ │ ├── default_index_bg.jpg │ │ └── default_index_bg.png │ │ └── biz │ │ ├── vote_biz.js │ │ ├── project_biz.js │ │ ├── task_biz.js │ │ └── admin_news_biz.js ├── app.wxss ├── pages │ └── test1 │ │ ├── test1.wxml │ │ └── test1.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 │ │ ├── base_biz.js │ │ ├── fav_biz.js │ │ └── foot_biz.js │ └── behavior │ │ ├── my_foot_bh.js │ │ ├── news_index_bh.js │ │ ├── my_fav_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 │ └── house │ │ ├── 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 │ │ ├── model │ │ ├── base_project_model.js │ │ ├── fav_model.js │ │ ├── vote_join_model.js │ │ ├── task_model.js │ │ ├── news_model.js │ │ ├── user_model.js │ │ ├── activity_join_model.js │ │ └── vote_model.js │ │ └── service │ │ ├── admin │ │ ├── base_project_admin_service.js │ │ └── admin_setup_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 │ ├── 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 ├── project.private.config.json └── project.config.json /miniprogram/cmpts/public/poster/wxa-plugin-canvas/poster/index.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /miniprogram/projects/house/pages/task/edit/task_edit.wxss: -------------------------------------------------------------------------------- 1 | @import "../add/task_add.wxss"; -------------------------------------------------------------------------------- /智慧物业小程序安装使用手册.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newboys111/njucard/HEAD/智慧物业小程序安装使用手册.docx -------------------------------------------------------------------------------- /miniprogram/app.wxss: -------------------------------------------------------------------------------- 1 | @import "style/base/comm.wxss"; 2 | @import "style/public/project.wxss"; 3 | -------------------------------------------------------------------------------- /miniprogram/projects/house/pages/task/edit/task_edit.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/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/pages/test1/test1.wxml: -------------------------------------------------------------------------------- 1 | 2 | pages/test1/test1.wxml 3 | -------------------------------------------------------------------------------- /miniprogram/projects/house/pages/admin/vote/edit/admin_vote_edit.wxss: -------------------------------------------------------------------------------- 1 | @import '../add/admin_vote_add.wxss'; -------------------------------------------------------------------------------- /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/newboys111/njucard/HEAD/miniprogram/images/cover.gif -------------------------------------------------------------------------------- /miniprogram/projects/house/pages/my/fav/my_fav.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /miniprogram/projects/house/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/projects/house/pages/admin/mgr/add/admin_mgr_add.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; -------------------------------------------------------------------------------- /miniprogram/projects/house/pages/admin/mgr/pwd/admin_mgr_pwd.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; -------------------------------------------------------------------------------- /miniprogram/projects/house/pages/my/foot/my_foot.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /miniprogram/projects/house/pages/about/index/about_index.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /miniprogram/projects/house/pages/admin/mgr/edit/admin_mgr_edit.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; -------------------------------------------------------------------------------- /miniprogram/projects/house/pages/admin/news/edit/admin_news_edit.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; -------------------------------------------------------------------------------- /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/house/pages/admin/mgr/list/admin_mgr_list.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; 2 | -------------------------------------------------------------------------------- /miniprogram/projects/house/pages/admin/news/add/admin_news_add.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; 2 | -------------------------------------------------------------------------------- /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/house/pages/admin/activity/add/admin_activity_add.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; 2 | -------------------------------------------------------------------------------- /miniprogram/projects/house/pages/admin/activity/edit/admin_activity_edit.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; -------------------------------------------------------------------------------- /miniprogram/projects/house/pages/search/search.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "navigationBarTitleText": "搜索" 5 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/public/swiper/swiper_cmpt.wxss: -------------------------------------------------------------------------------- 1 | .swiper { 2 | width: 100%; 3 | } 4 | .swiper-item-images { 5 | width: 100%; 6 | } -------------------------------------------------------------------------------- /miniprogram/projects/house/pages/about/index/about_index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "enablePullDownRefresh": true 5 | } -------------------------------------------------------------------------------- /miniprogram/projects/house/pages/activity/my_join_self/activity_my_join_self.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /miniprogram/projects/house/pages/search/search.wxss: -------------------------------------------------------------------------------- 1 | @import "../../style/skin.wxss"; 2 | @import "../../../../style/project/search_style.wxss"; -------------------------------------------------------------------------------- /cloudfunctions/mcloud/project/house/public/constants.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | // 首页推荐 3 | SETUP_HOME_VOUCH_KEY : 'SETUP_HOME_VOUCH_KEY', 4 | } -------------------------------------------------------------------------------- /miniprogram/projects/house/images/menu/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newboys111/njucard/HEAD/miniprogram/projects/house/images/menu/home.png -------------------------------------------------------------------------------- /miniprogram/projects/house/images/menu/my.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newboys111/njucard/HEAD/miniprogram/projects/house/images/menu/my.png -------------------------------------------------------------------------------- /miniprogram/projects/house/images/menu/rule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newboys111/njucard/HEAD/miniprogram/projects/house/images/menu/rule.png -------------------------------------------------------------------------------- /miniprogram/projects/house/images/menu/vote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newboys111/njucard/HEAD/miniprogram/projects/house/images/menu/vote.png -------------------------------------------------------------------------------- /miniprogram/projects/house/images/menu/wei.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newboys111/njucard/HEAD/miniprogram/projects/house/images/menu/wei.png -------------------------------------------------------------------------------- /miniprogram/projects/house/images/my/task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newboys111/njucard/HEAD/miniprogram/projects/house/images/my/task.png -------------------------------------------------------------------------------- /miniprogram/projects/house/images/my/task_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newboys111/njucard/HEAD/miniprogram/projects/house/images/my/task_0.png -------------------------------------------------------------------------------- /miniprogram/projects/house/images/my/task_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newboys111/njucard/HEAD/miniprogram/projects/house/images/my/task_1.png -------------------------------------------------------------------------------- /miniprogram/projects/house/images/my/task_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newboys111/njucard/HEAD/miniprogram/projects/house/images/my/task_2.png -------------------------------------------------------------------------------- /miniprogram/projects/house/images/tabbar/my.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newboys111/njucard/HEAD/miniprogram/projects/house/images/tabbar/my.png -------------------------------------------------------------------------------- /miniprogram/cmpts/public/poster/images/friend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newboys111/njucard/HEAD/miniprogram/cmpts/public/poster/images/friend.png -------------------------------------------------------------------------------- /miniprogram/cmpts/public/poster/images/wechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newboys111/njucard/HEAD/miniprogram/cmpts/public/poster/images/wechat.png -------------------------------------------------------------------------------- /miniprogram/projects/house/images/home/board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newboys111/njucard/HEAD/miniprogram/projects/house/images/home/board.png -------------------------------------------------------------------------------- /miniprogram/projects/house/images/home/cute_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newboys111/njucard/HEAD/miniprogram/projects/house/images/home/cute_1.jpg -------------------------------------------------------------------------------- /miniprogram/projects/house/images/home/cute_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newboys111/njucard/HEAD/miniprogram/projects/house/images/home/cute_2.jpg -------------------------------------------------------------------------------- /miniprogram/projects/house/images/home/cute_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newboys111/njucard/HEAD/miniprogram/projects/house/images/home/cute_3.jpg -------------------------------------------------------------------------------- /miniprogram/projects/house/images/home/cute_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newboys111/njucard/HEAD/miniprogram/projects/house/images/home/cute_4.jpg -------------------------------------------------------------------------------- /miniprogram/projects/house/images/menu/board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newboys111/njucard/HEAD/miniprogram/projects/house/images/menu/board.png -------------------------------------------------------------------------------- /miniprogram/projects/house/images/menu/repair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newboys111/njucard/HEAD/miniprogram/projects/house/images/menu/repair.png -------------------------------------------------------------------------------- /miniprogram/projects/house/images/my/service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newboys111/njucard/HEAD/miniprogram/projects/house/images/my/service.png -------------------------------------------------------------------------------- /miniprogram/projects/house/images/tabbar/task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newboys111/njucard/HEAD/miniprogram/projects/house/images/tabbar/task.png -------------------------------------------------------------------------------- /miniprogram/projects/house/pages/news/detail/news_detail.wxss: -------------------------------------------------------------------------------- 1 | @import "../../../../../style/public/detail.wxss"; 2 | @import "../../../style/skin.wxss"; -------------------------------------------------------------------------------- /cloudfunctions/mcloud/project/house/public/project_config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | // ## 缓存相关 3 | CACHE_CALENDAR_TIME: 60 * 30, //日历缓存 4 | 5 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/public/poster/poster_cmpt.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "poster": "./wxa-plugin-canvas/poster" 5 | } 6 | } -------------------------------------------------------------------------------- /miniprogram/projects/house/images/menu/activity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newboys111/njucard/HEAD/miniprogram/projects/house/images/menu/activity.png -------------------------------------------------------------------------------- /miniprogram/projects/house/images/tabbar/my_cur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newboys111/njucard/HEAD/miniprogram/projects/house/images/tabbar/my_cur.png -------------------------------------------------------------------------------- /miniprogram/projects/house/images/tabbar/service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newboys111/njucard/HEAD/miniprogram/projects/house/images/tabbar/service.png -------------------------------------------------------------------------------- /miniprogram/projects/house/pages/news/index/news_index.wxss: -------------------------------------------------------------------------------- 1 | @import "../../../../../style/public/comm_box_list.wxss"; 2 | @import "../../../style/skin.wxss"; -------------------------------------------------------------------------------- /miniprogram/projects/house/images/default_index_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newboys111/njucard/HEAD/miniprogram/projects/house/images/default_index_bg.jpg -------------------------------------------------------------------------------- /miniprogram/projects/house/images/default_index_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newboys111/njucard/HEAD/miniprogram/projects/house/images/default_index_bg.png -------------------------------------------------------------------------------- /miniprogram/projects/house/images/tabbar/activity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newboys111/njucard/HEAD/miniprogram/projects/house/images/tabbar/activity.png -------------------------------------------------------------------------------- /miniprogram/projects/house/images/tabbar/task_cur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newboys111/njucard/HEAD/miniprogram/projects/house/images/tabbar/task_cur.png -------------------------------------------------------------------------------- /miniprogram/projects/house/pages/about/index/about_index.wxss: -------------------------------------------------------------------------------- 1 | @import "../../../../../style/public/detail.wxss"; 2 | @import "../../../style/skin.wxss"; 3 | -------------------------------------------------------------------------------- /miniprogram/projects/house/pages/my/fav/my_fav.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "enablePullDownRefresh": true, 4 | "navigationBarTitleText": "我的收藏" 5 | } -------------------------------------------------------------------------------- /miniprogram/projects/house/pages/my/foot/my_foot.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "enablePullDownRefresh": true, 4 | "navigationBarTitleText": "历史浏览" 5 | } -------------------------------------------------------------------------------- /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/house/images/tabbar/activity_cur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newboys111/njucard/HEAD/miniprogram/projects/house/images/tabbar/activity_cur.png -------------------------------------------------------------------------------- /miniprogram/projects/house/images/tabbar/service_cur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newboys111/njucard/HEAD/miniprogram/projects/house/images/tabbar/service_cur.png -------------------------------------------------------------------------------- /miniprogram/projects/house/pages/activity/my_join_self/activity_my_join_self.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "navigationBarTitleText": "活动自助签到" 5 | } -------------------------------------------------------------------------------- /miniprogram/projects/house/pages/news/index/news_index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "disableScroll": true, 5 | "navigationBarTitleText": "资讯" 6 | } -------------------------------------------------------------------------------- /miniprogram/projects/house/pages/my/index/my_index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | 4 | }, 5 | "enablePullDownRefresh": true, 6 | "navigationBarTitleText": "我的" 7 | } -------------------------------------------------------------------------------- /miniprogram/projects/house/pages/vote/index/vote_index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "disableScroll": true, 5 | "navigationBarTitleText": "业主投票" 6 | } -------------------------------------------------------------------------------- /miniprogram/projects/house/pages/vote/my_join_list/vote_my_join_list.wxss: -------------------------------------------------------------------------------- 1 | @import "../../../../../style/public/article_list.wxss"; 2 | @import "../../../style/skin.wxss"; -------------------------------------------------------------------------------- /miniprogram/projects/house/pages/activity/index/activity_index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "disableScroll": true, 5 | "navigationBarTitleText": "社区活动" 6 | } -------------------------------------------------------------------------------- /miniprogram/projects/house/pages/task/my_list/task_my_list.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/house/pages/admin/user/detail/admin_user_detail.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; 2 | 3 | .main-admin { 4 | padding: 30rpx 0rpx; 5 | } -------------------------------------------------------------------------------- /miniprogram/projects/house/pages/vote/my_join_list/vote_my_join_list.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "enablePullDownRefresh": true, 4 | "navigationBarTitleText": "我的投票" 5 | } -------------------------------------------------------------------------------- /cloudfunctions/mcloud/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "permissions": { 3 | "openapi": ["wxacode.getUnlimited", "security.imgSecCheck", "security.msgSecCheck","serviceMarket.invokeService"] 4 | } 5 | } -------------------------------------------------------------------------------- /miniprogram/projects/house/pages/activity/my_join_list/activity_my_join_list.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "disableScroll": true, 5 | "navigationBarTitleText": "我的活动报名" 6 | } -------------------------------------------------------------------------------- /miniprogram/projects/house/pages/activity/my_join_self/activity_my_join_self.wxss: -------------------------------------------------------------------------------- 1 | @import "../../../style/skin.wxss"; 2 | .load.loading::after { 3 | content: "活动自助签到中,请稍候..."; 4 | } 5 | -------------------------------------------------------------------------------- /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/house/pages/activity/my_join_detail/activity_my_join_detail.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "enablePullDownRefresh": true, 5 | "navigationBarTitleText": "我的报名详情" 6 | } -------------------------------------------------------------------------------- /miniprogram/projects/house/pages/task/add/task_add.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "cmpt-form-show": "/cmpts/public/form/form_show/form_show_cmpt" 4 | }, 5 | "navigationBarTitleText": "报事报修" 6 | } -------------------------------------------------------------------------------- /miniprogram/projects/house/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"; -------------------------------------------------------------------------------- /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/house/pages/default/index/default_index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "enablePullDownRefresh": true, 5 | "navigationStyle": "custom", 6 | "navigationBarTitleText": "首页" 7 | } -------------------------------------------------------------------------------- /miniprogram/projects/house/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/house/pages/admin/mgr/add/admin_mgr_add.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "navigationBarBackgroundColor": "#2499f2", 4 | "navigationBarTextStyle": "white", 5 | "navigationBarTitleText": "添加管理员" 6 | } -------------------------------------------------------------------------------- /miniprogram/projects/house/pages/admin/news/list/admin_news_list.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "navigationBarBackgroundColor": "#2499f2", 5 | "navigationBarTextStyle": "white", 6 | "disableScroll": true 7 | } -------------------------------------------------------------------------------- /miniprogram/projects/house/pages/admin/vote/list/admin_vote_list.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "navigationBarBackgroundColor": "#2499f2", 5 | "navigationBarTextStyle": "white", 6 | "disableScroll": true 7 | } -------------------------------------------------------------------------------- /miniprogram/projects/house/pages/admin/mgr/list/admin_mgr_list.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "navigationBarBackgroundColor": "#2499f2", 4 | "navigationBarTextStyle": "white", 5 | "navigationBarTitleText": "管理员管理" 6 | } -------------------------------------------------------------------------------- /miniprogram/projects/house/pages/admin/mgr/pwd/admin_mgr_pwd.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "navigationBarBackgroundColor": "#2499f2", 4 | "navigationBarTextStyle": "white", 5 | "navigationBarTitleText": "管理员密码修改" 6 | } -------------------------------------------------------------------------------- /miniprogram/projects/house/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/house/pages/vote/detail/vote_detail.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "cmpt-detail": "/cmpts/biz/detail/detail_cmpt" 4 | }, 5 | "enablePullDownRefresh": true, 6 | "navigationBarTitleText": "投票详情" 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/house/pages/activity/detail/activity_detail.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "cmpt-detail": "/cmpts/biz/detail/detail_cmpt" 4 | }, 5 | "enablePullDownRefresh": true, 6 | "navigationBarTitleText": "" 7 | } -------------------------------------------------------------------------------- /miniprogram/projects/house/pages/admin/activity/list/admin_activity_list.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "navigationBarBackgroundColor": "#2499f2", 5 | "navigationBarTextStyle": "white", 6 | "disableScroll": true 7 | } -------------------------------------------------------------------------------- /miniprogram/projects/house/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/house/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/projects/house/pages/task/edit/task_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/house/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/house/pages/admin/vote/list/admin_vote_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 | -------------------------------------------------------------------------------- /miniprogram/projects/house/pages/activity/join/activity_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/house/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/house/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/house/pages/admin/activity/list/admin_activity_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/house/pages/admin/activity/join_list/admin_activity_join_list.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | 4 | }, 5 | "navigationBarBackgroundColor": "#2499f2", 6 | "navigationBarTextStyle": "white", 7 | "navigationBarTitleText": "活动名单管理" 8 | } -------------------------------------------------------------------------------- /miniprogram/projects/house/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/house/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/house/pages/admin/task/detail/admin_task_detail.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; 2 | 3 | .main-admin { 4 | padding: 30rpx 0rpx; 5 | } 6 | 7 | .admin-comm-list .item .info .info-item .title { 8 | width: 210rpx; 9 | } -------------------------------------------------------------------------------- /miniprogram/projects/house/pages/admin/vote/add/admin_vote_add.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /miniprogram/cmpts/public/poster/wxa-plugin-canvas/index/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /miniprogram/projects/house/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/house/pages/admin/news/add/admin_news_add.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /miniprogram/projects/house/pages/admin/task/list/admin_task_list.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | 4 | }, 5 | "navigationBarBackgroundColor": "#2499f2", 6 | "navigationBarTextStyle": "white", 7 | "disableScroll": true, 8 | "navigationBarTitleText": "报事报修管理" 9 | } -------------------------------------------------------------------------------- /miniprogram/projects/house/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/house/pages/admin/activity/add/admin_activity_add.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /miniprogram/projects/house/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/house/pages/admin/task/detail/admin_task_detail.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | 4 | }, 5 | "navigationBarBackgroundColor": "#2499f2", 6 | "navigationBarTextStyle": "white", 7 | "enablePullDownRefresh": true, 8 | "navigationBarTitleText": "报事报修详情" 9 | } -------------------------------------------------------------------------------- /miniprogram/projects/house/pages/admin/task/export/admin_task_export.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | 4 | }, 5 | "navigationBarBackgroundColor": "#2499f2", 6 | "navigationBarTextStyle": "white", 7 | "enablePullDownRefresh": true, 8 | "navigationBarTitleText": "填报资料导出" 9 | } -------------------------------------------------------------------------------- /miniprogram/projects/house/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/house/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/projects/house/pages/admin/activity/export/admin_activity_export.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "navigationBarBackgroundColor": "#2499f2", 5 | "navigationBarTextStyle": "white", 6 | "enablePullDownRefresh": true, 7 | "navigationBarTitleText": "报名名单导出" 8 | } -------------------------------------------------------------------------------- /miniprogram/projects/house/pages/admin/activity/self/admin_activity_self.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | 4 | }, 5 | "navigationBarBackgroundColor": "#2499f2", 6 | "navigationBarTextStyle": "white", 7 | "enablePullDownRefresh": true, 8 | "navigationBarTitleText": "用户活动自助签到码" 9 | } -------------------------------------------------------------------------------- /miniprogram/projects/house/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/house/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/tpls/public/top_tpl.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /miniprogram/cmpts/biz/foot/foot_cmpt.wxml: -------------------------------------------------------------------------------- 1 | 2 | © {{company}} 3 | {{ver}} 4 | -------------------------------------------------------------------------------- /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-img-upload": "/cmpts/public/img/img_upload_cmpt" 7 | } 8 | } -------------------------------------------------------------------------------- /miniprogram/projects/house/pages/admin/vote/add/admin_vote_add.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; 2 | 3 | .select-close { 4 | width: 80rpx; 5 | font-size: 40rpx !important; 6 | font-weight: bold; 7 | text-align: center; 8 | height: 90rpx; 9 | line-height: 90rpx; 10 | } -------------------------------------------------------------------------------- /miniprogram/projects/house/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/house/pages/admin/task/export/admin_task_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/house/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/house/pages/admin/activity/export/admin_activity_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/house/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/house/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/house/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/projects/house/pages/news/index/news_index.wxml: -------------------------------------------------------------------------------- 1 | 2 |