pages
- 页面路径的存放列表
- 通过手写页面路径可以在对应目录下自动创建对应文件
"pages": [
"pages/demo3/demo3",
"pages/demo1/demo1",
"pages/index/index",
windows
- 全局的默认窗口表现
"window": {
// 设置上拉的背景颜色
"backgroundColor": "#0094ff",
// 设置上拉时加载小圆点的颜色
"backgroundTextStyle": "dark",
//设置导航背景颜色
"navigationBarBackgroundColor": "#F6F6F6",
//设置导航文字
"navigationBarTitleText": "我的应用",
// 设置导航字体样式
"navigationBarTextStyle": "black",
// 设置能够上拉
"enablePullDownRefresh": true
},
tabbar
- 底部tabbar的表现
"tabBar": {
"list": [{
// 点击时要跳转的路径
"pagePath": "pages/index/index",
// 文字
"text": "首页",
// 图标路径
"iconPath": "icon/_home.png",
//选中时的图标路径
"selectedIconPath": "icon/home.png"
},
{
"pagePath": "pages/img/img",
"text": "图片",
"iconPath": "icon/_img.png",
"selectedIconPath": "icon/img.png"
},
详情请查看
(https://developers.weixin.qq.com/miniprogram/dev/reference/configuration/app.html)