Browse Source

静态页面

1002884655 4 years ago
parent
commit
185137c0f0

+ 5
- 3
src/components/ScrollPageRefresh/index.jsx View File

103
         {
103
         {
104
           KeepChildren
104
           KeepChildren
105
         }
105
         }
106
-        {
107
-          props.children
108
-        }
106
+        <view className='ScrollPageListContent'>
107
+          {
108
+            props.children
109
+          }
110
+        </view>
109
       </ScrollPage>
111
       </ScrollPage>
110
     </view>
112
     </view>
111
   )
113
   )

+ 6
- 0
src/components/ScrollPageRefresh/index.less View File

2
   width: 100%;
2
   width: 100%;
3
   height: 100%;
3
   height: 100%;
4
   position: relative;
4
   position: relative;
5
+  .ScrollPageListContent {
6
+    width: 100%;
7
+    min-height: 300px;
8
+    position: relative;
9
+    overflow: hidden;
10
+  }
5
 }
11
 }