HomeWeiCousreVC.m 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. //
  2. // HomeWeiCousreVC.m
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2020/6/23.
  6. // Copyright © 2020 tederen. All rights reserved.
  7. //
  8. #import "HomeWeiCousreVC.h"
  9. #import "HomeSubModel.h"
  10. #import "HomeSubItemModel.h"
  11. #import "HomeWeiCousreCell.h"
  12. #import "BookWCDetailVC.h"
  13. @interface HomeWeiCousreVC ()<UITableViewDelegate,UITableViewDataSource>
  14. @property (nonatomic, strong) UITableView * tableView;
  15. @property (nonatomic, strong) NSMutableArray * dataSource;
  16. @end
  17. @implementation HomeWeiCousreVC
  18. - (void)viewDidLoad {
  19. [super viewDidLoad];
  20. [self.view addSubview:self.tableView];
  21. self.tableView.delegate = self;
  22. self.tableView.dataSource = self;
  23. [self getData];
  24. }
  25. - (void)setHeight:(CGFloat)height
  26. {
  27. [self.tableView setFrame:CGRectMake(0, 0, SCREEN_WIDTH, height - 45)];
  28. }
  29. - (UITableView *)tableView
  30. {
  31. if (!_tableView) {
  32. _tableView = [[UITableView alloc] initWithFrame:CGRectZero style:UITableViewStylePlain];
  33. _tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
  34. _tableView.showsVerticalScrollIndicator = NO;
  35. }
  36. return _tableView;
  37. }
  38. - (NSMutableArray *)dataSource
  39. {
  40. if (!_dataSource) {
  41. _dataSource = [NSMutableArray array];
  42. }
  43. return _dataSource;
  44. }
  45. - (void)getData
  46. {
  47. WS(weakSelf);
  48. [[HttpManager sharedHttpManager] POSTUrl:Host(API_APP_PAGE_WE_BOOK) parameters:@{@"StyleCss":self.style,@"Page":@(1),@"PerPage":@20} responseStyle:JOSN success:^(id _Nonnull responseObject) {
  49. NSLog(@"%@",responseObject);
  50. if ([responseObject isKindOfClass:[NSDictionary class]]) {
  51. HomeSubModel *model = [HomeSubModel modelWithDictionary:responseObject];
  52. for (NSDictionary * dict in model.Items) {
  53. HomeSubItemModel *smodel = [HomeSubItemModel modelWithDictionary:dict];
  54. [weakSelf.dataSource addObject:smodel];
  55. }
  56. }
  57. dispatch_async(dispatch_get_main_queue(), ^{
  58. [weakSelf.tableView reloadData];
  59. });
  60. } failure:^(NSError * _Nonnull error) {
  61. }];
  62. }
  63. - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
  64. {
  65. return 1;
  66. }
  67. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
  68. {
  69. return self.dataSource.count;
  70. }
  71. - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
  72. {
  73. return UITableViewAutomaticDimension;
  74. }
  75. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
  76. {
  77. HomeSubItemModel *model = self.dataSource[indexPath.row];
  78. HomeWeiCousreCell * cell = [HomeWeiCousreCell configCell0:tableView indexPath:indexPath];
  79. if (indexPath.row == 0) {
  80. cell.height.constant = 11.f;
  81. }else{
  82. cell.height.constant = 0.f;
  83. }
  84. [cell setDataWithModel:model];
  85. return cell;
  86. }
  87. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
  88. {
  89. [tableView deselectRowAtIndexPath:indexPath animated:YES];
  90. HomeSubItemModel *model = self.dataSource[indexPath.row];
  91. BookWCDetailVC * vc = [BookWCDetailVC initBookWCDetailVC];
  92. vc.Id = model.Id;
  93. [self.navigationController pushViewController:vc animated:YES];
  94. }
  95. @end