公益培训报名小程序,提供给文化馆,图书馆,文体中心,青少年活动中心,少年宫等社会公益机构进行公益培训活动报名登记的小工具
前后端代码完整,主要功能包括公告通知,课堂风采,报名列表,报名登记,采用腾讯提供的小程序云开发解决方案,无须服务器和域名。
部分关键代码
【app.json】
{
"pages":[
"pages/test/test",
"pages/index/index",
"pages/logs/logs",
"pages/search/search",
"pages/ranking/ranking"
],
"window":{
"backgroundTextStyle": "dark",
"navigationBarBackgroundColor": "#31c27c",
"navigationBarTitleText": "益起来,爱益无限",
"navigationBarTextStyle": "white",
"BackgroundColor": "#000000",
"enablePullDownRefresh": true
},
"tabBar": {
"color": "#000000",
"selectedColor": "#000000",
"backgroundColor": "#31c27c",
"borderStyle": "black",
"list": [
{
"pagePath": "pages/index/index",
"text": "首页",
"iconPath": "img/sy.jpg",
"selectedIconPath": "img/sy.jpg"
},
{
"pagePath": "pages/logs/logs",
"text": "分类",
"iconPath": "img/fl.jpg",
"selectedIconPath": "img/fl.jpg"
},
{
"pagePath": "pages/search/search",
"text": "搜索",
"iconPath": "img/wd.jpg",
"selectedIconPath": "img/wd.jpg"
}
]
},
"debug": true
}
【app.wxss】
.container {
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
padding: 200rpx 0;
box-sizing: border-box;
}
【index.wxml】
【index.wxss】
swiper image {
height: 150px;
width: 750rpx;
}
image{
height:830rpx;
width: 750rpx;
}
【logs.wxml】
【logs.wxss】
.placeholder{
margin: 8px;
padding: 0 12px;
text-align: center;
background-color:#31C27C ;
height:3em;
line-height:3em;
color: #FFFFFF;
}
.special_placeholder{
margin: 8px;
padding: 0 12px;
text-align: center;
background-color:#1ADD19 ;
height: 3em;
line-height: 3em;
color: #FFFFFF;
}
.page__hd{
margin: 15px;
text-align: center;
background-color: #EBEBEB;
height: 3em;
width:3.5em;
line-height: 3em;
color: #31C27C;
}
【test.wxml】
阅读并同意