口袋优选

KBChildMonthViewController.m 4.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. //
  2. // KBChildMonthViewController.m
  3. // YouHuiProject
  4. //
  5. // Created by 小花 on 2018/5/28.
  6. // Copyright © 2018年 kuxuan. All rights reserved.
  7. //
  8. #import "KBChildMonthViewController.h"
  9. #import "KBChildCommissionCell.h"
  10. #import "KBChildCommissionModel.h"
  11. #import "KBMonthCenterTipView.h"
  12. @interface KBChildMonthViewController ()
  13. <
  14. UITableViewDelegate,
  15. UITableViewDataSource
  16. >
  17. @property (nonatomic, strong) UITableView *tableView;
  18. @property (nonatomic, strong) NSMutableArray *dataArr;
  19. @property (nonatomic, assign) NSInteger page;
  20. @end
  21. @implementation KBChildMonthViewController
  22. - (void)viewDidLoad {
  23. [super viewDidLoad];
  24. [self configTableView];
  25. [self request];
  26. }
  27. - (void)configTableView {
  28. self.page = 1;
  29. [self.view addSubview:self.tableView];
  30. }
  31. #pragma mark -------- UITableView Delegate -----
  32. - (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
  33. if ([cell respondsToSelector:@selector(setSeparatorInset:)]) {
  34. [cell setSeparatorInset:UIEdgeInsetsMake(0, 15, 0, 15)];
  35. }
  36. }
  37. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
  38. return self.dataArr.count;
  39. }
  40. - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
  41. return 110;
  42. }
  43. - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section {
  44. return 0.1;
  45. }
  46. - (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section {
  47. return 0.1;
  48. }
  49. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
  50. KBChildCommissionCell *cell = [KBChildCommissionCell cellWithTableView:tableView];
  51. KBChildCommissionModel *model=self.dataArr[indexPath.row];
  52. cell.model=model;
  53. cell.selectionStyle = UITableViewCellSelectionStyleNone;
  54. return cell;
  55. }
  56. #pragma mark -网络请求
  57. #pragma mark - request
  58. - (void)request {
  59. NSString *url=[NSString stringWithFormat:@"%@/api/v2/adzoneCreate/incomeList",BaseURL];
  60. NSDictionary *dic=@{
  61. @"type":@(self.type),
  62. @"page":@(self.page),
  63. @"isThisMonth":@(self.isThisMonth)
  64. };
  65. [KBHttp post:url params:dic success:^(id json) {
  66. NSArray *arr = [NSArray yy_modelArrayWithClass:[KBChildCommissionModel class] json:json[@"data"]];
  67. if (arr.count>0) {
  68. [self.dataArr addObjectsFromArray:arr];
  69. [self.tableView.mj_footer endRefreshing];
  70. }else {
  71. [self setUpNoDataView];
  72. [self.tableView.mj_footer endRefreshingWithNoMoreData];
  73. }
  74. [self.tableView reloadData];
  75. } failure:^(NSError *error) {
  76. [self.tableView.mj_footer endRefreshing];
  77. }];
  78. }
  79. - (void)setUpNoDataView {
  80. self.tableView.showNoDataView = YES;
  81. self.tableView.defaultNoDataText = @"您还没有任何订单";
  82. self.tableView.defaultNoDataImage = [UIImage imageNamed:@"noData"];
  83. }
  84. #pragma mark ------- layzer ------
  85. - (UITableView *)tableView {
  86. if (!_tableView) {
  87. _tableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, SCREEN_HEIGHT-NavBarHeight-40) style:UITableViewStyleGrouped];
  88. _tableView.estimatedSectionHeaderHeight = 0;
  89. _tableView.estimatedSectionFooterHeight = 0;
  90. _tableView.sectionFooterHeight = 0;
  91. _tableView.sectionHeaderHeight = 0;
  92. _tableView.estimatedRowHeight = 0;
  93. _tableView.delegate = self;
  94. _tableView.dataSource = self;
  95. _tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];
  96. _tableView.backgroundColor = [UIColor yhGrayColor];
  97. _tableView.bounces = YES;
  98. _tableView.showsVerticalScrollIndicator = NO;
  99. _tableView.separatorStyle = UITableViewCellSeparatorStyleSingleLine;
  100. _tableView.separatorColor = [UIColor YHColorWithHex:0xEEEEEE];
  101. _tableView.mj_footer = [MJRefreshBackNormalFooter footerWithRefreshingBlock:^{
  102. self.page ++;
  103. [self request];
  104. }];
  105. }
  106. return _tableView;
  107. }
  108. -(NSMutableArray *)dataArr{
  109. if (!_dataArr) {
  110. _dataArr=[NSMutableArray array];
  111. }
  112. return _dataArr;
  113. }
  114. @end