吃个甘蔗嚼一年 3 年 前
コミット
d196895758
共有1 個のファイルを変更した11 個の追加9 個の削除を含む
  1. 11
    9
      src/shop/components/Sparead/spreadMoney.jsx

+ 11
- 9
src/shop/components/Sparead/spreadMoney.jsx ファイルの表示

@@ -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
   )