123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- //
- // GroupSynopsisVC.m
- // smartRhino
- //
- // Created by niuzhen on 2020/6/15.
- // Copyright © 2020 tederen. All rights reserved.
- //
- #import "GroupSynopsisVC.h"
- #import "GroupSynopsisCell.h"
- #import "TDGroupInfoListModel.h"
- @interface GroupSynopsisVC ()<UITableViewDelegate,UITableViewDataSource>
- @property (weak, nonatomic) IBOutlet UITableView *tableView;
- @property (weak, nonatomic) IBOutlet UIButton *joinBtn;
- @property (weak, nonatomic) IBOutlet NSLayoutConstraint *bottomContant;
- @property (strong,nonatomic) NSMutableArray *dataArray;
- @property (strong,nonatomic) TDGroupInfoListModel *model;
- @property (assign,nonatomic) BOOL show;
- @end
- @implementation GroupSynopsisVC
- +(GroupSynopsisVC *)initGroupSynopsisVC{
- GroupSynopsisVC *controller = [StoryboardManager.shared.Source instantiateViewControllerWithIdentifier:@"GroupSynopsisVC"];
- return controller;
- }
- - (NSMutableArray *)dataArray
- {
- if (!_dataArray) {
- _dataArray = [NSMutableArray array];
- }
- return _dataArray;
- }
- - (void)viewDidLoad {
- [super viewDidLoad];
- self.fd_prefersNavigationBarHidden = YES;
- self.tableView.delegate = self;
- self.tableView.dataSource = self;
- [self getData];
- WS(weakSelf);
- [self.joinBtn setAction:^{
- [weakSelf ModifydHanderWithId:weakSelf.model.Id withTypeAdminVerifyTypeConst:1];
- }];
- }
- - (void)ModifydHanderWithId:(NSInteger)ID withTypeAdminVerifyTypeConst:(NSInteger)AdminVerifyTypeConst{
- [[HttpManager sharedHttpManager] PUTUrl:Host(API_Verti_Modify) parameters:@{@"AdminVerifyTypeConst":@(AdminVerifyTypeConst),@"Id":@(ID)} responseStyle:DATA success:^(id _Nonnull responseObject) {
- SHOWSUCCESS(@"已申请加入小组");
- } failure:^(NSError * _Nonnull error) {
- }];
- }
- - (void)getData
- {
- WS(weakSelf);
- [[HttpManager sharedHttpManager] POSTUrl:Host(APP_Group_Detail) parameters:@{@"GroupId":@(self.GroupId)} responseStyle:JOSN success:^(id _Nonnull responseObject) {
- NSLog(@"%@",responseObject);
- weakSelf.model = [TDGroupInfoListModel modelWithDictionary:responseObject];
- [weakSelf.dataArray addObjectsFromArray:weakSelf.model.GroupUserListResult];
- dispatch_async(dispatch_get_main_queue(), ^{
- if (weakSelf.model.IsUser) {
- weakSelf.bottomContant.constant = 0.f;
- weakSelf.joinBtn.hidden = YES;
- }
- [weakSelf.tableView reloadData];
- });
- } failure:^(NSError * _Nonnull error) {
-
- }];
- }
- - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
- {
- return UITableViewAutomaticDimension;
- }
- - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
- {
- return 4;
- }
- - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
- {
- WS(weakSelf);
- switch (indexPath.row) {
- case 0:
- {
- GroupSynopsisCell * cell = [GroupSynopsisCell configCell3:tableView indexPath:indexPath];
- [cell setDataModel:self.model isShow:self.show];
- cell.ShowBlcok = ^(BOOL show) {
- weakSelf.show = show;
- dispatch_async(dispatch_get_main_queue(), ^{
- [tableView reloadRowAtIndexPath:indexPath withRowAnimation:UITableViewRowAnimationAutomatic];
- });
- };
- return cell;
- }
- break;
- case 1:
- {
- GroupSynopsisCell * cell = [GroupSynopsisCell configCell0:tableView indexPath:indexPath];
- [cell setData];
- return cell;
- }
- break;
- case 2:
- {
- GroupSynopsisCell * cell = [GroupSynopsisCell configCell1:tableView indexPath:indexPath];
- [cell setUserCount:self.model.GroupUserNumber];
- return cell;
- }
- break;
- default:
- {
- GroupSynopsisCell * cell = [GroupSynopsisCell configCell2:tableView indexPath:indexPath];
- [cell setGroupLabel:self.model.LabelName];
- return cell;
- }
- break;
- }
- }
- @end
|