├── miniprogram ├── 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 │ │ ├── editor │ │ │ └── editor_cmpt.json │ │ ├── img │ │ │ ├── img_upload_cmpt.json │ │ │ ├── img_upload_cmpt.wxss │ │ │ └── img_upload_cmpt.wxml │ │ ├── list │ │ │ └── comm_list_cmpt.json │ │ ├── modal │ │ │ ├── modal_cmpt.json │ │ │ ├── modal_cmpt.wxss │ │ │ └── modal_cmpt.js │ │ ├── picker │ │ │ ├── picker_cmpt.json │ │ │ ├── picker_cmpt.wxss │ │ │ └── picker_cmpt.wxml │ │ ├── radio │ │ │ ├── radio_cmpt.json │ │ │ ├── radio_cmpt.wxml │ │ │ └── radio_cmpt.wxss │ │ ├── swiper │ │ │ ├── swiper_cmpt.json │ │ │ ├── swiper_cmpt.wxss │ │ │ ├── swiper_cmpt.wxml │ │ │ └── swiper_cmpt.js │ │ ├── table │ │ │ ├── table_cmpt.json │ │ │ ├── table_cmpt.wxml │ │ │ └── table_cmpt.js │ │ ├── checkbox │ │ │ ├── checkbox_cmpt.json │ │ │ ├── checkbox_cmpt.wxml │ │ │ ├── checkbox_cmpt.wxss │ │ │ └── checkbox_cmpt.js │ │ ├── picker_time │ │ │ ├── picker_time_cmpt.wxss │ │ │ ├── picker_time_cmpt.json │ │ │ └── picker_time_cmpt.wxml │ │ ├── form │ │ │ ├── form_set │ │ │ │ ├── form_set_cmpt.json │ │ │ │ ├── field │ │ │ │ │ ├── form_set_field.json │ │ │ │ │ └── form_set_field.wxss │ │ │ │ └── form_set_cmpt.wxss │ │ │ └── form_show │ │ │ │ ├── content │ │ │ │ ├── form_show_content.json │ │ │ │ ├── form_show_content.wxml │ │ │ │ └── form_show_content.wxss │ │ │ │ └── form_show_cmpt.json │ │ ├── picker_multi │ │ │ ├── picker_multi_cmpt.json │ │ │ ├── picker_multi_cmpt.wxss │ │ │ └── picker_multi_cmpt.wxml │ │ └── calendar │ │ │ ├── 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 ├── pages │ └── test1 │ │ ├── test1.wxml │ │ └── test1.js ├── projects │ └── TRIP1 │ │ ├── pages │ │ ├── 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 │ │ ├── search │ │ │ ├── search.wxml │ │ │ ├── search.json │ │ │ ├── search.wxss │ │ │ └── search.js │ │ ├── admin │ │ │ ├── mgr │ │ │ │ ├── add │ │ │ │ │ ├── admin_mgr_add.wxss │ │ │ │ │ ├── admin_mgr_add.json │ │ │ │ │ └── admin_mgr_add.wxml │ │ │ │ ├── pwd │ │ │ │ │ ├── admin_mgr_pwd.wxss │ │ │ │ │ ├── admin_mgr_pwd.json │ │ │ │ │ ├── admin_mgr_pwd.wxml │ │ │ │ │ └── admin_mgr_pwd.js │ │ │ │ ├── edit │ │ │ │ │ ├── admin_mgr_edit.wxss │ │ │ │ │ └── admin_mgr_edit.json │ │ │ │ ├── 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 │ │ │ ├── album │ │ │ │ ├── add │ │ │ │ │ ├── admin_album_add.wxss │ │ │ │ │ ├── admin_album_add.wxml │ │ │ │ │ └── admin_album_add.json │ │ │ │ ├── edit │ │ │ │ │ ├── admin_album_edit.wxss │ │ │ │ │ ├── admin_album_edit.wxml │ │ │ │ │ └── admin_album_edit.json │ │ │ │ ├── list │ │ │ │ │ ├── admin_album_list.wxss │ │ │ │ │ └── admin_album_list.json │ │ │ │ └── admin_album_form_tpl.wxml │ │ │ ├── product │ │ │ │ ├── edit │ │ │ │ │ ├── admin_product_edit.wxss │ │ │ │ │ ├── admin_product_edit.wxml │ │ │ │ │ └── admin_product_edit.json │ │ │ │ ├── add │ │ │ │ │ ├── admin_product_add.wxss │ │ │ │ │ ├── admin_product_add.wxml │ │ │ │ │ └── admin_product_add.json │ │ │ │ ├── list │ │ │ │ │ ├── admin_product_list.wxss │ │ │ │ │ └── admin_product_list.json │ │ │ │ └── admin_product_form_tpl.wxml │ │ │ ├── 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 │ │ │ ├── meet │ │ │ │ ├── cover │ │ │ │ │ ├── admin_meet_cover.json │ │ │ │ │ └── admin_meet_cover.wxss │ │ │ │ ├── join │ │ │ │ │ └── admin_meet_join.json │ │ │ │ ├── list │ │ │ │ │ ├── admin_meet_list.wxss │ │ │ │ │ └── admin_meet_list.json │ │ │ │ ├── self │ │ │ │ │ ├── admin_meet_self.json │ │ │ │ │ ├── admin_meet_self.wxss │ │ │ │ │ └── admin_meet_self.wxml │ │ │ │ ├── temp │ │ │ │ │ ├── admin_temp_select.json │ │ │ │ │ └── admin_temp_select.wxss │ │ │ │ ├── export │ │ │ │ │ ├── admin_join_export.wxss │ │ │ │ │ └── admin_join_export.json │ │ │ │ ├── record │ │ │ │ │ ├── admin_record_list.json │ │ │ │ │ └── admin_record_list.wxss │ │ │ │ ├── scan │ │ │ │ │ ├── admin_meet_scan.json │ │ │ │ │ ├── admin_meet_scan.wxml │ │ │ │ │ └── admin_meet_scan.wxss │ │ │ │ ├── time │ │ │ │ │ └── admin_meet_time.json │ │ │ │ └── edit │ │ │ │ │ ├── admin_meet_edit.json │ │ │ │ │ └── admin_meet_edit.wxss │ │ │ ├── index │ │ │ │ ├── login │ │ │ │ │ ├── admin_login.json │ │ │ │ │ ├── admin_login.wxml │ │ │ │ │ ├── admin_login.js │ │ │ │ │ └── admin_login.wxss │ │ │ │ └── home │ │ │ │ │ ├── admin_home.json │ │ │ │ │ └── admin_home.wxss │ │ │ ├── setup │ │ │ │ ├── qr │ │ │ │ │ ├── admin_setup_qr.json │ │ │ │ │ ├── admin_setup_qr.wxml │ │ │ │ │ └── admin_setup_qr.wxss │ │ │ │ ├── about_list │ │ │ │ │ ├── admin_setup_about_list.json │ │ │ │ │ ├── admin_setup_about_list.wxss │ │ │ │ │ ├── admin_setup_about_list.wxml │ │ │ │ │ └── admin_setup_about_list.js │ │ │ │ └── about │ │ │ │ │ ├── admin_setup_about.json │ │ │ │ │ ├── admin_setup_about.wxss │ │ │ │ │ └── admin_setup_about.wxml │ │ │ └── content │ │ │ │ ├── admin_content.json │ │ │ │ ├── admin_content.wxml │ │ │ │ ├── admin_content.wxss │ │ │ │ └── admin_content.js │ │ ├── about │ │ │ ├── index │ │ │ │ ├── about_index.wxml │ │ │ │ ├── about_index.json │ │ │ │ ├── about_index.wxss │ │ │ │ └── about_index.js │ │ │ └── service │ │ │ │ ├── about_service.json │ │ │ │ └── about_service.js │ │ ├── meet │ │ │ ├── self │ │ │ │ ├── meet_self.wxml │ │ │ │ ├── meet_self.json │ │ │ │ └── meet_self.wxss │ │ │ ├── index │ │ │ │ ├── meet_index.wxss │ │ │ │ ├── meet_index.json │ │ │ │ ├── meet_index.wxml │ │ │ │ └── meet_index.js │ │ │ ├── my_join_list │ │ │ │ ├── meet_my_join_list.json │ │ │ │ └── meet_my_join_list.wxss │ │ │ ├── my_join_detail │ │ │ │ └── meet_my_join_detail.json │ │ │ ├── detail │ │ │ │ └── meet_detail.json │ │ │ ├── join │ │ │ │ ├── meet_join.json │ │ │ │ ├── meet_join.wxss │ │ │ │ └── meet_join.wxml │ │ │ └── calendar │ │ │ │ ├── meet_calendar.json │ │ │ │ ├── meet_calendar.wxss │ │ │ │ └── meet_calendar.wxml │ │ ├── news │ │ │ ├── detail │ │ │ │ ├── news_detail.wxss │ │ │ │ ├── news_detail.json │ │ │ │ └── news_detail.wxml │ │ │ ├── cate1 │ │ │ │ ├── news_cate1.wxss │ │ │ │ ├── news_cate1.json │ │ │ │ ├── news_cate1.js │ │ │ │ └── news_cate1.wxml │ │ │ ├── cate2 │ │ │ │ ├── news_cate2.wxss │ │ │ │ ├── news_cate2.json │ │ │ │ ├── news_cate2.wxml │ │ │ │ └── news_cate2.js │ │ │ └── index │ │ │ │ ├── news_index.wxss │ │ │ │ ├── news_index.json │ │ │ │ ├── news_index.wxml │ │ │ │ └── news_index.js │ │ ├── album │ │ │ ├── detail │ │ │ │ ├── album_detail.wxss │ │ │ │ ├── album_detail.json │ │ │ │ └── album_detail.wxml │ │ │ └── index │ │ │ │ └── album_index.json │ │ ├── product │ │ │ ├── index │ │ │ │ ├── product_index.json │ │ │ │ └── product_index.wxml │ │ │ └── detail │ │ │ │ ├── product_detail.json │ │ │ │ └── product_detail.wxss │ │ └── default │ │ │ └── index │ │ │ └── default_index.json │ │ ├── images │ │ ├── home │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── b1.jpg │ │ │ ├── b3.jpg │ │ │ ├── b4.jpg │ │ │ └── b5.jpg │ │ ├── service │ │ │ ├── d.png │ │ │ ├── l.png │ │ │ ├── p.png │ │ │ ├── t.png │ │ │ ├── tt.png │ │ │ └── bus.png │ │ ├── tabbar │ │ │ ├── my.png │ │ │ ├── gong.png │ │ │ ├── home.png │ │ │ ├── jing.png │ │ │ ├── my_cur.png │ │ │ ├── gong_cur.png │ │ │ ├── home_cur.png │ │ │ ├── jing_cur.png │ │ │ ├── service.png │ │ │ └── service_cur.png │ │ ├── menu │ │ │ ├── news_1.png │ │ │ ├── news_2.png │ │ │ ├── news_3.png │ │ │ └── news_4.png │ │ └── default_index_bg.png │ │ └── biz │ │ ├── project_biz.js │ │ ├── admin_album_biz.js │ │ ├── admin_product_biz.js │ │ ├── album_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 │ │ ├── base_biz.js │ │ ├── fav_biz.js │ │ └── foot_biz.js │ └── behavior │ │ ├── my_foot_bh.js │ │ ├── news_index_bh.js │ │ └── my_fav_bh.js ├── setting │ └── setting.js ├── helper │ ├── form_helper.js │ ├── file_helper.js │ ├── helper.js │ └── cache_helper.js └── app.js ├── demo ├── 10服务.png ├── 1首页.png ├── 2景点.png ├── 3攻略.png ├── 7美食.png ├── 8特产.png ├── 二维码.png ├── 11后台管理.png ├── 16后台-攻略.png ├── 4景点详情.png ├── 5景点预约.png ├── 6预约详情.png ├── 9停车预约.png ├── 12后台-内容管理.png ├── 13后台-预约管理.png ├── 14后台-预约菜单.png ├── 17后台-景点管理.png ├── 15后台-预约时间设置.png ├── author-base.png └── 旅游景区门户小程序 (2).jpeg ├── 旅游景区门户小程序安装使用手册.docx ├── cloudfunctions └── mcloud │ ├── project │ └── TRIP1 │ │ ├── public │ │ ├── constants.js │ │ └── project_config.js │ │ ├── controller │ │ ├── my_controller.js │ │ ├── base_project_controller.js │ │ ├── admin │ │ │ ├── base_project_admin_controller.js │ │ │ └── admin_home_controller.js │ │ ├── check_controller.js │ │ └── home_controller.js │ │ ├── model │ │ ├── base_project_model.js │ │ ├── fav_model.js │ │ ├── day_model.js │ │ ├── album_model.js │ │ ├── product_model.js │ │ ├── news_model.js │ │ └── user_model.js │ │ └── service │ │ ├── admin │ │ └── base_project_admin_service.js │ │ └── home_service.js │ ├── config.json │ ├── index.js │ ├── framework │ ├── utils │ │ ├── constant.js │ │ ├── math_util.js │ │ ├── util.js │ │ └── setup │ │ │ └── setup_model.js │ ├── platform │ │ ├── model │ │ │ ├── base_model.js │ │ │ ├── log_model.js │ │ │ └── admin_model.js │ │ └── service │ │ │ └── base_service.js │ ├── 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/cmpts/public/poster/wxa-plugin-canvas/poster/index.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/10服务.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianduoduosanqian/WeScenicSpot/HEAD/demo/10服务.png -------------------------------------------------------------------------------- /demo/1首页.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianduoduosanqian/WeScenicSpot/HEAD/demo/1首页.png -------------------------------------------------------------------------------- /demo/2景点.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianduoduosanqian/WeScenicSpot/HEAD/demo/2景点.png -------------------------------------------------------------------------------- /demo/3攻略.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianduoduosanqian/WeScenicSpot/HEAD/demo/3攻略.png -------------------------------------------------------------------------------- /demo/7美食.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianduoduosanqian/WeScenicSpot/HEAD/demo/7美食.png -------------------------------------------------------------------------------- /demo/8特产.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianduoduosanqian/WeScenicSpot/HEAD/demo/8特产.png -------------------------------------------------------------------------------- /demo/二维码.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianduoduosanqian/WeScenicSpot/HEAD/demo/二维码.png -------------------------------------------------------------------------------- /demo/11后台管理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianduoduosanqian/WeScenicSpot/HEAD/demo/11后台管理.png -------------------------------------------------------------------------------- /demo/16后台-攻略.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianduoduosanqian/WeScenicSpot/HEAD/demo/16后台-攻略.png -------------------------------------------------------------------------------- /demo/4景点详情.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianduoduosanqian/WeScenicSpot/HEAD/demo/4景点详情.png -------------------------------------------------------------------------------- /demo/5景点预约.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianduoduosanqian/WeScenicSpot/HEAD/demo/5景点预约.png -------------------------------------------------------------------------------- /demo/6预约详情.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianduoduosanqian/WeScenicSpot/HEAD/demo/6预约详情.png -------------------------------------------------------------------------------- /demo/9停车预约.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianduoduosanqian/WeScenicSpot/HEAD/demo/9停车预约.png -------------------------------------------------------------------------------- /miniprogram/app.wxss: -------------------------------------------------------------------------------- 1 | @import "style/base/comm.wxss"; 2 | @import "style/public/project.wxss"; 3 | -------------------------------------------------------------------------------- /demo/12后台-内容管理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianduoduosanqian/WeScenicSpot/HEAD/demo/12后台-内容管理.png -------------------------------------------------------------------------------- /demo/13后台-预约管理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianduoduosanqian/WeScenicSpot/HEAD/demo/13后台-预约管理.png -------------------------------------------------------------------------------- /demo/14后台-预约菜单.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianduoduosanqian/WeScenicSpot/HEAD/demo/14后台-预约菜单.png -------------------------------------------------------------------------------- /demo/17后台-景点管理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianduoduosanqian/WeScenicSpot/HEAD/demo/17后台-景点管理.png -------------------------------------------------------------------------------- /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 | } -------------------------------------------------------------------------------- /demo/15后台-预约时间设置.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianduoduosanqian/WeScenicSpot/HEAD/demo/15后台-预约时间设置.png -------------------------------------------------------------------------------- /demo/author-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianduoduosanqian/WeScenicSpot/HEAD/demo/author-base.png -------------------------------------------------------------------------------- /miniprogram/cmpts/public/editor/editor_cmpt.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/public/img/img_upload_cmpt.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/public/list/comm_list_cmpt.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/public/modal/modal_cmpt.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/public/picker/picker_cmpt.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/public/radio/radio_cmpt.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/public/swiper/swiper_cmpt.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/public/table/table_cmpt.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/pages/test1/test1.wxml: -------------------------------------------------------------------------------- 1 | 2 | pages/test1/test1.wxml 3 | -------------------------------------------------------------------------------- /旅游景区门户小程序安装使用手册.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianduoduosanqian/WeScenicSpot/HEAD/旅游景区门户小程序安装使用手册.docx -------------------------------------------------------------------------------- /demo/旅游景区门户小程序 (2).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianduoduosanqian/WeScenicSpot/HEAD/demo/旅游景区门户小程序 (2).jpeg -------------------------------------------------------------------------------- /miniprogram/cmpts/public/checkbox/checkbox_cmpt.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/public/picker_time/picker_time_cmpt.wxss: -------------------------------------------------------------------------------- 1 | /* cmpts/public/picker_time/picker_time_cmpt.wxss */ -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/pages/my/fav/my_fav.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/pages/search/search.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /miniprogram/cmpts/public/form/form_set/form_set_cmpt.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/public/picker_multi/picker_multi_cmpt.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/public/picker_time/picker_time_cmpt.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/pages/admin/mgr/add/admin_mgr_add.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/pages/admin/mgr/pwd/admin_mgr_pwd.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/pages/my/foot/my_foot.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /miniprogram/images/cover.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianduoduosanqian/WeScenicSpot/HEAD/miniprogram/images/cover.gif -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/pages/about/index/about_index.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/pages/admin/mgr/edit/admin_mgr_edit.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/pages/admin/news/edit/admin_news_edit.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/pages/meet/self/meet_self.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/TRIP1/pages/admin/album/add/admin_album_add.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; 2 | -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/pages/admin/album/edit/admin_album_edit.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/pages/admin/mgr/list/admin_mgr_list.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; 2 | -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/pages/admin/news/add/admin_news_add.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; 2 | -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/pages/admin/product/edit/admin_product_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/TRIP1/pages/admin/product/add/admin_product_add.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; 2 | -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/pages/search/search.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "navigationBarTitleText": "搜索" 5 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/public/swiper/swiper_cmpt.wxss: -------------------------------------------------------------------------------- 1 | .swiper { 2 | width: 100%; 3 | } 4 | .swiper-item-images { 5 | width: 100%; 6 | } -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/pages/about/service/about_service.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "navigationBarTitleText": "服务" 4 | } -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/pages/about/index/about_index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "enablePullDownRefresh": true 5 | } -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/pages/meet/self/meet_self.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "navigationBarTitleText": "自助签到" 5 | } -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/pages/search/search.wxss: -------------------------------------------------------------------------------- 1 | @import "../../style/skin.wxss"; 2 | @import "../../../../style/project/search_style.wxss"; -------------------------------------------------------------------------------- /cloudfunctions/mcloud/project/TRIP1/public/constants.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | // 首页推荐 3 | SETUP_HOME_VOUCH_KEY : 'SETUP_HOME_VOUCH_KEY', 4 | } -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/pages/news/detail/news_detail.wxss: -------------------------------------------------------------------------------- 1 | @import "../../../../../style/public/detail.wxss"; 2 | @import "../../../style/skin.wxss"; -------------------------------------------------------------------------------- /cloudfunctions/mcloud/project/TRIP1/public/project_config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | // ## 缓存相关 3 | CACHE_CALENDAR_TIME: 60 * 30, //日历缓存 4 | 5 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/public/poster/poster_cmpt.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "poster": "./wxa-plugin-canvas/poster" 5 | } 6 | } -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/images/home/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianduoduosanqian/WeScenicSpot/HEAD/miniprogram/projects/TRIP1/images/home/1.jpg -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/images/home/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianduoduosanqian/WeScenicSpot/HEAD/miniprogram/projects/TRIP1/images/home/2.jpg -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/images/home/b1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianduoduosanqian/WeScenicSpot/HEAD/miniprogram/projects/TRIP1/images/home/b1.jpg -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/images/home/b3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianduoduosanqian/WeScenicSpot/HEAD/miniprogram/projects/TRIP1/images/home/b3.jpg -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/images/home/b4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianduoduosanqian/WeScenicSpot/HEAD/miniprogram/projects/TRIP1/images/home/b4.jpg -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/images/home/b5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianduoduosanqian/WeScenicSpot/HEAD/miniprogram/projects/TRIP1/images/home/b5.jpg -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/pages/album/detail/album_detail.wxss: -------------------------------------------------------------------------------- 1 | @import "../../../../../style/public/detail.wxss"; 2 | @import "../../../style/skin.wxss"; -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/pages/meet/index/meet_index.wxss: -------------------------------------------------------------------------------- 1 | @import "../../../../../style/public/comm_box_list.wxss"; 2 | @import "../../../style/skin.wxss"; -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/pages/news/cate1/news_cate1.wxss: -------------------------------------------------------------------------------- 1 | @import "../../../../../style/public/comm_box_list.wxss"; 2 | @import "../../../style/skin.wxss"; -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/pages/news/cate2/news_cate2.wxss: -------------------------------------------------------------------------------- 1 | @import "../../../../../style/public/comm_box_list.wxss"; 2 | @import "../../../style/skin.wxss"; -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/pages/news/index/news_index.wxss: -------------------------------------------------------------------------------- 1 | @import "../../../../../style/public/comm_box_list.wxss"; 2 | @import "../../../style/skin.wxss"; -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/images/service/d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianduoduosanqian/WeScenicSpot/HEAD/miniprogram/projects/TRIP1/images/service/d.png -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/images/service/l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianduoduosanqian/WeScenicSpot/HEAD/miniprogram/projects/TRIP1/images/service/l.png -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/images/service/p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianduoduosanqian/WeScenicSpot/HEAD/miniprogram/projects/TRIP1/images/service/p.png -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/images/service/t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianduoduosanqian/WeScenicSpot/HEAD/miniprogram/projects/TRIP1/images/service/t.png -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/images/service/tt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianduoduosanqian/WeScenicSpot/HEAD/miniprogram/projects/TRIP1/images/service/tt.png -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/images/tabbar/my.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianduoduosanqian/WeScenicSpot/HEAD/miniprogram/projects/TRIP1/images/tabbar/my.png -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/pages/about/index/about_index.wxss: -------------------------------------------------------------------------------- 1 | @import "../../../../../style/public/detail.wxss"; 2 | @import "../../../style/skin.wxss"; 3 | -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/pages/my/fav/my_fav.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "enablePullDownRefresh": true, 4 | "navigationBarTitleText": "我的收藏" 5 | } -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/pages/my/foot/my_foot.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "enablePullDownRefresh": true, 4 | "navigationBarTitleText": "历史浏览" 5 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/biz/detail/detail_cmpt.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": { 4 | "cmpt-poster": "/cmpts/public/poster/poster_cmpt" 5 | } 6 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/public/poster/images/friend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianduoduosanqian/WeScenicSpot/HEAD/miniprogram/cmpts/public/poster/images/friend.png -------------------------------------------------------------------------------- /miniprogram/cmpts/public/poster/images/wechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianduoduosanqian/WeScenicSpot/HEAD/miniprogram/cmpts/public/poster/images/wechat.png -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/images/menu/news_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianduoduosanqian/WeScenicSpot/HEAD/miniprogram/projects/TRIP1/images/menu/news_1.png -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/images/menu/news_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianduoduosanqian/WeScenicSpot/HEAD/miniprogram/projects/TRIP1/images/menu/news_2.png -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/images/menu/news_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianduoduosanqian/WeScenicSpot/HEAD/miniprogram/projects/TRIP1/images/menu/news_3.png -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/images/menu/news_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianduoduosanqian/WeScenicSpot/HEAD/miniprogram/projects/TRIP1/images/menu/news_4.png -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/images/service/bus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianduoduosanqian/WeScenicSpot/HEAD/miniprogram/projects/TRIP1/images/service/bus.png -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/images/tabbar/gong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianduoduosanqian/WeScenicSpot/HEAD/miniprogram/projects/TRIP1/images/tabbar/gong.png -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/images/tabbar/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianduoduosanqian/WeScenicSpot/HEAD/miniprogram/projects/TRIP1/images/tabbar/home.png -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/images/tabbar/jing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianduoduosanqian/WeScenicSpot/HEAD/miniprogram/projects/TRIP1/images/tabbar/jing.png -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/images/tabbar/my_cur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianduoduosanqian/WeScenicSpot/HEAD/miniprogram/projects/TRIP1/images/tabbar/my_cur.png -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/pages/album/index/album_index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "disableScroll": true, 5 | "navigationBarTitleText": "攻略" 6 | } -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/pages/meet/self/meet_self.wxss: -------------------------------------------------------------------------------- 1 | @import "../../../style/skin.wxss"; 2 | .load.loading::after { 3 | content: "自助签到中,请稍候..."; 4 | } 5 | -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/pages/news/cate1/news_cate1.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "disableScroll": true, 5 | "navigationBarTitleText": "资讯" 6 | } -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/pages/news/cate2/news_cate2.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "disableScroll": true, 5 | "navigationBarTitleText": "资讯" 6 | } -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/pages/news/index/news_index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "disableScroll": true, 5 | "navigationBarTitleText": "资讯" 6 | } -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/images/tabbar/gong_cur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianduoduosanqian/WeScenicSpot/HEAD/miniprogram/projects/TRIP1/images/tabbar/gong_cur.png -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/images/tabbar/home_cur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianduoduosanqian/WeScenicSpot/HEAD/miniprogram/projects/TRIP1/images/tabbar/home_cur.png -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/images/tabbar/jing_cur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianduoduosanqian/WeScenicSpot/HEAD/miniprogram/projects/TRIP1/images/tabbar/jing_cur.png -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/images/tabbar/service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianduoduosanqian/WeScenicSpot/HEAD/miniprogram/projects/TRIP1/images/tabbar/service.png -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/pages/meet/index/meet_index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "disableScroll": true, 5 | "navigationBarTitleText": "预约列表" 6 | } -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/pages/my/index/my_index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | 4 | }, 5 | "enablePullDownRefresh": true, 6 | "navigationBarTitleText": "我的" 7 | } -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/pages/product/index/product_index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "disableScroll": true, 5 | "navigationBarTitleText": "景点" 6 | } -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/images/default_index_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianduoduosanqian/WeScenicSpot/HEAD/miniprogram/projects/TRIP1/images/default_index_bg.png -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/images/tabbar/service_cur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qianduoduosanqian/WeScenicSpot/HEAD/miniprogram/projects/TRIP1/images/tabbar/service_cur.png -------------------------------------------------------------------------------- /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/TRIP1/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/TRIP1/pages/meet/my_join_list/meet_my_join_list.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "disableScroll": true, 5 | "navigationBarTitleText": "我的预约" 6 | } -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/pages/admin/album/list/admin_album_list.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../../../../style/public/admin.wxss'; 2 | 3 | page { 4 | background-color: #f8f8f8; 5 | } 6 | 7 | -------------------------------------------------------------------------------- /cloudfunctions/mcloud/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "permissions": { 3 | "openapi": ["wxacode.getUnlimited", "security.imgSecCheck", "security.msgSecCheck","serviceMarket.invokeService"] 4 | } 5 | } -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/pages/meet/my_join_detail/meet_my_join_detail.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "enablePullDownRefresh": true, 5 | "navigationBarTitleText": "我的预约详情" 6 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/public/form/form_show/content/form_show_content.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "cmpt-editor": "/cmpts/public/editor/editor_cmpt" 4 | }, 5 | "navigationBarTitleText": "详细内容" 6 | } -------------------------------------------------------------------------------- /miniprogram/cmpts/public/poster/wxa-plugin-canvas/poster/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/pages/my/fav/my_fav.wxss: -------------------------------------------------------------------------------- 1 | @import "../../../../../style/public/article_list.wxss"; 2 | @import "../../../style/skin.wxss"; 3 | @import "../../../../../style/project/my_fav_style.wxss"; -------------------------------------------------------------------------------- /cloudfunctions/mcloud/index.js: -------------------------------------------------------------------------------- 1 | const application = require('./framework/core/application.js'); 2 | 3 | // 云函数入口函数 4 | exports.main = async (event, context) => { 5 | return await application.app(event, context); 6 | } -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/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/TRIP1/pages/admin/mgr/add/admin_mgr_add.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "navigationBarBackgroundColor": "#2499f2", 4 | "navigationBarTextStyle": "white", 5 | "navigationBarTitleText": "添加管理员" 6 | } -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/pages/admin/news/list/admin_news_list.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "navigationBarBackgroundColor": "#2499f2", 5 | "navigationBarTextStyle": "white", 6 | "disableScroll": true 7 | } -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/pages/admin/mgr/list/admin_mgr_list.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "navigationBarBackgroundColor": "#2499f2", 4 | "navigationBarTextStyle": "white", 5 | "navigationBarTitleText": "管理员管理" 6 | } -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/pages/admin/mgr/pwd/admin_mgr_pwd.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "navigationBarBackgroundColor": "#2499f2", 4 | "navigationBarTextStyle": "white", 5 | "navigationBarTitleText": "管理员密码修改" 6 | } -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/pages/album/detail/album_detail.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "cmpt-detail": "/cmpts/biz/detail/detail_cmpt" 4 | }, 5 | "enablePullDownRefresh": true, 6 | "navigationBarTitleText": "攻略详情" 7 | } -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/pages/meet/detail/meet_detail.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "cmpt-detail": "/cmpts/biz/detail/detail_cmpt" 4 | }, 5 | "enablePullDownRefresh": true, 6 | "navigationBarTitleText": "预约详情" 7 | } -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/pages/news/detail/news_detail.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "cmpt-detail": "/cmpts/biz/detail/detail_cmpt" 4 | }, 5 | "enablePullDownRefresh": true, 6 | "navigationBarTitleText": "详细内容" 7 | } -------------------------------------------------------------------------------- /cloudfunctions/mcloud/framework/utils/constant.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Notes: 通用常量定义 3 | * Ver : CCMiniCloud Framework 2.32.1 ALL RIGHTS RESERVED BY cclinux0730 (wechat) 4 | * Date: 2020-09-05 04:00:00 5 | */ 6 | module.exports = { 7 | 8 | } -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/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/TRIP1/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/TRIP1/pages/admin/meet/cover/admin_meet_cover.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | }, 4 | "navigationBarBackgroundColor": "#2499f2", 5 | "navigationBarTextStyle": "white", 6 | "navigationBarTitleText": "后台-预约封面设置" 7 | } -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/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/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/TRIP1/pages/admin/meet/join/admin_meet_join.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | 4 | }, 5 | "navigationBarBackgroundColor": "#2499f2", 6 | "navigationBarTextStyle": "white", 7 | "navigationBarTitleText": "分时段预约名单" 8 | } -------------------------------------------------------------------------------- /miniprogram/projects/TRIP1/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/TRIP1/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/TRIP1/pages/news/index/news_index.wxml: -------------------------------------------------------------------------------- 1 | 2 |