├── miniprogram ├── app.wxss ├── reg │ ├── pages │ │ ├── about │ │ │ ├── hint.wxss │ │ │ ├── hint.json │ │ │ ├── about.json │ │ │ ├── about.wxml │ │ │ ├── hint.js │ │ │ ├── about.wxss │ │ │ ├── about.js │ │ │ └── hint.wxml │ │ ├── register │ │ │ ├── reg_step1.wxss │ │ │ ├── reg_step2.wxss │ │ │ ├── reg_step1.json │ │ │ ├── reg_step2.json │ │ │ ├── reg_step3.json │ │ │ ├── reg_step3.wxss │ │ │ ├── reg_step2.wxml │ │ │ ├── reg_step1.js │ │ │ ├── reg_step2.js │ │ │ ├── reg_step1.wxml │ │ │ ├── reg_step3.wxml │ │ │ ├── reg.wxss │ │ │ └── reg_step3.js │ │ ├── my │ │ │ ├── base │ │ │ │ ├── my_base.wxss │ │ │ │ ├── my_base.json │ │ │ │ ├── my_base.wxml │ │ │ │ └── my_base.js │ │ │ ├── reload │ │ │ │ ├── my_reload.json │ │ │ │ ├── my_reload.wxss │ │ │ │ ├── my_reload.wxml │ │ │ │ └── my_reload.js │ │ │ └── index │ │ │ │ ├── my_index.json │ │ │ │ └── my_index.wxss │ │ ├── search │ │ │ ├── search.json │ │ │ ├── search.wxml │ │ │ ├── search.wxss │ │ │ └── search.js │ │ ├── admin │ │ │ ├── news │ │ │ │ ├── admin_news_list.wxss │ │ │ │ ├── admin_news_add.wxss │ │ │ │ ├── admin_news_edit.wxss │ │ │ │ ├── admin_news_add.wxml │ │ │ │ ├── admin_news_list.json │ │ │ │ ├── admin_news_add.json │ │ │ │ ├── admin_news_edit.json │ │ │ │ ├── admin_news_edit.wxml │ │ │ │ ├── admin_news_form_tpl.wxml │ │ │ │ ├── admin_news_add.js │ │ │ │ └── admin_news_edit.js │ │ │ ├── user │ │ │ │ ├── admin_user_detail.wxss │ │ │ │ ├── admin_user_list.wxss │ │ │ │ ├── admin_user_detail.json │ │ │ │ ├── admin_user_list.json │ │ │ │ ├── admin_user_detail.js │ │ │ │ ├── admin_user_detail.wxml │ │ │ │ └── admin_user_list.wxml │ │ │ ├── setup │ │ │ │ ├── admin_setup.wxss │ │ │ │ ├── admin_setup.json │ │ │ │ ├── admin_setup.wxml │ │ │ │ └── admin_setup.js │ │ │ └── index │ │ │ │ ├── admin_login.json │ │ │ │ ├── admin_home.json │ │ │ │ ├── admin_login.wxml │ │ │ │ ├── admin_home.wxss │ │ │ │ ├── admin_login.wxss │ │ │ │ ├── admin_home.js │ │ │ │ ├── admin_login.js │ │ │ │ └── admin_home.wxml │ │ ├── news │ │ │ ├── news_index.wxss │ │ │ ├── news_detail.wxss │ │ │ ├── news_detail.json │ │ │ ├── news_index.json │ │ │ ├── news_detail.wxml │ │ │ ├── news_index.js │ │ │ ├── news_index.wxml │ │ │ └── news_detail.js │ │ ├── user │ │ │ ├── user_index.wxss │ │ │ ├── user_detail.json │ │ │ ├── user_index.json │ │ │ ├── user_index.js │ │ │ ├── user_detail.js │ │ │ └── user_index.wxml │ │ └── index │ │ │ ├── index_home.json │ │ │ ├── index_home.js │ │ │ ├── index_home.wxss │ │ │ └── index_home.wxml │ ├── ccmini-cmpts │ │ └── public │ │ │ ├── img │ │ │ ├── img_upload_cmpt.json │ │ │ ├── img_upload_cmpt.wxss │ │ │ ├── img_upload_cmpt.wxml │ │ │ └── img_upload_cmpt.js │ │ │ ├── list │ │ │ ├── comm_list_cmpt.json │ │ │ ├── comm_list_cmpt.wxss │ │ │ └── comm_list_cmpt.wxml │ │ │ └── picker │ │ │ ├── picker_cmpt.json │ │ │ ├── picker_cmpt.wxml │ │ │ ├── picker_cmpt.wxss │ │ │ └── picker_cmpt.js │ ├── images │ │ ├── home │ │ │ ├── my.png │ │ │ ├── news.png │ │ │ ├── reg.png │ │ │ ├── top.jpg │ │ │ ├── user.png │ │ │ ├── about.png │ │ │ └── invite.png │ │ ├── my │ │ │ └── top.jpg │ │ └── tabbar │ │ │ ├── my.png │ │ │ ├── home.png │ │ │ ├── news.png │ │ │ ├── reg.png │ │ │ ├── user.png │ │ │ ├── my_cur.png │ │ │ ├── reg_cur.png │ │ │ ├── home_cur.png │ │ │ ├── news_cur.png │ │ │ └── user_cur.png │ ├── ccmini-tpls │ │ ├── public │ │ │ ├── top_tpl.wxml │ │ │ ├── list_load_tpl.wxml │ │ │ ├── footer_tpl.wxml │ │ │ └── menu_tpl.wxml │ │ └── biz │ │ │ └── user_card_tpl.wxml │ ├── helper │ │ ├── ccmini_comm.js │ │ ├── ccmini_content_check_helper.js │ │ ├── ccmini_biz_helper.js │ │ ├── ccmini_setting.js │ │ └── ccmini_cache_helper.js │ ├── biz │ │ ├── base_ccmini_biz.js │ │ ├── news_biz.js │ │ ├── search_biz.js │ │ ├── admin_news_biz.js │ │ ├── admin_biz.js │ │ └── reg_biz.js │ └── style │ │ ├── comm │ │ ├── nav.wxss │ │ ├── comm.wxss │ │ ├── image.wxss │ │ ├── avatar.wxss │ │ ├── base.wxss │ │ ├── button.wxss │ │ ├── shadow.wxss │ │ ├── border.wxss │ │ ├── tag.wxss │ │ ├── animation.wxss │ │ └── text.wxss │ │ ├── skin.wxss │ │ └── project │ │ ├── user_list.wxss │ │ └── project.wxss ├── sitemap.json ├── app.js └── app.json ├── cloudfunctionTemplate └── cloud.json ├── cloudfunctions └── reg_cloud │ ├── config.json │ ├── index.js │ ├── package.json │ ├── service │ ├── home_service.js │ ├── base_ccmini_service.js │ └── news_service.js │ ├── comm │ ├── ccmini_biz_util.js │ ├── ccmini_config.js │ └── ccmini_router.js │ ├── framework │ ├── utils │ │ ├── ccmini_constant.js │ │ ├── ccmini_util.js │ │ └── ccmini_str_util.js │ ├── handler │ │ ├── ccmini_app_code.js │ │ └── ccmini_app_error.js │ ├── client │ │ └── ccmini_controller.js │ ├── cloud │ │ ├── ccmini_cloud_base.js │ │ └── ccmini_cloud_util.js │ └── validate │ │ └── ccmini_content_check.js │ ├── model │ ├── base_ccmini_model.js │ ├── setup_model.js │ ├── admin_model.js │ ├── news_model.js │ └── user_model.js │ └── controller │ ├── home_controller.js │ ├── base_ccmini_controller.js │ ├── news_controller.js │ ├── test_controller.js │ └── passport_controller.js ├── .gitignore └── project.config.json /miniprogram/app.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /miniprogram/reg/pages/about/hint.wxss: -------------------------------------------------------------------------------- 1 | @import 'about.wxss' -------------------------------------------------------------------------------- /miniprogram/reg/pages/register/reg_step1.wxss: -------------------------------------------------------------------------------- 1 | @import "reg.wxss"; -------------------------------------------------------------------------------- /miniprogram/reg/pages/register/reg_step2.wxss: -------------------------------------------------------------------------------- 1 | @import "reg.wxss"; -------------------------------------------------------------------------------- /miniprogram/reg/pages/my/base/my_base.wxss: -------------------------------------------------------------------------------- 1 | @import "../../../style/skin.wxss"; -------------------------------------------------------------------------------- /miniprogram/reg/pages/search/search.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /miniprogram/reg/pages/my/reload/my_reload.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /miniprogram/reg/pages/my/reload/my_reload.wxss: -------------------------------------------------------------------------------- 1 | @import "../../../style/skin.wxss"; -------------------------------------------------------------------------------- /miniprogram/reg/pages/admin/news/admin_news_list.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../style/project/admin.wxss' -------------------------------------------------------------------------------- /miniprogram/reg/pages/admin/user/admin_user_detail.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../style/project/admin.wxss' -------------------------------------------------------------------------------- /miniprogram/reg/pages/admin/user/admin_user_list.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../style/project/admin.wxss' -------------------------------------------------------------------------------- /miniprogram/reg/ccmini-cmpts/public/img/img_upload_cmpt.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/reg/ccmini-cmpts/public/list/comm_list_cmpt.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/reg/ccmini-cmpts/public/picker/picker_cmpt.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /miniprogram/reg/pages/my/base/my_base.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "navigationBarTitleText": "修改登记资料" 4 | } -------------------------------------------------------------------------------- /miniprogram/reg/pages/register/reg_step1.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "navigationBarTitleText": "校友登记第一步" 4 | } -------------------------------------------------------------------------------- /miniprogram/reg/pages/register/reg_step2.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "navigationBarTitleText": "校友登记第二步" 4 | } -------------------------------------------------------------------------------- /miniprogram/reg/pages/register/reg_step3.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "navigationBarTitleText": "校友登记第三步" 4 | } -------------------------------------------------------------------------------- /miniprogram/reg/images/home/my.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilinggong2002/SmartReg/HEAD/miniprogram/reg/images/home/my.png -------------------------------------------------------------------------------- /miniprogram/reg/images/my/top.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilinggong2002/SmartReg/HEAD/miniprogram/reg/images/my/top.jpg -------------------------------------------------------------------------------- /miniprogram/reg/pages/about/hint.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | 4 | }, 5 | "navigationBarTitleText": "温馨提示" 6 | } -------------------------------------------------------------------------------- /miniprogram/reg/images/home/news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilinggong2002/SmartReg/HEAD/miniprogram/reg/images/home/news.png -------------------------------------------------------------------------------- /miniprogram/reg/images/home/reg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilinggong2002/SmartReg/HEAD/miniprogram/reg/images/home/reg.png -------------------------------------------------------------------------------- /miniprogram/reg/images/home/top.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilinggong2002/SmartReg/HEAD/miniprogram/reg/images/home/top.jpg -------------------------------------------------------------------------------- /miniprogram/reg/images/home/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilinggong2002/SmartReg/HEAD/miniprogram/reg/images/home/user.png -------------------------------------------------------------------------------- /miniprogram/reg/images/tabbar/my.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilinggong2002/SmartReg/HEAD/miniprogram/reg/images/tabbar/my.png -------------------------------------------------------------------------------- /miniprogram/reg/pages/news/news_index.wxss: -------------------------------------------------------------------------------- 1 | @import "../../style/skin.wxss"; 2 | @import "../../style/project/article_list.wxss"; -------------------------------------------------------------------------------- /miniprogram/reg/pages/user/user_index.wxss: -------------------------------------------------------------------------------- 1 | @import "../../style/skin.wxss"; 2 | @import '../../style/project/user_list.wxss'; 3 | -------------------------------------------------------------------------------- /cloudfunctionTemplate/cloud.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "测试", 4 | "value": { 5 | "router": "test/test" 6 | } 7 | } 8 | ] -------------------------------------------------------------------------------- /miniprogram/reg/images/home/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilinggong2002/SmartReg/HEAD/miniprogram/reg/images/home/about.png -------------------------------------------------------------------------------- /miniprogram/reg/images/home/invite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilinggong2002/SmartReg/HEAD/miniprogram/reg/images/home/invite.png -------------------------------------------------------------------------------- /miniprogram/reg/images/tabbar/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilinggong2002/SmartReg/HEAD/miniprogram/reg/images/tabbar/home.png -------------------------------------------------------------------------------- /miniprogram/reg/images/tabbar/news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilinggong2002/SmartReg/HEAD/miniprogram/reg/images/tabbar/news.png -------------------------------------------------------------------------------- /miniprogram/reg/images/tabbar/reg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilinggong2002/SmartReg/HEAD/miniprogram/reg/images/tabbar/reg.png -------------------------------------------------------------------------------- /miniprogram/reg/images/tabbar/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilinggong2002/SmartReg/HEAD/miniprogram/reg/images/tabbar/user.png -------------------------------------------------------------------------------- /miniprogram/reg/pages/my/reload/my_reload.wxml: -------------------------------------------------------------------------------- 1 | 信息更新中... -------------------------------------------------------------------------------- /miniprogram/reg/pages/news/news_detail.wxss: -------------------------------------------------------------------------------- 1 | @import "../../style/skin.wxss"; 2 | @import "../../style/project/detail.wxss"; 3 | 4 | -------------------------------------------------------------------------------- /miniprogram/reg/images/tabbar/my_cur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilinggong2002/SmartReg/HEAD/miniprogram/reg/images/tabbar/my_cur.png -------------------------------------------------------------------------------- /miniprogram/reg/images/tabbar/reg_cur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilinggong2002/SmartReg/HEAD/miniprogram/reg/images/tabbar/reg_cur.png -------------------------------------------------------------------------------- /miniprogram/reg/images/tabbar/home_cur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilinggong2002/SmartReg/HEAD/miniprogram/reg/images/tabbar/home_cur.png -------------------------------------------------------------------------------- /miniprogram/reg/images/tabbar/news_cur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilinggong2002/SmartReg/HEAD/miniprogram/reg/images/tabbar/news_cur.png -------------------------------------------------------------------------------- /miniprogram/reg/images/tabbar/user_cur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilinggong2002/SmartReg/HEAD/miniprogram/reg/images/tabbar/user_cur.png -------------------------------------------------------------------------------- /miniprogram/reg/pages/about/about.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | 4 | }, 5 | "enablePullDownRefresh": true, 6 | "navigationBarTitleText": "关于我们" 7 | } -------------------------------------------------------------------------------- /miniprogram/reg/pages/index/index_home.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | 4 | }, 5 | "backgroundTextStyle": "dark", 6 | "navigationBarTitleText": "首页" 7 | } -------------------------------------------------------------------------------- /miniprogram/reg/pages/user/user_detail.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "enablePullDownRefresh": true, 4 | "backgroundTextStyle": "dark", 5 | "navigationBarTitleText": "校友详情" 6 | } -------------------------------------------------------------------------------- /cloudfunctions/reg_cloud/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "permissions": { 3 | "openapi": ["wxacode.getUnlimited", "security.imgSecCheck", "security.msgSecCheck","serviceMarket.invokeService"] 4 | } 5 | } -------------------------------------------------------------------------------- /miniprogram/reg/pages/admin/news/admin_news_add.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../style/project/admin.wxss'; 2 | .main-admin{ 3 | width:100%; 4 | box-sizing: border-box; 5 | padding:30rpx 20rpx; 6 | } -------------------------------------------------------------------------------- /miniprogram/reg/pages/admin/news/admin_news_edit.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../style/project/admin.wxss'; 2 | .main-admin{ 3 | width:100%; 4 | box-sizing: border-box; 5 | padding:30rpx 20rpx; 6 | } -------------------------------------------------------------------------------- /miniprogram/reg/pages/admin/setup/admin_setup.wxss: -------------------------------------------------------------------------------- 1 | @import '../../../style/project/admin.wxss'; 2 | .main-admin{ 3 | width:100%; 4 | box-sizing: border-box; 5 | padding:30rpx 20rpx; 6 | } -------------------------------------------------------------------------------- /miniprogram/reg/pages/my/index/my_index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "enablePullDownRefresh": true, 4 | "backgroundTextStyle": "dark", 5 | "navigationBarTitleText": "个人中心" 6 | } -------------------------------------------------------------------------------- /miniprogram/reg/pages/news/news_detail.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | 4 | }, 5 | "enablePullDownRefresh": true, 6 | "backgroundTextStyle": "dark", 7 | "navigationBarTitleText": "公告通知详情" 8 | } -------------------------------------------------------------------------------- /miniprogram/reg/ccmini-cmpts/public/img/img_upload_cmpt.wxss: -------------------------------------------------------------------------------- 1 | @import "../../../style/comm/comm.wxss"; 2 | @import "../../../style/project/project.wxss"; 3 | 4 | @import "../../../style/skin.wxss"; 5 | 6 | -------------------------------------------------------------------------------- /miniprogram/sitemap.json: -------------------------------------------------------------------------------- 1 | { 2 | "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html", 3 | "rules": [{ 4 | "action": "allow", 5 | "page": "*" 6 | }] 7 | } -------------------------------------------------------------------------------- /miniprogram/reg/pages/admin/index/admin_login.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "navigationBarBackgroundColor": "#ffffff", 4 | "navigationBarTextStyle": "black", 5 | "navigationBarTitleText": "后台管理" 6 | } -------------------------------------------------------------------------------- /miniprogram/reg/ccmini-cmpts/public/picker/picker_cmpt.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | {{options[idx] || '请选择'}} 4 | 5 | -------------------------------------------------------------------------------- /.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 | -------------------------------------------------------------------------------- /cloudfunctions/reg_cloud/index.js: -------------------------------------------------------------------------------- 1 | const ccminiApplication = require('./framework/handler/ccmini_application.js'); 2 | 3 | // 云函数入口函数 4 | exports.main = async (event, context) => { 5 | return await ccminiApplication.ccminiApp(event, context); 6 | } -------------------------------------------------------------------------------- /miniprogram/reg/ccmini-cmpts/public/picker/picker_cmpt.wxss: -------------------------------------------------------------------------------- 1 | .picker { 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/reg/pages/admin/index/admin_home.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "enablePullDownRefresh": true, 4 | "navigationBarBackgroundColor": "#ffffff", 5 | "navigationBarTextStyle": "black", 6 | "navigationBarTitleText": "后台管理" 7 | } -------------------------------------------------------------------------------- /miniprogram/reg/pages/register/reg_step3.wxss: -------------------------------------------------------------------------------- 1 | @import "reg.wxss"; 2 | page{ 3 | background-color: #f1f1f1; 4 | } 5 | 6 | .main-reg .form{ 7 | width:100%; 8 | box-sizing: border-box; 9 | } 10 | 11 | .main-reg .btn-main{ 12 | margin-top:100rpx; 13 | } -------------------------------------------------------------------------------- /miniprogram/reg/pages/admin/user/admin_user_detail.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {}, 3 | "enablePullDownRefresh": true, 4 | "backgroundTextStyle": "dark", 5 | "navigationBarBackgroundColor": "#ffffff", 6 | "navigationBarTextStyle": "black", 7 | "navigationBarTitleText": "后台-用户详情" 8 | } -------------------------------------------------------------------------------- /miniprogram/reg/ccmini-tpls/public/top_tpl.wxml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /miniprogram/reg/pages/news/news_index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "ccmini-cmpt-comm-list": "../../ccmini-cmpts/public/list/comm_list_cmpt" 4 | }, 5 | "enablePullDownRefresh": false, 6 | "disableScroll": true, 7 | "backgroundTextStyle": "dark", 8 | "navigationBarTitleText": "公告通知" 9 | } -------------------------------------------------------------------------------- /miniprogram/reg/pages/user/user_index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "ccmini-cmpt-comm-list": "../../ccmini-cmpts/public/list/comm_list_cmpt" 4 | }, 5 | "enablePullDownRefresh": false, 6 | "disableScroll": true, 7 | "backgroundTextStyle": "dark", 8 | "navigationBarTitleText": "花名册" 9 | } -------------------------------------------------------------------------------- /miniprogram/reg/pages/admin/setup/admin_setup.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | 4 | }, 5 | "navigationBarBackgroundColor": "#ffffff", 6 | "navigationBarTextStyle": "black", 7 | "enablePullDownRefresh": true, 8 | "backgroundTextStyle": "dark", 9 | "navigationBarTitleText": "后台-系统设置" 10 | } -------------------------------------------------------------------------------- /miniprogram/reg/helper/ccmini_comm.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Notes: 通用常量 3 | * Ver : CCMiniCloud Framework 2.0.1 ALL RIGHTS RESERVED BY www.code942.com 4 | * Date: 2025-11-14 07:48:00 5 | */ 6 | 7 | module.exports = { 8 | CACHE_TOKEN: 'CACHE_TOKEN', // 登录 9 | CACHE_ADMIN: 'ADMIN_TOKEN', // 管理员登录 10 | } 11 | -------------------------------------------------------------------------------- /miniprogram/reg/pages/admin/news/admin_news_add.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |