uniapp 项目创建初始化
- 下载hbuilderx
- 文件>新建>项目> uni-app 项目
全局配置
pages.json:
属性 类型 值 描述 navigationBarBackgroundColor HexColor #F7F7F7 导航栏背景颜色(同状态栏背景色) navigationBarTextStyle String 仅支持 black/white 导航栏标题颜色及状态栏前景颜色 navigationBarTitleText String 导航栏标题文字内容 enablePullDownRefresh Boolean false 是否开启下拉刷新 backgroundColor HexColor #ffffff 下拉显示出来的窗口的背景色(微信) backgroundTextStyle String dark 下拉 loading 的样式,仅支持 dark / light(微信) onReachBottomDistance Number 50 页面上拉触底事件触发时距页面底部距离,单位只支持 px(触发页面的生命周期)
页面配置
json
"pages": [
{
"path": "pages/test/test", // 类似vue路由
"style": {
"navigationBarBackgroundColor": "#ccffff",//页面的配置
"h5": { // 单独 h5端 配置
"titleNView": {
"titleColor": "#ff0000"
}
}
}
}
],