├── miniprogram ├── pages │ └── test1 │ │ ├── test1.wxss │ │ ├── test1.wxml │ │ ├── test1.json │ │ └── test1.js ├── cmpts │ ├── public │ │ ├── poster │ │ │ ├── wxa-plugin-canvas │ │ │ │ ├── poster │ │ │ │ │ ├── index.wxss │ │ │ │ │ ├── index.json │ │ │ │ │ ├── index.wxml │ │ │ │ │ └── poster.js │ │ │ │ └── index │ │ │ │ │ ├── index.json │ │ │ │ │ ├── index.wxml │ │ │ │ │ └── index.wxss │ │ │ ├── images │ │ │ │ ├── friend.png │ │ │ │ └── wechat.png │ │ │ ├── poster_cmpt.json │ │ │ └── poster_cmpt.wxml │ │ ├── rows │ │ │ ├── rows_cmpt.json │ │ │ └── rows_set_helper.js │ │ ├── editor │ │ │ └── editor_cmpt.json │ │ ├── img │ │ │ ├── img_upload_cmpt.json │ │ │ ├── img_upload_cmpt.wxss │ │ │ └── img_upload_cmpt.wxml │ │ ├── list │ │ │ └── comm_list_cmpt.json │ │ ├── modal │ │ │ ├── modal_cmpt.json │ │ │ ├── modal_cmpt.wxss │ │ │ └── modal_cmpt.js │ │ ├── picker │ │ │ ├── picker_cmpt.json │ │ │ ├── picker_cmpt.wxss │ │ │ └── picker_cmpt.wxml │ │ ├── radio │ │ │ ├── radio_cmpt.json │ │ │ └── radio_cmpt.wxml │ │ ├── simple_list │ │ │ ├── simple_list_cmpt.wxss │ │ │ ├── simple_list_cmpt.json │ │ │ └── simple_list_cmpt.wxml │ │ ├── swiper │ │ │ ├── swiper_cmpt.json │ │ │ ├── swiper_cmpt.wxss │ │ │ ├── swiper_cmpt.wxml │ │ │ └── swiper_cmpt.js │ │ ├── table │ │ │ ├── table_cmpt.json │ │ │ ├── table_cmpt.wxml │ │ │ └── table_cmpt.js │ │ ├── checkbox │ │ │ ├── checkbox_cmpt.json │ │ │ ├── checkbox_cmpt.wxml │ │ │ └── checkbox_cmpt.wxss │ │ ├── picker_time │ │ │ ├── picker_time_cmpt.wxss │ │ │ ├── picker_time_cmpt.json │ │ │ └── picker_time_cmpt.wxml │ │ ├── custom_nav │ │ │ ├── custom_nav_cmpt.json │ │ │ ├── custom_nav_cmpt.wxml │ │ │ ├── custom_nav_cmpt.wxss │ │ │ └── custom_nav_cmpt.js │ │ ├── form │ │ │ ├── form_set │ │ │ │ ├── form_set_cmpt.json │ │ │ │ ├── field │ │ │ │ │ ├── form_set_field.json │ │ │ │ │ └── form_set_field.wxss │ │ │ │ └── form_set_cmpt.wxss │ │ │ └── form_show │ │ │ │ ├── content │ │ │ │ ├── form_show_content.json │ │ │ │ ├── form_show_content.wxml │ │ │ │ └── form_show_content.wxss │ │ │ │ └── form_show_cmpt.json │ │ ├── picker_multi │ │ │ ├── picker_multi_cmpt.json │ │ │ ├── picker_multi_cmpt.wxss │ │ │ └── picker_multi_cmpt.wxml │ │ └── calendar │ │ │ ├── date_select │ │ │ ├── date_select_cmpt.json │ │ │ ├── date_select_cmpt.wxml │ │ │ └── date_select_cmpt.wxss │ │ │ ├── time_select │ │ │ ├── time_select_cmpt.json │ │ │ └── time_select_cmpt.wxml │ │ │ ├── calendar_comm │ │ │ └── calendar_comm_cmpt.json │ │ │ └── calendar_meet │ │ │ └── calendar_meet_cmpt.json │ └── biz │ │ ├── foot │ │ ├── foot_cmpt.json │ │ ├── foot_cmpt.wxml │ │ ├── foot_cmpt.wxss │ │ └── foot_cmpt.js │ │ └── detail │ │ └── detail_cmpt.json ├── app.wxss ├── projects │ └── workphoto │ │ ├── pages │ │ ├── about │ │ │ ├── list │ │ │ │ ├── about_list.wxml │ │ │ │ ├── about_list.wxss │ │ │ │ ├── about_list.json │ │ │ │ └── about_list.js │ │ │ └── index │ │ │ │ ├── about_index.wxml │ │ │ │ ├── about_index.json │ │ │ │ ├── about_index.wxss │ │ │ │ └── about_index.js │ │ ├── work │ │ │ ├── index │ │ │ │ ├── pwd │ │ │ │ │ ├── work_pwd.wxss │ │ │ │ │ ├── work_pwd.json │ │ │ │ │ └── work_pwd.wxml │ │ │ │ ├── home │ │ │ │ │ └── work_home.json │ │ │ │ └── login │ │ │ │ │ ├── work_login.json │ │ │ │ │ ├── work_login.wxml │ │ │ │ │ ├── work_login.js │ │ │ │ │ └── work_login.wxss │ │ │ └── meet │ │ │ │ ├── edit │ │ │ │ ├── work_meet_edit.wxss │ │ │ │ ├── work_meet_edit.wxml │ │ │ │ └── work_meet_edit.json │ │ │ │ ├── scan │ │ │ │ ├── work_meet_scan.wxss │ │ │ │ ├── work_meet_scan.wxml │ │ │ │ ├── work_meet_scan.json │ │ │ │ └── work_meet_scan.js │ │ │ │ ├── temp │ │ │ │ ├── work_meet_temp.wxss │ │ │ │ ├── work_meet_temp.json │ │ │ │ ├── work_meet_temp.wxml │ │ │ │ └── work_meet_temp.js │ │ │ │ ├── join │ │ │ │ ├── work_meet_join.wxss │ │ │ │ ├── work_meet_join.json │ │ │ │ ├── work_meet_join.wxml │ │ │ │ └── work_meet_join.js │ │ │ │ ├── time │ │ │ │ ├── work_meet_time.wxss │ │ │ │ ├── work_meet_time.wxml │ │ │ │ ├── work_meet_time.json │ │ │ │ └── work_meet_time.js │ │ │ │ └── record │ │ │ │ ├── work_meet_record.json │ │ │ │ ├── work_meet_record.wxss │ │ │ │ ├── work_meet_record.wxml │ │ │ │ └── work_meet_record.js │ │ ├── admin │ │ │ ├── meet │ │ │ │ ├── edit │ │ │ │ │ ├── admin_meet_edit.wxss │ │ │ │ │ ├── admin_meet_edit.json │ │ │ │ │ └── admin_meet_edit.wxml │ │ │ │ ├── list │ │ │ │ │ ├── admin_meet_list.json │ │ │ │ │ └── admin_meet_list.wxss │ │ │ │ ├── join │ │ │ │ │ ├── admin_meet_join.json │ │ │ │ │ ├── admin_meet_join.wxml │ │ │ │ │ └── admin_meet_join.js │ │ │ │ ├── time │ │ │ │ │ ├── admin_meet_time.wxml │ │ │ │ │ ├── admin_meet_time.json │ │ │ │ │ └── admin_meet_time.js │ │ │ │ ├── scan │ │ │ │ │ ├── admin_meet_scan.wxml │ │ │ │ │ ├── admin_meet_scan.json │ │ │ │ │ ├── admin_meet_scan_tpl.wxml │ │ │ │ │ ├── admin_meet_scan.js │ │ │ │ │ └── admin_meet_scan.wxss │ │ │ │ ├── temp │ │ │ │ │ ├── admin_meet_temp.json │ │ │ │ │ ├── admin_meet_temp.wxml │ │ │ │ │ └── admin_meet_temp.js │ │ │ │ ├── export │ │ │ │ │ ├── admin_join_export.wxss │ │ │ │ │ └── admin_join_export.json │ │ │ │ ├── add │ │ │ │ │ ├── admin_meet_add.wxml │ │ │ │ │ ├── admin_meet_add.json │ │ │ │ │ └── admin_meet_add.wxss │ │ │ │ └── record │ │ │ │ │ ├── admin_meet_record.json │ │ │ │ │ ├── admin_meet_record.wxml │ │ │ │ │ ├── admin_meet_record.wxss │ │ │ │ │ └── admin_meet_record.js │ │ │ ├── mgr │ │ │ │ ├── add │ │ │ │ │ ├── admin_mgr_add.wxss │ │ │ │ │ ├── admin_mgr_add.json │ │ │ │ │ └── admin_mgr_add.wxml │ │ │ │ ├── edit │ │ │ │ │ ├── admin_mgr_edit.wxss │ │ │ │ │ └── admin_mgr_edit.json │ │ │ │ ├── pwd │ │ │ │ │ ├── admin_mgr_pwd.wxss │ │ │ │ │ ├── admin_mgr_pwd.json │ │ │ │ │ └── admin_mgr_pwd.wxml │ │ │ │ ├── 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 │ │ │ ├── product │ │ │ │ ├── edit │ │ │ │ │ ├── admin_product_edit.wxss │ │ │ │ │ ├── admin_product_edit.json │ │ │ │ │ └── admin_product_edit.wxml │ │ │ │ ├── add │ │ │ │ │ ├── admin_product_add.wxss │ │ │ │ │ ├── admin_product_add.wxml │ │ │ │ │ └── admin_product_add.json │ │ │ │ └── list │ │ │ │ │ ├── admin_product_list.json │ │ │ │ │ └── admin_product_list.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 │ │ │ ├── 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 │ │ ├── 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 │ │ ├── meet │ │ │ ├── content │ │ │ │ ├── meet_content.json │ │ │ │ ├── meet_content.wxss │ │ │ │ ├── meet_content.wxml │ │ │ │ └── meet_content.js │ │ │ ├── index │ │ │ │ └── meet_index.json │ │ │ ├── my_join_list │ │ │ │ ├── meet_my_join_list.json │ │ │ │ └── meet_my_join_list.wxss │ │ │ ├── my_join_detail │ │ │ │ └── meet_my_join_detail.json │ │ │ ├── join │ │ │ │ ├── meet_join.json │ │ │ │ ├── meet_join.wxss │ │ │ │ └── meet_join.wxml │ │ │ ├── calendar │ │ │ │ ├── meet_calendar.json │ │ │ │ └── meet_calendar.wxss │ │ │ └── detail │ │ │ │ └── meet_detail.json │ │ ├── news │ │ │ ├── detail │ │ │ │ ├── news_detail.wxss │ │ │ │ ├── news_detail.json │ │ │ │ └── news_detail.wxml │ │ │ ├── cate1 │ │ │ │ ├── news_cate1.wxss │ │ │ │ ├── news_cate1.json │ │ │ │ ├── news_cate1.js │ │ │ │ └── news_cate1.wxml │ │ │ ├── index │ │ │ │ ├── news_index.wxss │ │ │ │ ├── news_index.json │ │ │ │ ├── news_index.js │ │ │ │ └── news_index.wxml │ │ │ └── cate2 │ │ │ │ ├── news_cate2.json │ │ │ │ ├── news_cate2.js │ │ │ │ ├── news_cate2.wxml │ │ │ │ └── news_cate2.wxss │ │ ├── product │ │ │ ├── detail │ │ │ │ ├── product_detail.wxss │ │ │ │ ├── product_detail.json │ │ │ │ └── product_detail.wxml │ │ │ └── index │ │ │ │ ├── product_index.json │ │ │ │ ├── product_index.wxss │ │ │ │ └── product_index.wxml │ │ └── default │ │ │ └── index │ │ │ ├── default_index.json │ │ │ └── default_index.js │ │ ├── images │ │ ├── home.jpg │ │ ├── my │ │ │ ├── all.png │ │ │ ├── out.png │ │ │ ├── use.png │ │ │ ├── cancel.png │ │ │ └── check.png │ │ ├── menu │ │ │ ├── coach.png │ │ │ ├── kemu.png │ │ │ ├── enroll.png │ │ │ └── notice.png │ │ └── tabbar │ │ │ ├── day.png │ │ │ ├── my.png │ │ │ ├── cate2.png │ │ │ ├── home.png │ │ │ ├── news.png │ │ │ ├── day_cur.png │ │ │ ├── home_cur.png │ │ │ ├── my_cur.png │ │ │ ├── news_cur.png │ │ │ └── cate2_cur.png │ │ └── biz │ │ ├── project_biz.js │ │ ├── admin_product_biz.js │ │ ├── product_biz.js │ │ ├── meet_biz.js │ │ └── admin_news_biz.js ├── images │ └── cover.gif ├── style │ ├── project │ │ ├── my_fav_style.wxss │ │ ├── my_foot_style.wxss │ │ ├── admin_list_style.wxss │ │ └── search_style.wxss │ └── base │ │ ├── nav.wxss │ │ ├── comm.wxss │ │ ├── image.wxss │ │ └── avatar.wxss ├── sitemap.json ├── tpls │ ├── public │ │ ├── top_tpl.wxml │ │ ├── list_load_tpl.wxml │ │ └── 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 │ └── behavior │ │ └── my_foot_bh.js ├── setting │ └── setting.js ├── helper │ ├── form_helper.js │ ├── file_helper.js │ └── helper.js └── app.js ├── 摄影机构摄影师预约小程序安装使用手册.docx ├── cloudfunctions └── mcloud │ ├── project │ └── workphoto │ │ ├── public │ │ ├── constants.js │ │ └── project_config.js │ │ ├── controller │ │ ├── my_controller.js │ │ ├── base_project_controller.js │ │ ├── admin │ │ │ ├── base_project_admin_controller.js │ │ │ └── admin_home_controller.js │ │ ├── check_controller.js │ │ ├── home_controller.js │ │ └── work │ │ │ └── base_project_work_controller.js │ │ ├── model │ │ ├── base_project_model.js │ │ ├── temp_model.js │ │ ├── fav_model.js │ │ ├── day_model.js │ │ ├── product_model.js │ │ ├── news_model.js │ │ └── user_model.js │ │ └── service │ │ ├── work │ │ ├── work_meet_service.js │ │ └── base_project_work_service.js │ │ └── admin │ │ └── base_project_admin_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 │ ├── 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 /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/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/workphoto/pages/about/list/about_list.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/about/list/about_list.wxss: -------------------------------------------------------------------------------- 1 | @import "../index/about_index.wxss"; -------------------------------------------------------------------------------- /摄影机构摄影师预约小程序安装使用手册.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/WePhoto/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/simple_list/simple_list_cmpt.wxss: -------------------------------------------------------------------------------- 1 | .scroll-view { 2 | height: 100vh; 3 | } -------------------------------------------------------------------------------- /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/workphoto/pages/work/index/pwd/work_pwd.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../style/work.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/nanbouking/WePhoto/HEAD/miniprogram/images/cover.gif -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/admin/meet/edit/admin_meet_edit.wxss: -------------------------------------------------------------------------------- 1 | @import "../add/admin_meet_add.wxss"; -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/search/search.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/work/meet/edit/work_meet_edit.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../style/work.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/cmpts/public/simple_list/simple_list_cmpt.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/pages/test1/test1.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/my/fav/my_fav.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/admin/mgr/add/admin_mgr_add.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/admin/mgr/edit/admin_mgr_edit.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/admin/mgr/pwd/admin_mgr_pwd.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/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/workphoto/pages/about/index/about_index.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/admin/news/edit/admin_news_edit.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; -------------------------------------------------------------------------------- /miniprogram/cmpts/public/calendar/calendar_comm/calendar_comm_cmpt.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/public/calendar/calendar_meet/calendar_meet_cmpt.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/admin/mgr/list/admin_mgr_list.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; 2 | -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/admin/news/add/admin_news_add.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; 2 | -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/admin/product/edit/admin_product_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/workphoto/pages/admin/product/add/admin_product_add.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; 2 | -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/search/search.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "navigationBarTitleText": "搜索" 5 | } -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/images/home.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/WePhoto/HEAD/miniprogram/projects/workphoto/images/home.jpg -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/about/index/about_index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "enablePullDownRefresh": true 5 | } -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/about/list/about_list.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "enablePullDownRefresh": true 5 | } -------------------------------------------------------------------------------- /cloudfunctions/mcloud/project/workphoto/public/constants.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | // 首页推荐 3 | SETUP_HOME_VOUCH_KEY : 'SETUP_HOME_VOUCH_KEY', 4 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/public/poster/images/friend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/WePhoto/HEAD/miniprogram/cmpts/public/poster/images/friend.png -------------------------------------------------------------------------------- /miniprogram/cmpts/public/poster/images/wechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/WePhoto/HEAD/miniprogram/cmpts/public/poster/images/wechat.png -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/images/my/all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/WePhoto/HEAD/miniprogram/projects/workphoto/images/my/all.png -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/images/my/out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/WePhoto/HEAD/miniprogram/projects/workphoto/images/my/out.png -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/images/my/use.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/WePhoto/HEAD/miniprogram/projects/workphoto/images/my/use.png -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/meet/content/meet_content.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "navigationBarTitleText": "作品详情" 5 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/public/poster/poster_cmpt.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "poster": "./wxa-plugin-canvas/poster" 5 | } 6 | } -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/images/menu/coach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/WePhoto/HEAD/miniprogram/projects/workphoto/images/menu/coach.png -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/images/menu/kemu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/WePhoto/HEAD/miniprogram/projects/workphoto/images/menu/kemu.png -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/images/my/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/WePhoto/HEAD/miniprogram/projects/workphoto/images/my/cancel.png -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/images/my/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/WePhoto/HEAD/miniprogram/projects/workphoto/images/my/check.png -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/images/tabbar/day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/WePhoto/HEAD/miniprogram/projects/workphoto/images/tabbar/day.png -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/images/tabbar/my.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/WePhoto/HEAD/miniprogram/projects/workphoto/images/tabbar/my.png -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/news/detail/news_detail.wxss: -------------------------------------------------------------------------------- 1 | @import "../../../../../style/public/detail.wxss"; 2 | @import "../../../style/skin.wxss"; -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/images/menu/enroll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/WePhoto/HEAD/miniprogram/projects/workphoto/images/menu/enroll.png -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/images/menu/notice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/WePhoto/HEAD/miniprogram/projects/workphoto/images/menu/notice.png -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/images/tabbar/cate2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/WePhoto/HEAD/miniprogram/projects/workphoto/images/tabbar/cate2.png -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/images/tabbar/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/WePhoto/HEAD/miniprogram/projects/workphoto/images/tabbar/home.png -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/images/tabbar/news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/WePhoto/HEAD/miniprogram/projects/workphoto/images/tabbar/news.png -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/meet/content/meet_content.wxss: -------------------------------------------------------------------------------- 1 | @import "../../../../../style/public/detail.wxss"; 2 | @import "../../../style/skin.wxss"; -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/news/cate1/news_cate1.wxss: -------------------------------------------------------------------------------- 1 | @import "../../../../../style/public/comm_box_list.wxss"; 2 | @import "../../../style/skin.wxss"; -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/news/index/news_index.wxss: -------------------------------------------------------------------------------- 1 | @import "../../../../../style/public/comm_box_list.wxss"; 2 | @import "../../../style/skin.wxss"; -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/product/detail/product_detail.wxss: -------------------------------------------------------------------------------- 1 | @import "../../../../../style/public/detail.wxss"; 2 | @import "../../../style/skin.wxss"; -------------------------------------------------------------------------------- /miniprogram/cmpts/biz/detail/detail_cmpt.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "cmpt-poster": "/cmpts/public/poster/poster_cmpt" 5 | } 6 | } -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/images/tabbar/day_cur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/WePhoto/HEAD/miniprogram/projects/workphoto/images/tabbar/day_cur.png -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/images/tabbar/home_cur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/WePhoto/HEAD/miniprogram/projects/workphoto/images/tabbar/home_cur.png -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/images/tabbar/my_cur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/WePhoto/HEAD/miniprogram/projects/workphoto/images/tabbar/my_cur.png -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/images/tabbar/news_cur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/WePhoto/HEAD/miniprogram/projects/workphoto/images/tabbar/news_cur.png -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/about/index/about_index.wxss: -------------------------------------------------------------------------------- 1 | @import "../../../../../style/public/detail.wxss"; 2 | @import "../../../style/skin.wxss"; 3 | -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/my/fav/my_fav.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "enablePullDownRefresh": true, 4 | "navigationBarTitleText": "我的收藏" 5 | } -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/my/foot/my_foot.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "enablePullDownRefresh": true, 4 | "navigationBarTitleText": "历史浏览" 5 | } -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/images/tabbar/cate2_cur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanbouking/WePhoto/HEAD/miniprogram/projects/workphoto/images/tabbar/cate2_cur.png -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/meet/index/meet_index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "disableScroll": true, 5 | "navigationBarTitleText": "预约" 6 | } -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/news/cate1/news_cate1.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "disableScroll": true, 5 | "navigationBarTitleText": "通知公告" 6 | } -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/news/cate2/news_cate2.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "disableScroll": true, 5 | "navigationBarTitleText": "学员风采" 6 | } -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/news/index/news_index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "disableScroll": true, 5 | "navigationBarTitleText": "公告通知" 6 | } -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/default/index/default_index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "enablePullDownRefresh": true, 4 | "navigationStyle": "custom" 5 | } -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/product/index/product_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/workphoto/pages/my/index/my_index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | 4 | }, 5 | "enablePullDownRefresh": true, 6 | "navigationBarTitleText": "个人中心" 7 | } -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/work/meet/scan/work_meet_scan.wxss: -------------------------------------------------------------------------------- 1 | @import "../../../admin/meet/scan/admin_meet_scan.wxss"; 2 | @import '../../../../style/work.wxss'; 3 | 4 | -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/work/meet/temp/work_meet_temp.wxss: -------------------------------------------------------------------------------- 1 | @import "../../../admin/meet/temp/admin_meet_temp.wxss"; 2 | @import "../../../../style/work.wxss"; 3 | 4 | -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/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/workphoto/pages/meet/my_join_list/meet_my_join_list.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "disableScroll": true, 5 | "navigationBarTitleText": "我的预约" 6 | } -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/work/meet/join/work_meet_join.wxss: -------------------------------------------------------------------------------- 1 | @import "../../../admin/meet/join/admin_meet_join.wxss"; 2 | @import '../../../../style/work.wxss'; 3 | 4 | 5 | -------------------------------------------------------------------------------- /cloudfunctions/mcloud/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "permissions": { 3 | "openapi": ["wxacode.getUnlimited", "security.imgSecCheck", "security.msgSecCheck","serviceMarket.invokeService"] 4 | } 5 | } -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/search/search.wxss: -------------------------------------------------------------------------------- 1 | @import "../../style/skin.wxss"; 2 | @import "../../../../style/project/search_style.wxss"; 3 | .bg-project { 4 | color:#000!important; 5 | } -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/meet/my_join_detail/meet_my_join_detail.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "enablePullDownRefresh": true, 5 | "navigationBarTitleText": "我的预约详情" 6 | } -------------------------------------------------------------------------------- /cloudfunctions/mcloud/project/workphoto/public/project_config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | // ## 缓存相关 3 | CACHE_CALENDAR_TIME: 60 * 30, //日历缓存 4 | 5 | // 每个时段最大预约次数 6 | MEET_MAX_JOIN_CNT: 1, 7 | 8 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/public/form/form_show/content/form_show_content.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "cmpt-editor": "/cmpts/public/editor/editor_cmpt" 4 | }, 5 | "navigationBarTitleText": "详细内容" 6 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/public/poster/wxa-plugin-canvas/poster/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /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/workphoto/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/workphoto/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/workphoto/pages/admin/mgr/add/admin_mgr_add.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "navigationBarBackgroundColor": "#2499f2", 4 | "navigationBarTextStyle": "white", 5 | "navigationBarTitleText": "添加管理员" 6 | } -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/admin/news/list/admin_news_list.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "navigationBarBackgroundColor": "#2499f2", 5 | "navigationBarTextStyle": "white", 6 | "disableScroll": true 7 | } -------------------------------------------------------------------------------- /cloudfunctions/mcloud/framework/utils/constant.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Notes: 通用常量定义 3 | * Ver : CCMiniCloud Framework 2.32.1 ALL RIGHTS RESERVED BY cclinux0730 (wechat) 4 | * Date: 2020-09-05 04:00:00 5 | */ 6 | module.exports = { 7 | 8 | } -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/admin/meet/list/admin_meet_list.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | 4 | }, 5 | "navigationBarBackgroundColor": "#2499f2", 6 | "navigationBarTextStyle": "white", 7 | "disableScroll": true 8 | } -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/admin/mgr/list/admin_mgr_list.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "navigationBarBackgroundColor": "#2499f2", 4 | "navigationBarTextStyle": "white", 5 | "navigationBarTitleText": "管理员管理" 6 | } -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/admin/mgr/pwd/admin_mgr_pwd.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "navigationBarBackgroundColor": "#2499f2", 4 | "navigationBarTextStyle": "white", 5 | "navigationBarTitleText": "管理员密码修改" 6 | } -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/admin/product/list/admin_product_list.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "navigationBarBackgroundColor": "#2499f2", 5 | "navigationBarTextStyle": "white", 6 | "disableScroll": true 7 | } -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/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/workphoto/pages/work/meet/time/work_meet_time.wxss: -------------------------------------------------------------------------------- 1 | @import "../../../admin/meet/time/admin_meet_time.wxss"; 2 | @import "../../../../style/work.wxss"; 3 | 4 | 5 | .time-oprt { 6 | color: var(--workColor); 7 | } -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/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/workphoto/pages/my/edit/my_edit.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "cmpt-form-show": "/cmpts/public/form/form_show/form_show_cmpt" 4 | }, 5 | "enablePullDownRefresh": true, 6 | "navigationBarTitleText": "个人资料" 7 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/public/picker_multi/picker_multi_cmpt.wxss: -------------------------------------------------------------------------------- 1 | .picker-cmpt { 2 | line-height: 100rpx; 3 | font-size: 28rpx; 4 | text-overflow: ellipsis; 5 | white-space: nowrap; 6 | overflow: hidden; 7 | width: 100%; 8 | text-align: right; 9 | } -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/meet/join/meet_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/workphoto/pages/work/meet/join/work_meet_join.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | 4 | }, 5 | "navigationBarBackgroundColor": "#1C9399", 6 | "navigationBarTextStyle": "white", 7 | "navigationBarTitleText": "分时段预约名单" 8 | } -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/admin/meet/join/admin_meet_join.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | 4 | }, 5 | "navigationBarBackgroundColor": "#2499f2", 6 | "navigationBarTextStyle": "white", 7 | "navigationBarTitleText": "分时段预约名单" 8 | } -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/admin/meet/list/admin_meet_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/workphoto/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/workphoto/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/workphoto/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/workphoto/pages/admin/product/list/admin_product_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/workphoto/pages/meet/calendar/meet_calendar.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "cmpt-calendar": "/cmpts/public/calendar/calendar_comm/calendar_comm_cmpt" 4 | }, 5 | "enablePullDownRefresh": true, 6 | "navigationBarTitleText": "预约日历" 7 | } -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/work/meet/time/work_meet_time.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /miniprogram/cmpts/public/poster/wxa-plugin-canvas/index/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/admin/meet/time/admin_meet_time.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/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/workphoto/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/workphoto/pages/work/index/home/work_home.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "enablePullDownRefresh": true, 5 | "navigationBarBackgroundColor": "#1C9399", 6 | "navigationBarTextStyle": "white", 7 | "navigationBarTitleText": "摄影师平台" 8 | } -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/work/index/login/work_login.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | 4 | }, 5 | "disableScroll": true, 6 | "navigationBarBackgroundColor": "#1C9399", 7 | "navigationBarTitleText": "摄影师平台", 8 | "navigationBarTextStyle": "white" 9 | } -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/work/index/pwd/work_pwd.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "enablePullDownRefresh": true, 5 | "navigationBarBackgroundColor": "#1C9399", 6 | "navigationBarTextStyle": "white", 7 | "navigationBarTitleText": "修改密码" 8 | } -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/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/workphoto/pages/admin/news/add/admin_news_add.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/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/workphoto/pages/admin/meet/scan/admin_meet_scan.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/admin/meet/temp/admin_meet_temp.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | 4 | }, 5 | "navigationBarBackgroundColor": "#2499f2", 6 | "navigationBarTextStyle": "white", 7 | "enablePullDownRefresh": true, 8 | "navigationBarTitleText": "时间模板选择" 9 | } -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/admin/product/add/admin_product_add.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/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/workphoto/pages/work/meet/temp/work_meet_temp.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | 4 | }, 5 | "enablePullDownRefresh": true, 6 | "navigationBarBackgroundColor": "#1C9399", 7 | "navigationBarTextStyle": "white", 8 | "navigationBarTitleText": "时间模板选择" 9 | } -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/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/workphoto/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/workphoto/pages/product/detail/product_detail.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "cmpt-swiper": "/cmpts/public/swiper/swiper_cmpt", 4 | "cmpt-detail": "/cmpts/biz/detail/detail_cmpt" 5 | }, 6 | "enablePullDownRefresh": true, 7 | "navigationBarTitleText": "样片详情" 8 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/biz/foot/foot_cmpt.wxml: -------------------------------------------------------------------------------- 1 | 2 | © {{company}} 3 | {{ver}} 4 | -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/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/workphoto/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/workphoto/pages/work/meet/scan/work_meet_scan.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /miniprogram/tpls/public/top_tpl.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/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/workphoto/pages/admin/meet/export/admin_join_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/workphoto/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/workphoto/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/workphoto/pages/admin/meet/add/admin_meet_add.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/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/workphoto/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/workphoto/pages/meet/detail/meet_detail.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "cmpt-custom-nav": "/cmpts/public/custom_nav/custom_nav_cmpt", 4 | "cmpt-detail": "/cmpts/biz/detail/detail_cmpt" 5 | }, 6 | "navigationStyle": "custom", 7 | "enablePullDownRefresh": true, 8 | "navigationBarTitleText": "" 9 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/biz/foot/foot_cmpt.wxss: -------------------------------------------------------------------------------- 1 | @import "../../../style/public/project.wxss"; 2 | 3 | .site-footer { 4 | width: 100%; 5 | display: flex; 6 | flex-direction: column; 7 | justify-content: center; 8 | align-items: center; 9 | font-size: 24rpx; 10 | color: #aaa; 11 | margin-top: 20rpx; 12 | margin-bottom: 20rpx; 13 | } -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/work/meet/scan/work_meet_scan.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "cmpt-picker-time": "/cmpts/public/picker_time/picker_time_cmpt" 4 | }, 5 | "navigationBarBackgroundColor": "#1C9399", 6 | "navigationBarTextStyle": "white", 7 | "enablePullDownRefresh": true, 8 | "navigationBarTitleText": "扫码核销" 9 | } -------------------------------------------------------------------------------- /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/workphoto/pages/admin/meet/scan/admin_meet_scan.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "cmpt-picker-time": "/cmpts/public/picker_time/picker_time_cmpt" 4 | }, 5 | "navigationBarBackgroundColor": "#2499f2", 6 | "navigationBarTextStyle": "white", 7 | "enablePullDownRefresh": true, 8 | "navigationBarTitleText": "管理员扫码核销" 9 | } -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/my/edit/my_edit.wxss: -------------------------------------------------------------------------------- 1 | @import "../../../style/skin.wxss"; 2 | .submit-line { 3 | width: 100%; 4 | } 5 | 6 | .form-group .mobile { 7 | flex: 1; 8 | text-align: left; 9 | } 10 | 11 | .submit-line { 12 | width: 100%; 13 | } 14 | 15 | .form-group .mobile { 16 | flex: 1; 17 | text-align: left; 18 | } -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/work/meet/record/work_meet_record.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "cmpt-picker-time": "/cmpts/public/picker_time/picker_time_cmpt" 4 | }, 5 | "navigationBarBackgroundColor": "#1C9399", 6 | "navigationBarTextStyle": "white", 7 | "enablePullDownRefresh": true, 8 | "navigationBarTitleText": "预约名单统计" 9 | } -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/admin/meet/export/admin_join_export.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "cmpt-picker-time": "/cmpts/public/picker_time/picker_time_cmpt" 4 | }, 5 | "navigationBarBackgroundColor": "#2499f2", 6 | "navigationBarTextStyle": "white", 7 | "enablePullDownRefresh": true, 8 | "navigationBarTitleText": "预约名单导出" 9 | } -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/admin/meet/record/admin_meet_record.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "cmpt-picker-time": "/cmpts/public/picker_time/picker_time_cmpt" 4 | }, 5 | "navigationBarBackgroundColor": "#2499f2", 6 | "navigationBarTextStyle": "white", 7 | "enablePullDownRefresh": true, 8 | "navigationBarTitleText": "预约名单统计" 9 | } -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/admin/meet/temp/admin_meet_temp.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /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/workphoto/pages/admin/meet/join/admin_meet_join.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/admin/meet/record/admin_meet_record.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/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/workphoto/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/workphoto/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/projects/workphoto/pages/admin/product/add/admin_product_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/workphoto/pages/admin/product/edit/admin_product_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/workphoto/pages/work/meet/temp/work_meet_temp.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /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/workphoto/pages/admin/meet/record/admin_meet_record.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; 2 | @import '../../../../../../style/base/table.wxss'; 3 | 4 | .main-admin { 5 | width: 100%; 6 | box-sizing: border-box; 7 | padding: 0rpx 0rpx 30rpx; 8 | } 9 | 10 | .table .table-form .oprt .min-btn { 11 | padding: 5rpx 30rpx; 12 | } -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/admin/news/edit/admin_news_edit.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/work/meet/record/work_meet_record.wxss: -------------------------------------------------------------------------------- 1 | @import "../../../admin/meet/record/admin_meet_record.wxss"; 2 | @import '../../../../style/work.wxss'; 3 | 4 | 5 | .main-work { 6 | width: 100%; 7 | box-sizing: border-box; 8 | padding: 0rpx 0rpx 30rpx; 9 | } 10 | 11 | .table .table-form .oprt .min-btn { 12 | padding: 5rpx 30rpx; 13 | } -------------------------------------------------------------------------------- /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/projects/workphoto/pages/admin/product/edit/admin_product_edit.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/work/meet/record/work_meet_record.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/admin/meet/time/admin_meet_time.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "cmpt-picker-multi": "/cmpts/public/picker_multi/picker_multi_cmpt", 4 | "cmpt-calendar": "/cmpts/public/calendar/calendar_meet/calendar_meet_cmpt" 5 | }, 6 | "navigationBarBackgroundColor": "#2499f2", 7 | "navigationBarTextStyle": "white", 8 | "navigationBarTitleText": "时间设置" 9 | } -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/work/meet/join/work_meet_join.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /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/workphoto/pages/admin/setup/about_list/admin_setup_about_list.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; 2 | 3 | page { 4 | background-color: #f8f8f8; 5 | } 6 | 7 | .main-admin { 8 | padding: 40rpx 0; 9 | } 10 | 11 | .admin-comm-list .item { 12 | margin-bottom: 40rpx; 13 | } 14 | 15 | .admin-comm-list .item .header .left { 16 | font-size: 32rpx !important; 17 | } -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/admin/setup/about/admin_setup_about.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; 2 | 3 | .main-admin { 4 | width: 100%; 5 | box-sizing: border-box; 6 | padding: 30rpx 20rpx; 7 | padding-bottom: 200rpx; 8 | } 9 | 10 | .form-group { 11 | padding: 1rpx 1rpx; 12 | overflow: hidden; 13 | } 14 | 15 | .btn-bottom-admin>view { 16 | width: 100%; 17 | } -------------------------------------------------------------------------------- /cloudfunctions/mcloud/project/workphoto/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; -------------------------------------------------------------------------------- /cloudfunctions/mcloud/project/workphoto/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/workphoto/pages/work/meet/time/work_meet_time.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "cmpt-picker-multi": "/cmpts/public/picker_multi/picker_multi_cmpt", 4 | "cmpt-calendar": "/cmpts/public/calendar/calendar_meet/calendar_meet_cmpt" 5 | }, 6 | "enablePullDownRefresh": true, 7 | "navigationBarBackgroundColor": "#1C9399", 8 | "navigationBarTextStyle": "white", 9 | "navigationBarTitleText": "排期时段设置" 10 | } -------------------------------------------------------------------------------- /project.private.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "setting": { 3 | "compileHotReLoad": true, 4 | "urlCheck": false 5 | }, 6 | "description": "项目私有配置文件。此文件中的内容将覆盖 project.config.json 中的相同字段。项目的改动优先同步到此文件中。详见文档:https://developers.weixin.qq.com/miniprogram/dev/devtools/projectconfig.html", 7 | "projectname": "%E6%91%84%E5%BD%B1%E5%B8%88%E9%A2%84%E7%BA%A6%E5%B0%8F%E7%A8%8B%E5%BA%8F-gitee", 8 | "condition": {}, 9 | "libVersion": "2.30.2" 10 | } -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/my/edit/my_edit.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/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/project/workphoto/service/work/work_meet_service.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Notes: 服务者预约模块业务 3 | * Date: 2023-01-15 07:48:00 4 | * Ver : CCMiniCloud Framework 2.0.8 ALL RIGHTS RESERVED BY cclinux0730 (wechat) 5 | */ 6 | 7 | const BaseProjectWorkService = require('./base_project_work_service.js'); 8 | 9 | 10 | class WorkMeetService extends BaseProjectWorkService { 11 | 12 | 13 | 14 | } 15 | 16 | module.exports = WorkMeetService; -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/news/cate1/news_cate1.js: -------------------------------------------------------------------------------- 1 | let behavior = require('../../../../../comm/behavior/news_index_bh.js'); 2 | const ProjectBiz = require('../../../biz/project_biz.js'); 3 | const NewsBiz = require('../../../biz/news_biz.js'); 4 | 5 | 6 | Page({ 7 | behaviors: [behavior], 8 | 9 | onLoad: function (options) { 10 | ProjectBiz.initPage(this); 11 | this._setCate(NewsBiz.getCateList(), options, 1); 12 | 13 | }, 14 | }) -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/news/cate2/news_cate2.js: -------------------------------------------------------------------------------- 1 | let behavior = require('../../../../../comm/behavior/news_index_bh.js'); 2 | const ProjectBiz = require('../../../biz/project_biz.js'); 3 | const NewsBiz = require('../../../biz/news_biz.js'); 4 | 5 | 6 | Page({ 7 | behaviors: [behavior], 8 | 9 | onLoad: function (options) { 10 | ProjectBiz.initPage(this); 11 | this._setCate(NewsBiz.getCateList(), options, 2); 12 | 13 | }, 14 | }) -------------------------------------------------------------------------------- /cloudfunctions/mcloud/framework/core/app_code.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Notes: 错误代码定义 3 | * Ver : CCMiniCloud Framework 2.4.1 ALL RIGHTS RESERVED BY Cclinux0730 (wechat) 4 | * Date: 2020-09-05 04:00:00 5 | */ 6 | module.exports = { 7 | SUCC: 200, 8 | SVR: 500, // 服务器错误 9 | LOGIC: 1600, //逻辑错误 10 | DATA: 1301, // 数据校验错误 11 | HEADER: 1302, // header 校验错误 12 | 13 | 14 | //2000开始为业务错误代码, 15 | 16 | ADMIN_ERROR: 2401, //管理员错误 17 | WORK_ERROR: 2501 //服务者错误 18 | } -------------------------------------------------------------------------------- /miniprogram/projects/workphoto/pages/news/cate2/news_cate2.wxml: -------------------------------------------------------------------------------- 1 | 2 |