Commit 42016026 authored by 曹云霄's avatar 曹云霄

优化谓词搜索

parent 4226526f
......@@ -122,7 +122,7 @@
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
InviterTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"InviterTableViewCell" forIndexPath:indexPath];
cell.entity = self.inviterArray[indexPath.row];
cell.entity = self.displayArray[indexPath.row];
return cell;
}
......
......@@ -72,7 +72,7 @@
if (isRefresh) {
[weakSelf.datasArray removeAllObjects];
}
RsSimpleJingDongECardResponse *cardInformation = [[RsSimpleJingDongECardResponse alloc]initWithDictionary:RESPONSE(returnValue) error:nil];
RsSimpleJingDongECardResponse *cardInformation = [[RsSimpleJingDongECardResponse alloc] initWithDictionary:RESPONSE(returnValue) error:nil];
for (TOJingdongEcardEntity *eCard in cardInformation.list) {
[weakSelf.datasArray addObject:eCard];
}
......
......@@ -63,6 +63,7 @@
{
PaymentsViewController *payments = [PaymentsViewController viewControllerWithStoryBoardType:STORYBOARD_TYPE_MAIN];
WithdrawalViewController *withdrawal = [WithdrawalViewController viewControllerWithStoryBoardType:STORYBOARD_TYPE_MAIN];
[self addChildViewController:payments];
[self addChildViewController:withdrawal];
[self.controllerBackView addSubview:payments.view];
self.currentVC = payments;
......
......@@ -105,11 +105,9 @@
*/
@property (nonatomic,strong) EarningsResponse *resultEntity;
@end
@implementation RebateViewController
- (void)viewDidAppear:(BOOL)animated
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment