## getCurrentPages() @getcurrentpages **PageStyle** 支持 pages.json 下 `globalStyle` 节点属性和页面下 `style` 节点属性 当前版本仅支持设置如下属性,其他属性未测试。 |属性 |类型 |Android|iOS |web |默认值 |描述 | |:-: |:-: |:-: |:-: |:-: |:-: |:-: | |enablePullDownRefresh |Boolean|4.13 |4.13 |4.13 |false |是否开启下拉刷新,详见页面[生命周期](https://uniapp.dcloud.net.cn/tutorial/page.html#lifecycle)。 | |backgroundColorContent |string |4.15 |4.15 |x |#ffffff|页面容器背景色 | **注意事项** - web端由于会自动摇树优化未使用的特性,如果整个项目中都没有使用到下拉刷新`enablePullDownRefresh`,那么下拉刷新功能会被摇掉,此时设置打开下拉刷新将无效。 - 4.15版本前,app-ios平台在page.json 中设置页面 `enablePullDownRefresh` 为 `false` 时,无法通过 `$setPageStyle` 方法动态开启页面下拉刷新。新版已修复该问题。