Showing
2 changed files
with
7 additions
and
1 deletions
@@ -71,7 +71,12 @@ export default { | @@ -71,7 +71,12 @@ export default { | ||
71 | options: function() { | 71 | options: function() { |
72 | return { | 72 | return { |
73 | pullUpLoad: this.pullUpLoad, | 73 | pullUpLoad: this.pullUpLoad, |
74 | - pullDownRefresh: true | 74 | + pullDownRefresh: this.isShowEmpty |
75 | + ? false | ||
76 | + : { | ||
77 | + txt: "更新成功" | ||
78 | + }, | ||
79 | + bounce: this.isShowEmpty ? false : true | ||
75 | }; | 80 | }; |
76 | }, | 81 | }, |
77 | isFetchEntryOrder() { | 82 | isFetchEntryOrder() { |
@@ -99,6 +99,7 @@ export default { | @@ -99,6 +99,7 @@ export default { | ||
99 | options: function() { | 99 | options: function() { |
100 | return { | 100 | return { |
101 | pullUpLoad: this.pullUpLoad, | 101 | pullUpLoad: this.pullUpLoad, |
102 | + bounce: this.isShowEmpty ? false : true, | ||
102 | pullDownRefresh: this.isShowEmpty | 103 | pullDownRefresh: this.isShowEmpty |
103 | ? false | 104 | ? false |
104 | : { | 105 | : { |
-
Please register or login to post a comment