uni-app基本标签

导航栏设置

- `navigationBarBackgroundColor`: 设置导航栏的背景颜色(全局页面)
- `navigationBarTextStyle`: 导航栏标题颜色(仅支持 `black` 和 `white`)
- `navigationBarTitleText`: 设置导航栏标题内容
- `enablePullDownRefresh`: 是否开启页面下拉刷新

 窗口与背景设置

- `backgroundColor`: 小程序窗口颜色(下拉刷新后窗口背景色)
- `backgroundTextStyle`: 设置下拉刷新样式(`dark` 或 `light`)

底部导航栏设置

- `tabbar`: 底部导航栏配置
  - `list`: 底部导航栏列表配置
    - `text`: 导航栏标题
    - `pagePath`: 导航栏页面路径
    - `iconPath`: 未选中页面图标路径
    - `selectedIconPath`: 选中时页面图标路径

页面设置

- `pages`: 所有页面路径配置
  - 第一项为应用启动页(默认页)
  - 其他项为各页面路径

注意事项

- 使用 `rpx` 作为像素单位,兼容多种机型
- `page` 相当于 `body` 根节点
- 使用 `View` 类似于 `div` 标签,`Text` 类似于 `span` 标签
- 避免使用选择器
- H5 标签支持度有限,不建议广泛使用

你可能感兴趣的:(uni-app,前端)