├── miniprogram ├── pages │ └── test1 │ │ ├── test1.wxss │ │ ├── test1.wxml │ │ ├── test1.json │ │ └── test1.js ├── cmpts │ ├── public │ │ ├── poster │ │ │ ├── wxa-plugin-canvas │ │ │ │ ├── poster │ │ │ │ │ ├── index.wxss │ │ │ │ │ ├── index.json │ │ │ │ │ ├── index.wxml │ │ │ │ │ └── poster.js │ │ │ │ └── index │ │ │ │ │ ├── index.json │ │ │ │ │ ├── index.wxml │ │ │ │ │ └── index.wxss │ │ │ ├── poster_cmpt.json │ │ │ ├── images │ │ │ │ ├── friend.png │ │ │ │ └── wechat.png │ │ │ ├── poster_cmpt.wxml │ │ │ ├── poster_cmpt_helper.js │ │ │ └── poster_cmpt.wxss │ │ ├── rows │ │ │ ├── rows_cmpt.json │ │ │ ├── rows_set_helper.js │ │ │ └── rows_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 │ │ ├── swiper │ │ │ ├── swiper_cmpt.json │ │ │ ├── swiper_cmpt.wxss │ │ │ ├── swiper_cmpt.wxml │ │ │ └── swiper_cmpt.js │ │ ├── table │ │ │ ├── table_cmpt.json │ │ │ ├── table_cmpt.wxml │ │ │ ├── table_cmpt.js │ │ │ └── table_cmpt.wxss │ │ ├── checkbox │ │ │ ├── checkbox_cmpt.json │ │ │ ├── checkbox_cmpt.wxml │ │ │ ├── checkbox_cmpt.wxss │ │ │ └── checkbox_cmpt.js │ │ ├── picker_time │ │ │ ├── picker_time_cmpt.wxss │ │ │ ├── picker_time_cmpt.json │ │ │ └── picker_time_cmpt.wxml │ │ ├── custom_nav │ │ │ ├── custom_nav_cmpt.json │ │ │ ├── custom_nav_cmpt.wxml │ │ │ ├── custom_nav_cmpt.wxss │ │ │ └── custom_nav_cmpt.js │ │ ├── form │ │ │ ├── form_set │ │ │ │ ├── form_set_cmpt.json │ │ │ │ ├── field │ │ │ │ │ ├── form_set_field.json │ │ │ │ │ └── form_set_field.wxss │ │ │ │ ├── form_set_cmpt.wxss │ │ │ │ └── form_set_cmpt.wxml │ │ │ └── form_show │ │ │ │ ├── content │ │ │ │ ├── form_show_content.json │ │ │ │ ├── form_show_content.wxml │ │ │ │ └── form_show_content.wxss │ │ │ │ └── form_show_cmpt.json │ │ ├── picker_multi │ │ │ ├── picker_multi_cmpt.json │ │ │ ├── picker_multi_cmpt.wxss │ │ │ └── picker_multi_cmpt.wxml │ │ └── calendar │ │ │ ├── date_select │ │ │ ├── date_select_cmpt.json │ │ │ ├── date_select_cmpt.wxml │ │ │ └── date_select_cmpt.wxss │ │ │ ├── time_select │ │ │ ├── time_select_cmpt.json │ │ │ └── time_select_cmpt.wxml │ │ │ ├── calendar_comm │ │ │ └── calendar_comm_cmpt.json │ │ │ └── calendar_meet │ │ │ └── calendar_meet_cmpt.json │ └── biz │ │ ├── foot │ │ ├── foot_cmpt.json │ │ ├── foot_cmpt.wxml │ │ ├── foot_cmpt.wxss │ │ └── foot_cmpt.js │ │ └── detail │ │ └── detail_cmpt.json ├── app.wxss ├── projects │ └── taskcommunity │ │ ├── pages │ │ ├── task │ │ │ ├── edit │ │ │ │ ├── task_edit.wxss │ │ │ │ ├── task_edit.wxml │ │ │ │ └── task_edit.json │ │ │ ├── index │ │ │ │ ├── task_index.wxss │ │ │ │ ├── task_index.json │ │ │ │ └── task_index.wxml │ │ │ ├── my_list │ │ │ │ ├── task_my_list.json │ │ │ │ ├── task_my_list.wxml │ │ │ │ └── task_my_list.wxss │ │ │ └── add │ │ │ │ ├── task_add.json │ │ │ │ ├── task_add.wxss │ │ │ │ └── task_add.wxml │ │ ├── search │ │ │ ├── search.wxml │ │ │ ├── search.json │ │ │ ├── search.wxss │ │ │ └── search.js │ │ ├── my │ │ │ ├── fav │ │ │ │ ├── my_fav.wxml │ │ │ │ ├── my_fav.json │ │ │ │ ├── my_fav.wxss │ │ │ │ └── my_fav.js │ │ │ ├── foot │ │ │ │ ├── my_foot.wxml │ │ │ │ ├── my_foot.json │ │ │ │ ├── my_foot.wxss │ │ │ │ └── my_foot.js │ │ │ ├── index │ │ │ │ └── my_index.json │ │ │ ├── reg │ │ │ │ ├── my_reg.json │ │ │ │ ├── my_reg.wxss │ │ │ │ └── my_reg.wxml │ │ │ └── edit │ │ │ │ ├── my_edit.json │ │ │ │ ├── my_edit.wxss │ │ │ │ ├── my_edit.wxml │ │ │ │ └── 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 │ │ │ │ │ └── admin_log_list.js │ │ │ ├── news │ │ │ │ ├── add │ │ │ │ │ ├── admin_news_add.wxss │ │ │ │ │ ├── admin_news_add.wxml │ │ │ │ │ └── admin_news_add.json │ │ │ │ ├── edit │ │ │ │ │ ├── admin_news_edit.wxss │ │ │ │ │ ├── admin_news_edit.json │ │ │ │ │ └── admin_news_edit.wxml │ │ │ │ └── list │ │ │ │ │ ├── admin_news_list.json │ │ │ │ │ └── admin_news_list.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 │ │ │ │ │ └── admin_user_export.wxml │ │ │ ├── task │ │ │ │ ├── detail │ │ │ │ │ ├── admin_task_detail.wxss │ │ │ │ │ ├── admin_task_detail.json │ │ │ │ │ ├── admin_task_detail.wxml │ │ │ │ │ └── admin_task_detail.js │ │ │ │ ├── list │ │ │ │ │ ├── admin_task_list.json │ │ │ │ │ └── admin_task_list.wxss │ │ │ │ └── export │ │ │ │ │ ├── admin_task_export.json │ │ │ │ │ ├── admin_task_export.wxss │ │ │ │ │ └── admin_task_export.wxml │ │ │ ├── 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 │ │ │ └── index │ │ │ │ ├── news_index.wxss │ │ │ │ ├── news_index.json │ │ │ │ ├── news_index.js │ │ │ │ └── news_index.wxml │ │ └── default │ │ │ └── index │ │ │ ├── default_index.json │ │ │ └── default_index.js │ │ ├── images │ │ ├── menu │ │ │ ├── 0.png │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ │ ├── my │ │ │ ├── task.png │ │ │ ├── service.png │ │ │ ├── task_0.png │ │ │ ├── task_1.png │ │ │ └── task_2.png │ │ ├── tabbar │ │ │ ├── my.png │ │ │ ├── news.png │ │ │ ├── task.png │ │ │ ├── activity.png │ │ │ ├── my_cur.png │ │ │ ├── news_cur.png │ │ │ ├── service.png │ │ │ ├── task_cur.png │ │ │ ├── activity_cur.png │ │ │ └── service_cur.png │ │ ├── home │ │ │ ├── cute_1.jpg │ │ │ ├── cute_2.jpg │ │ │ ├── cute_3.jpg │ │ │ └── cute_4.jpg │ │ └── default_index_bg.jpg │ │ ├── biz │ │ ├── project_biz.js │ │ ├── task_biz.js │ │ └── admin_news_biz.js │ │ └── public │ │ └── project_setting.js ├── images │ └── cover.gif ├── style │ ├── project │ │ ├── my_fav_style.wxss │ │ ├── my_foot_style.wxss │ │ ├── admin_list_style.wxss │ │ └── search_style.wxss │ └── base │ │ ├── nav.wxss │ │ ├── comm.wxss │ │ ├── image.wxss │ │ └── avatar.wxss ├── sitemap.json ├── tpls │ ├── public │ │ ├── top_tpl.wxml │ │ ├── list_load_tpl.wxml │ │ └── admin_forms_detail_tpl.wxml │ ├── wxs │ │ └── tools.wxs │ └── project │ │ ├── my_foot_tpl.wxml │ │ ├── news_index_tpl.wxml │ │ ├── search_tpl.wxml │ │ ├── about_tpl.wxml │ │ └── my_fav_tpl.wxml ├── comm │ ├── constants.js │ ├── biz │ │ ├── search_biz.js │ │ ├── fav_biz.js │ │ ├── base_biz.js │ │ ├── foot_biz.js │ │ └── public_biz.js │ └── behavior │ │ ├── my_foot_bh.js │ │ └── my_fav_bh.js ├── setting │ └── setting.js ├── helper │ ├── form_helper.js │ ├── file_helper.js │ ├── helper.js │ └── cache_helper.js └── app.js ├── 小区报事报修小程序安装使用手册.docx ├── cloudfunctions └── mcloud │ ├── project │ └── taskcommunity │ │ ├── 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 │ │ ├── task_model.js │ │ ├── news_model.js │ │ └── user_model.js │ │ └── service │ │ ├── admin │ │ ├── base_project_admin_service.js │ │ └── admin_setup_service.js │ │ └── home_service.js │ ├── config.json │ ├── index.js │ ├── framework │ ├── utils │ │ ├── constant.js │ │ ├── math_util.js │ │ ├── util.js │ │ └── setup │ │ │ ├── setup_model.js │ │ │ └── setup_util.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/pages/test1/test1.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/projects/taskcommunity/pages/task/edit/task_edit.wxss: -------------------------------------------------------------------------------- 1 | @import "../add/task_add.wxss"; -------------------------------------------------------------------------------- /miniprogram/cmpts/biz/foot/foot_cmpt.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/public/poster/wxa-plugin-canvas/index/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/public/rows/rows_cmpt.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/pages/task/edit/task_edit.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /小区报事报修小程序安装使用手册.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangbingbing2022/WeReport/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/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/projects/taskcommunity/pages/task/index/task_index.wxss: -------------------------------------------------------------------------------- 1 | @import "../my_list/task_my_list.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/cmpts/public/custom_nav/custom_nav_cmpt.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/public/form/form_set/form_set_cmpt.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/public/picker_multi/picker_multi_cmpt.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/public/picker_time/picker_time_cmpt.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/images/cover.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangbingbing2022/WeReport/HEAD/miniprogram/images/cover.gif -------------------------------------------------------------------------------- /miniprogram/pages/test1/test1.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/pages/search/search.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/pages/my/fav/my_fav.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/pages/my/foot/my_foot.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /miniprogram/style/project/my_fav_style.wxss: -------------------------------------------------------------------------------- 1 | .text-pic-list-box .item .simple .simple-title { 2 | width: 100%; 3 | } -------------------------------------------------------------------------------- /miniprogram/style/project/my_foot_style.wxss: -------------------------------------------------------------------------------- 1 | .text-pic-list-box .item .simple .simple-title { 2 | width: 100%; 3 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/public/calendar/date_select/date_select_cmpt.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/public/calendar/time_select/time_select_cmpt.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/pages/admin/mgr/add/admin_mgr_add.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/pages/admin/mgr/edit/admin_mgr_edit.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/pages/admin/mgr/pwd/admin_mgr_pwd.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/taskcommunity/pages/about/index/about_index.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/pages/admin/mgr/list/admin_mgr_list.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; 2 | -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/pages/admin/news/add/admin_news_add.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; 2 | -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/pages/admin/news/edit/admin_news_edit.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; -------------------------------------------------------------------------------- /miniprogram/cmpts/public/swiper/swiper_cmpt.wxss: -------------------------------------------------------------------------------- 1 | .swiper { 2 | width: 100%; 3 | } 4 | .swiper-item-images { 5 | width: 100%; 6 | } -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/pages/search/search.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "navigationBarTitleText": "搜索" 5 | } -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/pages/about/index/about_index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "enablePullDownRefresh": true 5 | } -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/pages/search/search.wxss: -------------------------------------------------------------------------------- 1 | @import "../../style/skin.wxss"; 2 | @import "../../../../style/project/search_style.wxss"; -------------------------------------------------------------------------------- /cloudfunctions/mcloud/project/taskcommunity/public/constants.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | // 首页推荐 3 | SETUP_HOME_VOUCH_KEY : 'SETUP_HOME_VOUCH_KEY', 4 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/public/poster/poster_cmpt.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "poster": "./wxa-plugin-canvas/poster" 5 | } 6 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/public/poster/images/friend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangbingbing2022/WeReport/HEAD/miniprogram/cmpts/public/poster/images/friend.png -------------------------------------------------------------------------------- /miniprogram/cmpts/public/poster/images/wechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangbingbing2022/WeReport/HEAD/miniprogram/cmpts/public/poster/images/wechat.png -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/pages/news/detail/news_detail.wxss: -------------------------------------------------------------------------------- 1 | @import "../../../../../style/public/detail.wxss"; 2 | @import "../../../style/skin.wxss"; -------------------------------------------------------------------------------- /cloudfunctions/mcloud/project/taskcommunity/public/project_config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | // ## 缓存相关 3 | CACHE_CALENDAR_TIME: 60 * 30, //日历缓存 4 | 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/taskcommunity/images/menu/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangbingbing2022/WeReport/HEAD/miniprogram/projects/taskcommunity/images/menu/0.png -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/images/menu/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangbingbing2022/WeReport/HEAD/miniprogram/projects/taskcommunity/images/menu/1.png -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/images/menu/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangbingbing2022/WeReport/HEAD/miniprogram/projects/taskcommunity/images/menu/2.png -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/images/menu/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangbingbing2022/WeReport/HEAD/miniprogram/projects/taskcommunity/images/menu/3.png -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/images/menu/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangbingbing2022/WeReport/HEAD/miniprogram/projects/taskcommunity/images/menu/4.png -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/images/menu/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangbingbing2022/WeReport/HEAD/miniprogram/projects/taskcommunity/images/menu/5.png -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/images/menu/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangbingbing2022/WeReport/HEAD/miniprogram/projects/taskcommunity/images/menu/6.png -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/images/menu/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangbingbing2022/WeReport/HEAD/miniprogram/projects/taskcommunity/images/menu/7.png -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/images/menu/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangbingbing2022/WeReport/HEAD/miniprogram/projects/taskcommunity/images/menu/8.png -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/images/menu/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangbingbing2022/WeReport/HEAD/miniprogram/projects/taskcommunity/images/menu/9.png -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/images/my/task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangbingbing2022/WeReport/HEAD/miniprogram/projects/taskcommunity/images/my/task.png -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/pages/about/index/about_index.wxss: -------------------------------------------------------------------------------- 1 | @import "../../../../../style/public/detail.wxss"; 2 | @import "../../../style/skin.wxss"; 3 | -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/pages/my/fav/my_fav.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "enablePullDownRefresh": true, 4 | "navigationBarTitleText": "我的收藏" 5 | } -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/pages/news/index/news_index.wxss: -------------------------------------------------------------------------------- 1 | @import "../../../../../style/public/comm_box_list.wxss"; 2 | @import "../../../style/skin.wxss"; -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/images/my/service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangbingbing2022/WeReport/HEAD/miniprogram/projects/taskcommunity/images/my/service.png -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/images/my/task_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangbingbing2022/WeReport/HEAD/miniprogram/projects/taskcommunity/images/my/task_0.png -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/images/my/task_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangbingbing2022/WeReport/HEAD/miniprogram/projects/taskcommunity/images/my/task_1.png -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/images/my/task_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangbingbing2022/WeReport/HEAD/miniprogram/projects/taskcommunity/images/my/task_2.png -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/images/tabbar/my.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangbingbing2022/WeReport/HEAD/miniprogram/projects/taskcommunity/images/tabbar/my.png -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/pages/my/foot/my_foot.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "enablePullDownRefresh": true, 4 | "navigationBarTitleText": "历史浏览" 5 | } -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/images/home/cute_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangbingbing2022/WeReport/HEAD/miniprogram/projects/taskcommunity/images/home/cute_1.jpg -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/images/home/cute_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangbingbing2022/WeReport/HEAD/miniprogram/projects/taskcommunity/images/home/cute_2.jpg -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/images/home/cute_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangbingbing2022/WeReport/HEAD/miniprogram/projects/taskcommunity/images/home/cute_3.jpg -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/images/home/cute_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangbingbing2022/WeReport/HEAD/miniprogram/projects/taskcommunity/images/home/cute_4.jpg -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/images/tabbar/news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangbingbing2022/WeReport/HEAD/miniprogram/projects/taskcommunity/images/tabbar/news.png -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/images/tabbar/task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangbingbing2022/WeReport/HEAD/miniprogram/projects/taskcommunity/images/tabbar/task.png -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/pages/news/index/news_index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "disableScroll": true, 5 | "navigationBarTitleText": "通知公告" 6 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/public/poster/wxa-plugin-canvas/poster/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "we-canvas": "../index/index" 5 | } 6 | } -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/images/tabbar/activity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangbingbing2022/WeReport/HEAD/miniprogram/projects/taskcommunity/images/tabbar/activity.png -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/images/tabbar/my_cur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangbingbing2022/WeReport/HEAD/miniprogram/projects/taskcommunity/images/tabbar/my_cur.png -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/images/tabbar/news_cur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangbingbing2022/WeReport/HEAD/miniprogram/projects/taskcommunity/images/tabbar/news_cur.png -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/images/tabbar/service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangbingbing2022/WeReport/HEAD/miniprogram/projects/taskcommunity/images/tabbar/service.png -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/images/tabbar/task_cur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangbingbing2022/WeReport/HEAD/miniprogram/projects/taskcommunity/images/tabbar/task_cur.png -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/pages/my/index/my_index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | 4 | }, 5 | "enablePullDownRefresh": true, 6 | "navigationBarTitleText": "我的" 7 | } -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/pages/task/index/task_index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "disableScroll": true, 5 | "navigationBarTitleText": "报事报修记录" 6 | } -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/pages/task/my_list/task_my_list.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "disableScroll": true, 5 | "navigationBarTitleText": "我的报事报修" 6 | } -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/images/default_index_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangbingbing2022/WeReport/HEAD/miniprogram/projects/taskcommunity/images/default_index_bg.jpg -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/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/taskcommunity/images/tabbar/activity_cur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangbingbing2022/WeReport/HEAD/miniprogram/projects/taskcommunity/images/tabbar/activity_cur.png -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/images/tabbar/service_cur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangbingbing2022/WeReport/HEAD/miniprogram/projects/taskcommunity/images/tabbar/service_cur.png -------------------------------------------------------------------------------- /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/taskcommunity/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 | } -------------------------------------------------------------------------------- /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/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/taskcommunity/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/taskcommunity/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"; -------------------------------------------------------------------------------- /.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/taskcommunity/pages/default/index/default_index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "enablePullDownRefresh": true, 5 | "navigationStyle": "custom", 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/taskcommunity/pages/admin/mgr/add/admin_mgr_add.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "navigationBarBackgroundColor": "#2499f2", 4 | "navigationBarTextStyle": "white", 5 | "navigationBarTitleText": "添加管理员" 6 | } -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/pages/admin/mgr/list/admin_mgr_list.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "navigationBarBackgroundColor": "#2499f2", 4 | "navigationBarTextStyle": "white", 5 | "navigationBarTitleText": "管理员管理" 6 | } -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/pages/admin/mgr/pwd/admin_mgr_pwd.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "navigationBarBackgroundColor": "#2499f2", 4 | "navigationBarTextStyle": "white", 5 | "navigationBarTitleText": "管理员密码修改" 6 | } -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/pages/admin/news/list/admin_news_list.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "navigationBarBackgroundColor": "#2499f2", 5 | "navigationBarTextStyle": "white", 6 | "disableScroll": true 7 | } -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/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/taskcommunity/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/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/taskcommunity/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/taskcommunity/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/projects/taskcommunity/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/taskcommunity/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/taskcommunity/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/cmpts/public/poster/wxa-plugin-canvas/index/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/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/taskcommunity/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/taskcommunity/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/taskcommunity/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/taskcommunity/pages/admin/news/add/admin_news_add.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/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/taskcommunity/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/taskcommunity/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/taskcommunity/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/taskcommunity/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/taskcommunity/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/taskcommunity/pages/admin/user/export/admin_user_export.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | 4 | }, 5 | "navigationBarBackgroundColor": "#2499f2", 6 | "navigationBarTextStyle": "white", 7 | "enablePullDownRefresh": true, 8 | "navigationBarTitleText": "用户资料导出" 9 | } -------------------------------------------------------------------------------- /miniprogram/tpls/public/top_tpl.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /miniprogram/cmpts/biz/foot/foot_cmpt.wxml: -------------------------------------------------------------------------------- 1 | 2 | © {{company}} 3 | {{ver}} 4 | -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/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/taskcommunity/pages/admin/setup/about_list/admin_setup_about_list.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | 4 | }, 5 | "navigationBarBackgroundColor": "#2499f2", 6 | "navigationBarTextStyle": "white", 7 | "enablePullDownRefresh": true, 8 | "navigationBarTitleText": "单页文章" 9 | } -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/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/taskcommunity/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/taskcommunity/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/taskcommunity/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/taskcommunity/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/taskcommunity/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/taskcommunity/pages/task/add/task_add.wxss: -------------------------------------------------------------------------------- 1 | @import "../../../../../style/public/detail.wxss"; 2 | @import "../../../style/skin.wxss"; 3 | 4 | .form-group .line-desc { 5 | font-size: 28rpx; 6 | text-align: center; 7 | width: 100%; 8 | color: #666; 9 | } 10 | 11 | .submit-line { 12 | width: 100%; 13 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/biz/foot/foot_cmpt.wxss: -------------------------------------------------------------------------------- 1 | @import "../../../style/public/project.wxss"; 2 | 3 | .site-footer { 4 | width: 100%; 5 | display: flex; 6 | flex-direction: column; 7 | justify-content: center; 8 | align-items: center; 9 | font-size: 24rpx; 10 | color: #aaa; 11 | margin-top: 20rpx; 12 | margin-bottom: 20rpx; 13 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/public/form/form_show/form_show_cmpt.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "cmpt-checkbox": "/cmpts/public/checkbox/checkbox_cmpt", 5 | "cmpt-radio": "/cmpts/public/radio/radio_cmpt", 6 | "cmpt-rows": "/cmpts/public/rows/rows_cmpt", 7 | "cmpt-img-upload": "/cmpts/public/img/img_upload_cmpt" 8 | } 9 | } -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/pages/admin/task/list/admin_task_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 | } 10 | 11 | .admin-comm-list .item .info .oprt .btn { 12 | padding: 0 20rpx; 13 | } -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/pages/my/edit/my_edit.wxss: -------------------------------------------------------------------------------- 1 | @import "../../../style/skin.wxss"; 2 | .submit-line { 3 | width: 100%; 4 | } 5 | 6 | .form-group .mobile { 7 | flex: 1; 8 | text-align: left; 9 | } 10 | 11 | .submit-line { 12 | width: 100%; 13 | } 14 | 15 | .form-group .mobile { 16 | flex: 1; 17 | text-align: left; 18 | } -------------------------------------------------------------------------------- /miniprogram/style/project/admin_list_style.wxss: -------------------------------------------------------------------------------- 1 | 2 | .admin-comm-list .item .info .oprt { 3 | padding: 0rpx 0rpx; 4 | display: flex; 5 | justify-content: space-between; 6 | } 7 | 8 | .admin-comm-list .item .info .oprt .btn { 9 | width: 155rpx; 10 | margin-right: 0rpx !important; 11 | height: 60rpx !important; 12 | padding: 0 0rpx; 13 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/public/picker_time/picker_time_cmpt.wxml: -------------------------------------------------------------------------------- 1 | 10 | 11 | -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/pages/admin/news/add/admin_news_add.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "cmpt-img-upload": "/cmpts/public/img/img_upload_cmpt", 4 | "cmpt-form-show": "/cmpts/public/form/form_show/form_show_cmpt" 5 | }, 6 | "navigationBarBackgroundColor": "#2499f2", 7 | "navigationBarTextStyle": "white", 8 | "enablePullDownRefresh": true 9 | } -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/pages/admin/news/edit/admin_news_edit.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "cmpt-img-upload": "/cmpts/public/img/img_upload_cmpt", 4 | "cmpt-form-show": "/cmpts/public/form/form_show/form_show_cmpt" 5 | }, 6 | "navigationBarBackgroundColor": "#2499f2", 7 | "navigationBarTextStyle": "white", 8 | "enablePullDownRefresh": true 9 | } -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/pages/my/reg/my_reg.wxss: -------------------------------------------------------------------------------- 1 | @import "../../../style/skin.wxss"; 2 | .submit-line { 3 | width: 100%; 4 | } 5 | 6 | .form-group .mobile { 7 | flex: 1; 8 | text-align: left; 9 | } 10 | 11 | .submit-line { 12 | width: 100%; 13 | } 14 | 15 | .form-group .mobile { 16 | flex: 1; 17 | text-align: left; 18 | font-size:28rpx; 19 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/public/img/img_upload_cmpt.wxss: -------------------------------------------------------------------------------- 1 | @import "../../../style/base/comm.wxss"; 2 | @import "../../../style/public/project.wxss"; 3 | 4 | .form-group .upload-img .img-no { 5 | position: absolute; 6 | right: 0; 7 | bottom: 0; 8 | border-top-left-radius: 6rpx; 9 | padding: 6rpx 12rpx; 10 | height: 35rpx; 11 | opacity: .9; 12 | } -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/pages/admin/news/edit/admin_news_edit.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /miniprogram/cmpts/public/form/form_set/field/form_set_field.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "cmpt-picker-multi": "/cmpts/public/picker_multi/picker_multi_cmpt" 4 | }, 5 | "navigationBarBackgroundColor": "#ffffff", 6 | "navigationBarTextStyle": "black", 7 | "enablePullDownRefresh": true, 8 | "backgroundTextStyle": "dark", 9 | "navigationBarTitleText": "后台-字段添加" 10 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/public/poster/wxa-plugin-canvas/index/index.wxss: -------------------------------------------------------------------------------- 1 | .canvas { 2 | width: 750rpx; 3 | height: 750rpx; 4 | } 5 | .canvas.pro { 6 | position: absolute; 7 | bottom: 0; 8 | left: 0; 9 | transform: translate3d(-9999rpx, 0, 0); 10 | } 11 | .canvas.debug { 12 | position: absolute; 13 | bottom: 0; 14 | left: 0; 15 | border: 1rpx solid #ccc; 16 | } -------------------------------------------------------------------------------- /cloudfunctions/mcloud/framework/platform/model/base_model.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Notes: 实体基类 3 | * Date: 2021-03-15 19:20:00 4 | * Ver : CCMiniCloud Framework 2.0.6 ALL RIGHTS RESERVED BY cclinux0730 (wechat) 5 | */ 6 | 7 | 8 | const MultiModel = require('../../../framework/database/multi_model.js'); 9 | 10 | class BaseModel extends MultiModel { 11 | 12 | } 13 | 14 | module.exports = BaseModel; -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/pages/admin/setup/about/admin_setup_about.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; 2 | 3 | .main-admin { 4 | width: 100%; 5 | box-sizing: border-box; 6 | padding: 30rpx 20rpx; 7 | padding-bottom: 200rpx; 8 | } 9 | 10 | .form-group { 11 | padding: 1rpx 1rpx; 12 | overflow: hidden; 13 | } 14 | 15 | .btn-bottom-admin>view { 16 | width: 100%; 17 | } -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/pages/admin/setup/about_list/admin_setup_about_list.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; 2 | 3 | page { 4 | background-color: #f8f8f8; 5 | } 6 | 7 | .main-admin { 8 | padding: 40rpx 0; 9 | } 10 | 11 | .admin-comm-list .item { 12 | margin-bottom: 40rpx; 13 | } 14 | 15 | .admin-comm-list .item .header .left { 16 | font-size: 32rpx !important; 17 | } -------------------------------------------------------------------------------- /cloudfunctions/mcloud/project/taskcommunity/controller/my_controller.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Notes: 用户中心模块控制器 3 | * Date: 2021-03-15 19:20:00 4 | * Ver : CCMiniCloud Framework 2.0.1 ALL RIGHTS RESERVED BY cclinux0730 (wechat) 5 | */ 6 | 7 | const BaseProjectController = require('./base_project_controller.js'); 8 | 9 | class MyController extends BaseProjectController { 10 | 11 | } 12 | 13 | module.exports = MyController; -------------------------------------------------------------------------------- /project.private.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "setting": { 3 | "compileHotReLoad": true, 4 | "urlCheck": false 5 | }, 6 | "description": "项目私有配置文件。此文件中的内容将覆盖 project.config.json 中的相同字段。项目的改动优先同步到此文件中。详见文档:https://developers.weixin.qq.com/miniprogram/dev/devtools/projectconfig.html", 7 | "projectname": "%E5%B0%8F%E5%8C%BA%E6%8A%A5%E4%BF%AE%E5%B0%8F%E7%A8%8B%E5%BA%8F-formal", 8 | "condition": {}, 9 | "libVersion": "2.17.0" 10 | } -------------------------------------------------------------------------------- /cloudfunctions/mcloud/project/taskcommunity/model/base_project_model.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Notes: 实体ORM基类 3 | * Date: 2022-03-15 19:20:00 4 | * Ver : CCMiniCloud Framework 2.0.1 ALL RIGHTS RESERVED BY cclinux0730 (wechat) 5 | */ 6 | 7 | 8 | const BaseModel = require('../../../framework/platform/model/base_model.js'); 9 | 10 | class BaseProjectModel extends BaseModel { 11 | 12 | 13 | } 14 | 15 | module.exports = BaseProjectModel; -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/pages/my/edit/my_edit.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/pages/my/reg/my_reg.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /miniprogram/style/base/nav.wxss: -------------------------------------------------------------------------------- 1 | 2 | /* ================== 3 | 导航栏 4 | ==================== */ 5 | 6 | .tab { 7 | white-space: nowrap; 8 | } 9 | 10 | ::-webkit-scrollbar { 11 | display: none; 12 | } 13 | 14 | .tab .item { 15 | height: 90rpx; 16 | display: inline-block; 17 | line-height: 90rpx; 18 | margin: 0 10rpx; 19 | padding: 0 20rpx; 20 | } 21 | 22 | .tab .item.cur { 23 | border-bottom: 4rpx solid; 24 | } 25 | 26 | -------------------------------------------------------------------------------- /cloudfunctions/mcloud/framework/core/app_code.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Notes: 错误代码定义 3 | * Ver : CCMiniCloud Framework 2.4.1 ALL RIGHTS RESERVED BY Cclinux0730 (wechat) 4 | * Date: 2020-09-05 04:00:00 5 | */ 6 | module.exports = { 7 | SUCC: 200, 8 | SVR: 500, // 服务器错误 9 | LOGIC: 1600, //逻辑错误 10 | DATA: 1301, // 数据校验错误 11 | HEADER: 1302, // header 校验错误 12 | 13 | 14 | //2000开始为业务错误代码, 15 | 16 | ADMIN_ERROR: 2401, //管理员错误 17 | WORK_ERROR: 2501 //服务者错误 18 | } -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/pages/news/index/news_index.js: -------------------------------------------------------------------------------- 1 | let behavior = require('../../../../../comm/behavior/news_index_bh.js'); 2 | const ProjectBiz = require('../../../biz/project_biz.js'); 3 | const NewsBiz = require('../../../biz/news_biz.js'); 4 | 5 | Page({ 6 | 7 | behaviors: [behavior], 8 | 9 | onLoad: function (options) { 10 | ProjectBiz.initPage(this); 11 | this._setCate(NewsBiz.getCateList(), options, null); 12 | }, 13 | 14 | 15 | }) -------------------------------------------------------------------------------- /cloudfunctions/mcloud/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "cloud", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "author": "", 10 | "license": "ISC", 11 | "dependencies": { 12 | "date-utils": "^1.2.21", 13 | "mysql": "^2.18.1", 14 | "node-xlsx": "^0.16.1", 15 | "wx-server-sdk": "~2.1.2" 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /miniprogram/projects/taskcommunity/pages/news/index/news_index.wxml: -------------------------------------------------------------------------------- 1 | 2 |