|
@@ -85,15 +85,17 @@ export default (props) => {
|
85
|
85
|
|
86
|
86
|
|
87
|
87
|
<view className='title'>推广收入记录</view>
|
88
|
|
-
|
89
|
|
- <List
|
90
|
|
- style={{ height: '100%' }}
|
91
|
|
- request={reqestAPI}
|
92
|
|
- params={queryParams}
|
93
|
|
- noData={<NoData />}
|
94
|
|
- render={({ item, index }) => <ShopCommission key={(index)} item={item} />}
|
95
|
|
- >
|
96
|
|
- </List>
|
|
88
|
+ <view style={{ height: '50vh' }}>
|
|
89
|
+
|
|
90
|
+ <List
|
|
91
|
+ style={{ height: '100%' }}
|
|
92
|
+ request={reqestAPI}
|
|
93
|
+ params={queryParams}
|
|
94
|
+ noData={<NoData />}
|
|
95
|
+ render={({ item, index }) => <ShopCommission key={(index)} item={item} />}
|
|
96
|
+ >
|
|
97
|
+ </List>
|
|
98
|
+ </view>
|
97
|
99
|
</view>
|
98
|
100
|
</view >
|
99
|
101
|
)
|