diff --git a/src/components/utils/PageBase.js b/src/components/utils/PageBase.js index c8b07de..7987717 100644 --- a/src/components/utils/PageBase.js +++ b/src/components/utils/PageBase.js @@ -21,6 +21,9 @@ class PageBase { if (/navigationBarBackgroundColor/.test(vue)) { this.style.navigationBarBackgroundColor = vue.replace(/[\s\S]*navigationBarBackgroundColor:([^,]+),[\s\S]*/gm, '$1').replace(/["']/g, '')?.trim() } + if (/enablePullDownRefresh/.test(vue)) { + this.style.enablePullDownRefresh = true + } } else { this.style = {navigationBarTitleText: this.label} //是否开启下拉刷新 diff --git a/src/project/biaopin/AppResidentAssistant/AppResidentAssistant.vue b/src/project/biaopin/AppResidentAssistant/AppResidentAssistant.vue index b87281b..8a97501 100644 --- a/src/project/biaopin/AppResidentAssistant/AppResidentAssistant.vue +++ b/src/project/biaopin/AppResidentAssistant/AppResidentAssistant.vue @@ -1,6 +1,6 @@