安卓:
设置:"enablePullDownRefresh":false
typescript
{
"path": "register",
"style": {
"navigationBarTitleText": "用户注册",
"navigationBarTextStyle": "black",
"navigationBarBackgroundColor": "#ffffff",
"backgroundColor": "#ffffff",
"enablePullDownRefresh": false,
}
},
苹果:
1.设置:"disableScroll": true
typescript
{
"path": "setting",
"style": {
"navigationBarTitleText": "项目订阅管理",
"navigationBarTextStyle":"black",//标题栏字体颜色
"navigationBarBackgroundColor": "#1890FF",//标题栏背景色(纯色)
"navigationStyle":"custom",//用户自定义(添加此处!!!!!)
"enablePullDownRefresh": false ,// 是否开启下拉刷新
"disableScroll": true
}
}
2.添加后会导致整个页面无法滑动,在需要滚动的内容添加如下style
css
overflow-y: scroll;
height: 100vh; padding-bottom: 60px;