GroupSynopsisVC.m 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. //
  2. // GroupSynopsisVC.m
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2020/6/15.
  6. // Copyright © 2020 tederen. All rights reserved.
  7. //
  8. #import "GroupSynopsisVC.h"
  9. #import "GroupSynopsisCell.h"
  10. #import "TDGroupInfoListModel.h"
  11. @interface GroupSynopsisVC ()<UITableViewDelegate,UITableViewDataSource>
  12. @property (weak, nonatomic) IBOutlet UITableView *tableView;
  13. @property (weak, nonatomic) IBOutlet UIButton *joinBtn;
  14. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *bottomContant;
  15. @property (strong,nonatomic) NSMutableArray *dataArray;
  16. @property (strong,nonatomic) TDGroupInfoListModel *model;
  17. @property (assign,nonatomic) BOOL show;
  18. @end
  19. @implementation GroupSynopsisVC
  20. +(GroupSynopsisVC *)initGroupSynopsisVC{
  21. GroupSynopsisVC *controller = [StoryboardManager.shared.Source instantiateViewControllerWithIdentifier:@"GroupSynopsisVC"];
  22. return controller;
  23. }
  24. - (NSMutableArray *)dataArray
  25. {
  26. if (!_dataArray) {
  27. _dataArray = [NSMutableArray array];
  28. }
  29. return _dataArray;
  30. }
  31. - (void)viewDidLoad {
  32. [super viewDidLoad];
  33. self.fd_prefersNavigationBarHidden = YES;
  34. self.tableView.delegate = self;
  35. self.tableView.dataSource = self;
  36. [self getData];
  37. WS(weakSelf);
  38. [self.joinBtn setAction:^{
  39. [weakSelf ModifydHanderWithId:weakSelf.model.Id withTypeAdminVerifyTypeConst:1];
  40. }];
  41. }
  42. - (void)ModifydHanderWithId:(NSInteger)ID withTypeAdminVerifyTypeConst:(NSInteger)AdminVerifyTypeConst{
  43. [[HttpManager sharedHttpManager] PUTUrl:Host(API_Verti_Modify) parameters:@{@"AdminVerifyTypeConst":@(AdminVerifyTypeConst),@"Id":@(ID)} responseStyle:DATA success:^(id _Nonnull responseObject) {
  44. SHOWSUCCESS(@"已申请加入小组");
  45. } failure:^(NSError * _Nonnull error) {
  46. }];
  47. }
  48. - (void)getData
  49. {
  50. WS(weakSelf);
  51. [[HttpManager sharedHttpManager] POSTUrl:Host(APP_Group_Detail) parameters:@{@"GroupId":@(self.GroupId)} responseStyle:JOSN success:^(id _Nonnull responseObject) {
  52. NSLog(@"%@",responseObject);
  53. weakSelf.model = [TDGroupInfoListModel modelWithDictionary:responseObject];
  54. [weakSelf.dataArray addObjectsFromArray:weakSelf.model.GroupUserListResult];
  55. dispatch_async(dispatch_get_main_queue(), ^{
  56. if (weakSelf.model.IsUser) {
  57. weakSelf.bottomContant.constant = 0.f;
  58. weakSelf.joinBtn.hidden = YES;
  59. }
  60. [weakSelf.tableView reloadData];
  61. });
  62. } failure:^(NSError * _Nonnull error) {
  63. }];
  64. }
  65. - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
  66. {
  67. return UITableViewAutomaticDimension;
  68. }
  69. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
  70. {
  71. return 4;
  72. }
  73. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
  74. {
  75. WS(weakSelf);
  76. switch (indexPath.row) {
  77. case 0:
  78. {
  79. GroupSynopsisCell * cell = [GroupSynopsisCell configCell3:tableView indexPath:indexPath];
  80. [cell setDataModel:self.model isShow:self.show];
  81. cell.ShowBlcok = ^(BOOL show) {
  82. weakSelf.show = show;
  83. dispatch_async(dispatch_get_main_queue(), ^{
  84. [tableView reloadRowAtIndexPath:indexPath withRowAnimation:UITableViewRowAnimationAutomatic];
  85. });
  86. };
  87. return cell;
  88. }
  89. break;
  90. case 1:
  91. {
  92. GroupSynopsisCell * cell = [GroupSynopsisCell configCell0:tableView indexPath:indexPath];
  93. [cell setData];
  94. return cell;
  95. }
  96. break;
  97. case 2:
  98. {
  99. GroupSynopsisCell * cell = [GroupSynopsisCell configCell1:tableView indexPath:indexPath];
  100. [cell setUserCount:self.model.GroupUserNumber];
  101. return cell;
  102. }
  103. break;
  104. default:
  105. {
  106. GroupSynopsisCell * cell = [GroupSynopsisCell configCell2:tableView indexPath:indexPath];
  107. [cell setGroupLabel:self.model.LabelName];
  108. return cell;
  109. }
  110. break;
  111. }
  112. }
  113. @end