主题
页面配置
页面同名 .json 用于覆盖窗口配置、注册局部组件和声明页面能力。
json
{
"navigationBarTitleText": "订单详情",
"enablePullDownRefresh": true,
"onReachBottomDistance": 80,
"usingComponents": {
"order-card": "/components/order-card/index"
}
}常用项
| 配置 | 用途 |
|---|---|
navigationBarTitleText | 页面标题 |
navigationStyle: "custom" | 自绘导航栏;需自行处理状态栏和返回行为 |
enablePullDownRefresh | 开启下拉刷新 |
onReachBottomDistance | 触底距离 |
usingComponents | 页面级组件注册 |
disableScroll | 禁用页面滚动;仅用于由内部容器接管滚动的页面 |
设置 navigationStyle: "custom" 前确认沉浸式状态栏、胶囊区域、横屏和无障碍体验都已适配。
