xujing 5 년 전
부모
커밋
f50e09c070
1개의 변경된 파일20개의 추가작업 그리고 19개의 파일을 삭제
  1. 20
    19
      src/onlineSelling/pages/records/index.js

+ 20
- 19
src/onlineSelling/pages/records/index.js 파일 보기

@@ -182,9 +182,9 @@ export default class Records extends Component {
182 182
                       return (
183 183
                         <Label class="checkbox" >
184 184
                           {/* <Checkbox value={item.houseId - 0} checked={checked} disabled={disabled}> */}
185
-                            <View className="carditem" key={item.preselectionRecordId} >
186
-                              <HouseCard summary={item} onClick={()=>this.toHouseDetail(item)} />
187
-                            </View>
185
+                          <View className="carditem" key={item.preselectionRecordId} >
186
+                            <HouseCard summary={item} onClick={() => this.toHouseDetail(item)} />
187
+                          </View>
188 188
                           {/* </Checkbox> */}
189 189
                         </Label>
190 190
                       )
@@ -225,22 +225,23 @@ export default class Records extends Component {
225 225
     const { raiseList, noRaiseRecord } = this.state
226 226
     return (
227 227
       <Block>
228
-
229
-        {
230
-          noRaiseRecord ? <Blank style="margin:10vh 0 22vh 0" tips="暂无认筹记录" /> :
231
-            <ScrollView scrollY className="container">
232
-              {
233
-                raiseList.map(item => (
234
-                  <View key={item.raiseRecordId} >
235
-                    <RaiseCard handleCard={() => this.toRaiseProfile(item.raiseRecordId)} summary={item} />
236
-                  </View>
237
-                )
238
-                )
239
-              }
240
-            </ScrollView >
241
-        }
242
-        <Statement styel="margin-top:80rpx" />
243
-
228
+        <ScrollView scrollY className="container">
229
+          {
230
+            noRaiseRecord ? <Blank style="margin:10vh 0 22vh 0" tips="暂无认筹记录" /> :
231
+              <Block>
232
+                {
233
+                  raiseList.map(item => (
234
+                    <View key={item.raiseRecordId} >
235
+                      <RaiseCard handleCard={() => this.toRaiseProfile(item.raiseRecordId)} summary={item} />
236
+                    </View>
237
+                  )
238
+                  )
239
+                }
240
+
241
+              </Block>
242
+          }
243
+          <Statement styel="margin-top:80rpx" />
244
+        </ScrollView >
244 245
 
245 246
       </Block>
246 247
     )