AddLookUpUserSecondVC.m 44 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076
  1. //
  2. // AddLookUpUserSecondVC.m
  3. // smartRhino
  4. //
  5. // Created by tederen on 2019/11/25.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import "AddLookUpUserSecondVC.h"
  9. #import "SendInfoGroupCell.h"
  10. #import "SendGroupBCell.h"
  11. #import "MailListSearchVC.h"
  12. #import "MyTDGroupView.h"
  13. #import "MailModel.h"
  14. #import "MailListCell.h"
  15. #import "ShareSysVC.h"
  16. #import "ShareCusVC.h"
  17. #import "ShowSysVC.h"
  18. #import "ShowUserVC.h"
  19. #import "ShowDesVC.h"
  20. @interface AddLookUpUserSecondVC ()<UITableViewDelegate,UITableViewDataSource>
  21. @property (nonatomic, strong) TDTableView *myTableView;
  22. @property (nonatomic, strong) UIView *listHeaderVIew;
  23. @property (nonatomic, strong) TDButton *serachButton;
  24. @property (nonatomic, strong) AddressBookGroupModel *addressBookModel;
  25. @property (nonatomic,assign) NSInteger indexflag;
  26. @property (nonatomic, strong) NSMutableArray <SelectModel*>*selectArray;
  27. @property (nonatomic, strong) NSMutableArray <Department *>*selectDepartArray;
  28. @property (nonatomic, strong) NSMutableArray <SelectModel*>*usersSourceDataArray;
  29. @property (nonatomic, strong) NSMutableArray *dataSourceArray;
  30. @property (nonatomic, strong) NSMutableArray *OtherArray;
  31. @property (nonatomic, strong) UIView *SortView;
  32. @property (nonatomic, strong) UIButton *allSelectBtn;
  33. @property (nonatomic, strong) UILabel *selectCountL;
  34. @end
  35. @implementation AddLookUpUserSecondVC
  36. - (void)viewWillAppear:(BOOL)animated
  37. {
  38. [super viewWillAppear:animated];
  39. [self countMailArray:@[]];
  40. }
  41. - (void)viewDidLoad {
  42. [super viewDidLoad];
  43. [self getdata];
  44. [self.view addSubview:self.listHeaderVIew];
  45. [self.listHeaderVIew mas_makeConstraints:^(MASConstraintMaker *make) {
  46. make.left.right.mas_equalTo(self.view);
  47. make.top.mas_equalTo(self.myNavigationBar.mas_bottom);
  48. make.height.mas_offset(44);
  49. }];
  50. [self addSortV];
  51. [self.view addSubview:self.myTableView];
  52. [self.myTableView mas_makeConstraints:^(MASConstraintMaker *make) {
  53. make.top.mas_equalTo(self.SortView.mas_bottom);
  54. make.left.right.mas_equalTo(self.view);
  55. make.bottom.mas_equalTo(self.view.mas_safeAreaLayoutGuideBottom);
  56. }];
  57. WS(weakSelf);
  58. UITapGestureRecognizer * tap = [[UITapGestureRecognizer alloc] initWithActionBlock:^(id _Nonnull sender) {
  59. MailListSearchVC *vc = [[MailListSearchVC alloc] init];
  60. vc.notChangeColor = weakSelf.notSearchChangeColor;
  61. vc.IsAddUser = YES;
  62. vc.isShow = weakSelf.isShow;
  63. vc.UserIds = weakSelf.UserIds;
  64. vc.DepartmentId = weakSelf.indexId;
  65. vc.SearchType = weakSelf.isMyGroup;
  66. [weakSelf.navigationController pushViewController:vc animated:YES];
  67. }];
  68. [self.listHeaderVIew addGestureRecognizer:tap];
  69. self.fd_prefersNavigationBarHidden = YES;
  70. self.view.backgroundColor = UIColorHex(#FFFFFF);
  71. self.myTableView.backgroundColor = UIColorHex(#F5F6F8);
  72. [self createnavi];
  73. }
  74. #pragma mark - 导航视图
  75. - (void)createnavi{
  76. self.myNavigationBar.titleLabel.text = self.titleStr;
  77. [self.myNavigationBar.rightButton setTitleColor:[UIColor lightGrayColor] forState:UIControlStateNormal];
  78. [self.myNavigationBar.rightButton setTitle:@"确定" forState:UIControlStateNormal];
  79. [[self.myNavigationBar.rightButton titleLabel] setFont:[UIFont systemFontOfSize:15.f]];
  80. self.myNavigationBar.rightButton.hidden = NO;
  81. [self.myNavigationBar.rightButton mas_remakeConstraints:^(MASConstraintMaker *make) {
  82. make.centerY.equalTo(self.myNavigationBar.backButton);
  83. make.height.mas_offset(@44);
  84. make.right.mas_equalTo(self.myNavigationBar.mas_right).offset(-15);
  85. }];
  86. }
  87. #pragma mark - 导航事件处理
  88. -(void)back{
  89. [self.navigationController popViewControllerAnimated:YES];
  90. }
  91. -(void)back1{
  92. for ( NSInteger i = (self.navigationController.viewControllers.count - 1); i > 0 ;i --) {
  93. NSLog(@"%@",self.navigationController.viewControllers[i]);
  94. if ([self.navigationController.viewControllers[i] isKindOfClass:NSClassFromString(@"MyWorkWordVC")]
  95. || [self.navigationController.viewControllers[i] isKindOfClass:NSClassFromString(@"ChatNewGroupVC")]
  96. || [self.navigationController.viewControllers[i] isKindOfClass:NSClassFromString(@"H5ViewController")]
  97. || [self.navigationController.viewControllers[i] isKindOfClass:NSClassFromString(@"MyTDTopicCreateVC")]
  98. || [self.navigationController.viewControllers[i] isKindOfClass:NSClassFromString(@"MyFavoriteNewFindVC")]
  99. || [self.navigationController.viewControllers[i] isKindOfClass:NSClassFromString(@"ChatNewRowVC")]
  100. || [self.navigationController.viewControllers[i] isKindOfClass:NSClassFromString(@"MyTDTopicGroupUserVC")]
  101. || [self.navigationController.viewControllers[i] isKindOfClass:NSClassFromString(@"WorkFlowOrderController")]
  102. || [self.navigationController.viewControllers[i] isKindOfClass:NSClassFromString(@"CreateInterLeterVC")]
  103. || [self.navigationController.viewControllers[i] isKindOfClass:NSClassFromString(@"MailListByZuVC")]) {
  104. [self.navigationController popToViewController:self.navigationController.viewControllers[i] animated:YES];
  105. return;
  106. }
  107. }
  108. }
  109. //全选操作
  110. - (void)selectedAction{
  111. if (self.isAllSelected) {
  112. [self.allSelectBtn setImage:IMG(@"sendinfo_yes") forState:UIControlStateNormal];
  113. }else{
  114. [self.allSelectBtn setImage:IMG(@"sendinfo_no") forState:UIControlStateNormal];
  115. }
  116. if (self.IsSubVC) {
  117. NSInteger count = 0;
  118. for(NSInteger i = 0 ; i < 2 ; i++){
  119. if (i == 0) {
  120. for (Department *depart in self.departSourceDataArray) {
  121. depart.hadSelected = self.isAllSelected;
  122. if (depart.hadSelected) {
  123. count ++;
  124. }
  125. [self countMailArray:@[depart]];
  126. }
  127. }
  128. if (i == 1) {
  129. for (SelectModel * model in self.usersSourceDataArray) {
  130. model.hadSelected = self.isAllSelected;
  131. if (model.hadSelected) {
  132. count ++;
  133. }
  134. [self countMailArray:@[model]];
  135. }
  136. }
  137. }
  138. self.selectCountL.text = [NSString stringWithFormat:@"%ld",count];
  139. }else{
  140. NSInteger count = 0;
  141. for (NSArray * array in self.dataSourceArray) {
  142. for (id sub in array) {
  143. if ([sub isKindOfClass:[MailModel class]]) {
  144. MailModel * model = (MailModel *)sub;
  145. model.IsSelect = self.isAllSelected;
  146. if (model.IsSelect) {
  147. count ++;
  148. }
  149. [self countMailArray:@[model]];
  150. }
  151. if ([sub isKindOfClass:[SelectModel class]]) {
  152. SelectModel * model = (SelectModel *)sub;
  153. model.hadSelected = self.isAllSelected;
  154. if (model.hadSelected) {
  155. count ++;
  156. }
  157. [self countMailArray:@[model]];
  158. }
  159. }
  160. }
  161. self.selectCountL.text = [NSString stringWithFormat:@"%ld",count];
  162. }
  163. [self.myTableView reloadData];
  164. }
  165. // 左边按钮 全选 取消全选
  166. - (void)secondBarButtonItems:(TDButton *)sender{
  167. [super menuAction:sender];
  168. }
  169. - (void)rightButtonAction:(TDButton *)sender{
  170. [self confirmAction:sender];
  171. }
  172. - (BOOL)hidesBottomBarWhenPushed{
  173. return YES;
  174. }
  175. - (void)confirmAction:(UIButton*)btn{
  176. NSMutableDictionary * paraDict = [NSMutableDictionary dictionary];
  177. if (self.dataSourceArray.count > 0) {
  178. NSMutableArray * mArray = [NSMutableArray array];
  179. for (NSArray * array in self.dataSourceArray) {
  180. for (id sub in array) {
  181. if ([sub isKindOfClass:[MailModel class]]) {
  182. MailModel * model = (MailModel *)sub;
  183. if (model.IsSelect) {
  184. [mArray addObject:@{@"SourceType":@(model.TypeId),@"SourceId":@(model.Id),@"SourceTypeValue":@(model.TypeValue),@"SourceName":model.Name}];
  185. }
  186. }
  187. if ([sub isKindOfClass:[SelectModel class]]) {
  188. SelectModel * model = (SelectModel *)sub;
  189. if (model.hadSelected) {
  190. [mArray addObject:@{@"SourceType":@(model.TypeId),@"SourceId":@(model.Id),@"SourceTypeValue":@(model.TypeValue),@"SourceName":model.Name}];
  191. }
  192. }
  193. }
  194. }
  195. if (mArray.count > 0) {
  196. [paraDict setValue:mArray forKey:@"Item"];
  197. }
  198. }
  199. if (self.departSourceDataArray.count > 0) {
  200. NSMutableArray * mArray = [NSMutableArray array];
  201. for (Department *model in self.departSourceDataArray) {
  202. if (model.hadSelected) {
  203. [mArray addObject:@{@"SourceType":@(model.TypeId),@"SourceId":@(model.Id),@"SourceTypeValue":@(0),@"SourceName":model.Name}];
  204. }
  205. }
  206. if (mArray.count > 0) {
  207. [paraDict setValue:mArray forKey:@"Item"];
  208. }
  209. }
  210. [self.selectArray removeAllObjects];
  211. SHOWLOADING
  212. WS(weakSelf);
  213. [[HttpManager sharedHttpManager] POSTUrl:Host(API_APP_User_Middle) parameters:paraDict responseStyle:JOSN success:^(id _Nonnull responseObject) {
  214. REMOVESHOW
  215. for (NSDictionary *dict in responseObject) {
  216. SelectModel * model = [SelectModel modelWithDictionary:dict];
  217. model.UserId = model.Id;
  218. model.UserName = model.Name;
  219. model.SourceType = weakSelf.SourceType;
  220. model.SourceId = model.UserId;
  221. model.SourceName = model.UserName;
  222. [weakSelf.selectArray addObject:model];
  223. }
  224. [[NSNotificationCenter defaultCenter] postNotificationName:NOTIFI_ChaoSongRen object:nil userInfo:@{@"selectPeople":weakSelf.selectArray}];
  225. [weakSelf back1];
  226. } failure:^(NSError * _Nonnull error) {
  227. SHOWERROR([ZYCTool handerResultData:error]);
  228. }];
  229. // if (self.isAllSelected) {
  230. // //获取所有被选中的分组
  231. // NSMutableArray *groupIDArray = [NSMutableArray array];
  232. // for (Department *model in self.departSourceDataArray) {
  233. // if (model.hadSelected) {
  234. // [groupIDArray addObject:model];
  235. // }
  236. // }
  237. // for (SelectModel *mode in self.usersSourceDataArray) {
  238. // if (mode.hadSelected) {
  239. // mode.SourceType = 0;
  240. // mode.SourceId = mode.UserId;
  241. // mode.SourceName = mode.UserName;
  242. // [self.selectArray addObject:mode];
  243. // }
  244. // }
  245. // if (groupIDArray.count == 0) {
  246. // NSLog(@"选中%@",self.selectArray);
  247. // [[NSNotificationCenter defaultCenter] postNotificationName:NOTIFI_ChaoSongRen object:nil userInfo:@{@"selectPeople":self.selectArray}];
  248. // [self back1];
  249. // return;
  250. // } else {
  251. // NSMutableArray *selectedUsers = [[NSMutableArray alloc] init];
  252. // //把部门转换为成员
  253. // for (Department *model in groupIDArray) {
  254. // SelectModel *selectModel = [[SelectModel alloc] init];
  255. // selectModel.UserId = model.Id;
  256. // selectModel.UserName = model.Name ? model.Name : model.GroupName;
  257. // selectModel.SourceType = self.SourceType;
  258. // selectModel.SourceId = model.Id;
  259. // selectModel.SourceName = model.Name ? model.Name : model.GroupName;
  260. // [selectedUsers addObject:selectModel];
  261. // if ([model.Name isEqualToString:@"单位通讯录"]) {
  262. // selectModel.SourceType = 1;
  263. // }else if ([model.Name isEqualToString:@"自建通讯录"]) {
  264. // selectModel.SourceType = 3;
  265. // }
  266. // }
  267. // if (self.selectArray.count > 0) {
  268. // [selectedUsers addObjectsFromArray:self.selectArray];
  269. // }
  270. // [[NSNotificationCenter defaultCenter] postNotificationName:NOTIFI_ChaoSongRen object:nil userInfo:@{@"selectPeople":selectedUsers}];
  271. // [self back1];
  272. // return;
  273. // }
  274. // }
  275. // NSMutableArray *groupIDArray = [NSMutableArray array];
  276. // for (Department *model in self.departSourceDataArray) {
  277. // if (model.hadSelected) {
  278. // [groupIDArray addObject:@(model.Id)];
  279. // }
  280. // }
  281. // for (SelectModel *mode in self.usersSourceDataArray) {
  282. // if (mode.hadSelected) {
  283. // [self.selectArray addObject:mode];
  284. // }
  285. // }
  286. // if (self.selectArray.count > 0) {
  287. // NSLog(@"选中%@",self.selectArray);
  288. // [[NSNotificationCenter defaultCenter] postNotificationName:NOTIFI_ChaoSongRen object:nil userInfo:@{@"selectPeople":self.selectArray}];
  289. // [self back1];
  290. // return;
  291. // }else{
  292. // NSMutableDictionary *dic = @{@"ItemId":groupIDArray}.mutableCopy;
  293. // [dic setValue:@(self.isMyGroup) forKey:@"TypeId"];
  294. // if (self.isDefalutPage == 1) {
  295. // [dic setValue:@[@(0)] forKey:@"ItemId"];
  296. // if (self.indexflag == 0) {
  297. // if (self.departSourceDataArray.firstObject.hadSelected) {
  298. // [dic setValue:@(1) forKey:@"TypeId"];
  299. // }else{
  300. // [dic setValue:@(2) forKey:@"TypeId"];
  301. // }
  302. // }else if (self.indexflag == 1) {
  303. // if (self.departSourceDataArray.firstObject.hadSelected) {
  304. // [dic setValue:@(1) forKey:@"TypeId"];
  305. // }else{
  306. // [dic setValue:@(2) forKey:@"TypeId"];
  307. // }
  308. // }else if (self.indexflag == 2){
  309. // [dic setValue:@(1) forKey:@"TypeId"];
  310. // }
  311. // }
  312. // NSLog(@"请求参数1%@",dic);
  313. // [[HttpManager sharedHttpManager] POSTUrl:[NSString stringWithFormat:@"%@%@",BaseUrl,AddChaoSongRen_Post] parameters:dic responseStyle:JOSN success:^(id _Nonnull responseObject) {
  314. // REMOVESHOW
  315. // for (NSDictionary *dict in responseObject) {
  316. // SelectModel * model = [SelectModel modelWithDictionary:dict];
  317. // model.UserId = model.Id;
  318. // model.UserName = model.Name;
  319. // model.SourceType = weakSelf.SourceType;
  320. // model.SourceId = model.UserId;
  321. // model.SourceName = model.UserName;
  322. // [weakSelf.selectArray addObject:model];
  323. // }
  324. // [[NSNotificationCenter defaultCenter] postNotificationName:NOTIFI_ChaoSongRen object:nil userInfo:@{@"selectPeople":weakSelf.selectArray}];
  325. // [weakSelf back1];
  326. // } failure:^(NSError * _Nonnull error) {
  327. // SHOWERROR([ZYCTool handerResultData:error]);
  328. // }];
  329. // }
  330. }
  331. //- (void)setRIghtButtonTitle:(NSInteger)indeflag{
  332. // [self.myNavigationBar.rightButton setTitle:[NSString stringWithFormat:@"确定(%ld)",(long)indeflag] forState:UIControlStateNormal];
  333. // if (self.isDefalutPage == 1){
  334. // if (indeflag == 2) {
  335. // [self.myNavigationBar.backButton2 setTitle:@"取消全选" forState:UIControlStateNormal];
  336. // }else{
  337. // [self.myNavigationBar.backButton2 setTitle:@"全选" forState:UIControlStateNormal];
  338. // }
  339. // }else{
  340. // [self.myNavigationBar.backButton2 setTitle:@"全选" forState:UIControlStateNormal];
  341. // }
  342. //}
  343. #pragma mark - setter
  344. - (TDTableView *)myTableView{
  345. if (!_myTableView) {
  346. _myTableView = [[TDTableView alloc] initWithFrame:CGRectZero style:UITableViewStyleGrouped];
  347. _myTableView.delegate = self;
  348. _myTableView.dataSource = self;
  349. [self.myTableView registerNib:[UINib nibWithNibName:@"SendInfoGroupCell" bundle:nil] forCellReuseIdentifier:@"SendInfoGroupCell"];//SendGroupBCell
  350. [self.myTableView registerNib:[UINib nibWithNibName:@"SendGroupBCell" bundle:nil] forCellReuseIdentifier:@"SendGroupBCell"];
  351. }
  352. return _myTableView;
  353. }
  354. - (UIView *)listHeaderVIew{
  355. if (!_listHeaderVIew) {
  356. _listHeaderVIew = [UIView new];
  357. _listHeaderVIew.backgroundColor = UIColorHex(#FFFFFF);
  358. MyTDGroupView * groupView = [[MyTDGroupView alloc] initWithFrame:CGRectMake(0, 4, SCREEN_WIDTH, 36)];
  359. [_listHeaderVIew addSubview:groupView];
  360. }
  361. return _listHeaderVIew;
  362. }
  363. - (TDButton *)serachButton{
  364. if (!_serachButton) {
  365. _serachButton = [[TDButton alloc]initWithFrame:CGRectMake(20,5, kGXScreenWidth-40,40)];
  366. [_serachButton setTitle:@"搜索" forState:UIControlStateNormal];
  367. [[_serachButton titleLabel] setFont:[UIFont systemFontOfSize:14.f]];
  368. [_serachButton setImage:IMG(@"sendinfo_search") forState:UIControlStateNormal];
  369. [_serachButton setTitleColor:UIColorHex(B6B7B9) forState:UIControlStateNormal];
  370. _serachButton.backgroundColor = UIColorHex(F5F6F8);
  371. [_serachButton addTarget:self action:@selector(searchhander:) forControlEvents:UIControlEventTouchDown];
  372. [_serachButton layoutButtonWithEdgeInsetsStyle:GLButtonEdgeInsetsStyleLeft imageTitleSpace:2];
  373. _serachButton.layer.cornerRadius = 20;
  374. _serachButton.layer.masksToBounds = YES;
  375. }
  376. return _serachButton;
  377. }
  378. - (NSMutableArray<SelectModel *> *)selectArray{
  379. if (!_selectArray) {
  380. _selectArray = [NSMutableArray array];
  381. }
  382. return _selectArray;
  383. }
  384. #pragma mark -UITableViewDelegate,UITableViewDataSource
  385. - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
  386. if (!self.IsSubVC) {
  387. return self.dataSourceArray.count;
  388. }else{
  389. return 2;
  390. }
  391. }
  392. -(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
  393. if (!self.IsSubVC) {
  394. NSArray * array = self.dataSourceArray[section];
  395. return [array count];
  396. }else{
  397. if (section == 0) {
  398. return self.departSourceDataArray.count;
  399. }else{
  400. return self.usersSourceDataArray.count;
  401. }
  402. }
  403. }
  404. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
  405. WS(weakSelf);
  406. if (!self.IsSubVC) {
  407. if ([self checkAllSelect:2]) {
  408. [self.allSelectBtn setImage:IMG(@"sendinfo_yes") forState:UIControlStateNormal];
  409. }else{
  410. [self.allSelectBtn setImage:IMG(@"sendinfo_no") forState:UIControlStateNormal];
  411. }
  412. NSString *cellIdentifier2 = @"SendGroupBCell";
  413. SendGroupBCell * cell = (SendGroupBCell *)[tableView dequeueReusableCellWithIdentifier:cellIdentifier2];
  414. NSArray * array = self.dataSourceArray[indexPath.section];
  415. switch (indexPath.section) {
  416. case 0:
  417. {
  418. if (array.count > 0) {
  419. MailModel * model = array[indexPath.row];
  420. [cell setDataModel:model];
  421. [cell.selectbuton setAction:^{
  422. model.IsSelect = !model.IsSelect;
  423. [weakSelf checkSelectCount:model];
  424. [weakSelf.myTableView reloadRow:indexPath.row inSection:indexPath.section withRowAnimation:UITableViewRowAnimationNone];
  425. }];
  426. }
  427. }
  428. break;
  429. default:{
  430. NSString *cellIdentifier = @"SendInfoGroupCell";
  431. SendInfoGroupCell * detailCommentCell = (SendInfoGroupCell *)[tableView dequeueReusableCellWithIdentifier:cellIdentifier];
  432. SelectModel *model = array[indexPath.row];
  433. [detailCommentCell loadDataDepartUserModel:model indexWith:indexPath];
  434. [detailCommentCell.selectbuton setAction:^{
  435. model.hadSelected = !model.hadSelected;
  436. [weakSelf checkSelectCount:model];
  437. [weakSelf.myTableView reloadRow:indexPath.row inSection:indexPath.section withRowAnimation:UITableViewRowAnimationNone];
  438. }];
  439. detailCommentCell.rightImgeView.hidden = YES;
  440. return detailCommentCell;
  441. }
  442. break;
  443. }
  444. return cell;
  445. }else{
  446. if (indexPath.section == 1) {
  447. if ([self checkAllSelect:0]) {
  448. [self.allSelectBtn setImage:IMG(@"sendinfo_yes") forState:UIControlStateNormal];
  449. }else{
  450. [self.allSelectBtn setImage:IMG(@"sendinfo_no") forState:UIControlStateNormal];
  451. }
  452. NSString *cellIdentifier = @"SendInfoGroupCell";
  453. SendInfoGroupCell * detailCommentCell = (SendInfoGroupCell *)[tableView dequeueReusableCellWithIdentifier:cellIdentifier];
  454. SelectModel *model = self.usersSourceDataArray[indexPath.row];
  455. [detailCommentCell loadDataDepartUserModel:model indexWith:indexPath];
  456. [detailCommentCell.selectbuton setAction:^{
  457. model.hadSelected = !model.hadSelected;
  458. [weakSelf checkSelectCount:model];
  459. [weakSelf.myTableView reloadRow:indexPath.row inSection:indexPath.section withRowAnimation:UITableViewRowAnimationNone];
  460. }];
  461. detailCommentCell.rightImgeView.hidden = YES;
  462. return detailCommentCell;
  463. }else{
  464. if ([self checkAllSelect:1]) {
  465. [self.allSelectBtn setImage:IMG(@"sendinfo_yes") forState:UIControlStateNormal];
  466. }else{
  467. [self.allSelectBtn setImage:IMG(@"sendinfo_no") forState:UIControlStateNormal];
  468. }
  469. NSString *cellIdentifier2 = @"SendGroupBCell";
  470. SendGroupBCell * sendB = (SendGroupBCell *)[tableView dequeueReusableCellWithIdentifier:cellIdentifier2];
  471. Department *model = self.departSourceDataArray[indexPath.row];
  472. [sendB loadDataModelDepartment: model WithIndex:indexPath];
  473. [sendB.selectbuton setAction:^{
  474. model.hadSelected = !model.hadSelected;
  475. [weakSelf checkSelectCount:model];
  476. [weakSelf.myTableView reloadRow:indexPath.row inSection:indexPath.section withRowAnimation:UITableViewRowAnimationNone];
  477. }];
  478. sendB.rightImgeView.hidden = NO;
  479. return sendB;
  480. }
  481. }
  482. }
  483. - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
  484. return 65.f;
  485. }
  486. - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
  487. {
  488. if (!self.IsSubVC && section > 0) {
  489. return 36.f;
  490. }else{
  491. return 0.01f;
  492. }
  493. }
  494. - (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section
  495. {
  496. return 0.01f;
  497. }
  498. - (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
  499. {
  500. if (!self.IsSubVC && section > 0) {
  501. UIView * view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, 36)];
  502. view.backgroundColor = UIColorHex(0xF0EFF4);
  503. UILabel * titleL = [UILabel new];
  504. [view addSubview:titleL];
  505. titleL.textColor = UIColorHex(0x666666);
  506. titleL.font = Kfont(13);
  507. titleL.text = @"最近聊天";
  508. [titleL mas_makeConstraints:^(MASConstraintMaker *make) {
  509. make.left.mas_offset(48);
  510. make.centerY.mas_equalTo(view);
  511. }];
  512. return view;
  513. }else{
  514. return [UIView new];
  515. }
  516. }
  517. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
  518. if (self.IsSubVC) {
  519. if (self.isDefalutPage == 1) {
  520. if (indexPath.row == 0) { //
  521. AddLookUpUserSecondVC *vc = [[AddLookUpUserSecondVC alloc] init];
  522. vc.indexId = self.departSourceDataArray[indexPath.row].Id;
  523. vc.isDefalutPage = 2;
  524. vc.isMyGroup = 1;
  525. vc.SourceType = 1;
  526. vc.IsSubVC = YES;
  527. vc.isShow = self.isShow;
  528. vc.UserIds = self.UserIds;
  529. vc.titleStr = self.titleStr;
  530. vc.grouperArray = self.grouperArray;
  531. vc.isAllSelected = self.isAllSelected;
  532. [self.navigationController pushViewController:vc animated:YES];
  533. }else{
  534. AddLookUpUserSecondVC *vc = [[AddLookUpUserSecondVC alloc] init];
  535. vc.indexId = self.departSourceDataArray[indexPath.row].Id;
  536. vc.isDefalutPage = 2;
  537. vc.isMyGroup = 2;
  538. vc.titleStr = self.titleStr;
  539. vc.SourceType = 3;
  540. vc.IsSubVC = YES;
  541. vc.isShow = self.isShow;
  542. vc.UserIds = self.UserIds;
  543. vc.grouperArray = self.grouperArray;
  544. vc.isAllSelected = self.isAllSelected;
  545. [self.navigationController pushViewController:vc animated:YES];
  546. }
  547. }else{
  548. if (indexPath.section == 0) {
  549. AddLookUpUserSecondVC *vc = [[AddLookUpUserSecondVC alloc] init];
  550. Department *model = self.departSourceDataArray[indexPath.row];
  551. vc.indexId = model.Id;
  552. vc.isDefalutPage = 2;
  553. vc.IsSubVC = YES;
  554. vc.isShow = self.isShow;
  555. vc.UserIds = self.UserIds;
  556. vc.titleStr = self.titleStr;
  557. vc.isMyGroup = self.isMyGroup;
  558. vc.SourceType = self.SourceType;
  559. vc.grouperArray = self.grouperArray;
  560. vc.isAllSelected = self.isAllSelected;
  561. [self.navigationController pushViewController:vc animated:YES];
  562. }else{
  563. SelectModel *model = self.usersSourceDataArray[indexPath.row];
  564. model.hadSelected = !model.hadSelected;
  565. [self checkSelectCount:model];
  566. [self.myTableView reloadRow:indexPath.row inSection:indexPath.section withRowAnimation:UITableViewRowAnimationNone];
  567. }
  568. }
  569. }else{
  570. NSArray * array = [self.dataSourceArray objectAtIndex:indexPath.section];
  571. MailModel * model = [array objectAtIndex:indexPath.row];
  572. switch (model.TypeId) {
  573. case MailListUserType:
  574. {
  575. SelectModel * smodel = [array objectAtIndex:indexPath.row];
  576. smodel.hadSelected = !smodel.hadSelected;
  577. [self checkSelectCount:smodel];
  578. [self.myTableView reloadRow:indexPath.row inSection:indexPath.section withRowAnimation:UITableViewRowAnimationNone];
  579. }
  580. break;
  581. case MailListDesType:
  582. {
  583. if (model.IsSelect) {
  584. model.IsSelect = !model.IsSelect;
  585. [self.myTableView reloadRow:indexPath.row inSection:indexPath.section withRowAnimation:UITableViewRowAnimationNone];
  586. }else{
  587. ShowDesVC * vc = [ShowDesVC initShowDesVC];
  588. vc.dataSourceArray = model.Items.mutableCopy;
  589. vc.IsSelect = YES;
  590. [self.navigationController pushViewController:vc animated:YES];
  591. }
  592. }
  593. break;
  594. case MailListSysType:
  595. {
  596. ShowSysVC * vc = [ShowSysVC initShowSysVC];
  597. vc.dataSourceArray = model.Items.mutableCopy;
  598. vc.IsSelect = YES;
  599. [self.navigationController pushViewController:vc animated:YES];
  600. }
  601. break;
  602. case MailListOtherType:
  603. {
  604. ShowUserVC * vc = [ShowUserVC initShowUserVC];
  605. vc.IsSelect = YES;
  606. vc.dataSourceArray = self.OtherArray.mutableCopy;
  607. [self.navigationController pushViewController:vc animated:YES];
  608. }
  609. break;
  610. default:
  611. {
  612. AddLookUpUserSecondVC *vc = [[AddLookUpUserSecondVC alloc] init];
  613. vc.indexId = self.departSourceDataArray[indexPath.row].Id;
  614. vc.isDefalutPage = 2;
  615. vc.isMyGroup = 2;
  616. vc.titleStr = self.titleStr;
  617. vc.SourceType = 3;
  618. vc.IsSubVC = YES;
  619. vc.isShow = self.isShow;
  620. vc.UserIds = self.UserIds;
  621. vc.grouperArray = self.grouperArray;
  622. vc.isAllSelected = self.isAllSelected;
  623. [self.navigationController pushViewController:vc animated:YES];
  624. }
  625. break;
  626. }
  627. }
  628. }
  629. - (BOOL)checkAllSelect:(NSInteger)index
  630. {
  631. switch (index) {
  632. case 0:
  633. {
  634. for (SelectModel * model in self.usersSourceDataArray) {
  635. if (!model.hadSelected) {
  636. [self.allSelectBtn setImage:IMG(@"sendinfo_no") forState:UIControlStateNormal];
  637. return NO;
  638. }
  639. }
  640. [self.allSelectBtn setImage:IMG(@"sendinfo_yes") forState:UIControlStateNormal];
  641. return YES;
  642. }
  643. break;
  644. case 1:
  645. {
  646. for (Department * model in self.departSourceDataArray) {
  647. if (!model.hadSelected) {
  648. [self.allSelectBtn setImage:IMG(@"sendinfo_no") forState:UIControlStateNormal];
  649. return NO;
  650. }
  651. }
  652. [self.allSelectBtn setImage:IMG(@"sendinfo_yes") forState:UIControlStateNormal];
  653. return YES;
  654. }
  655. break;
  656. default:
  657. {
  658. for (NSArray * array in self.dataSourceArray) {
  659. for (id sub in array) {
  660. if ([sub isKindOfClass:[MailModel class]]) {
  661. MailModel * model = (MailModel *)sub;
  662. if (!model.IsSelect) {
  663. [self.allSelectBtn setImage:IMG(@"sendinfo_no") forState:UIControlStateNormal];
  664. return NO;
  665. }
  666. }
  667. if ([sub isKindOfClass:[SelectModel class]]) {
  668. SelectModel * model = (SelectModel *)sub;
  669. if (!model.hadSelected) {
  670. [self.allSelectBtn setImage:IMG(@"sendinfo_no") forState:UIControlStateNormal];
  671. return NO;
  672. }
  673. }
  674. }
  675. }
  676. [self.allSelectBtn setImage:IMG(@"sendinfo_yes") forState:UIControlStateNormal];
  677. return YES;
  678. }
  679. break;
  680. }
  681. }
  682. - (void)checkSelectCount:(id)detail
  683. {
  684. NSInteger count = 0;
  685. for (SelectModel * model in self.usersSourceDataArray) {
  686. if (model.hadSelected) {
  687. count++;
  688. }
  689. }
  690. for (NSArray * subArray in self.dataSourceArray) {
  691. for (id sub in subArray) {
  692. if ([sub isKindOfClass:[MailModel class]]) {
  693. MailModel * model = (MailModel *)sub;
  694. if (model.IsSelect) {
  695. count++;
  696. }
  697. }
  698. if ([sub isKindOfClass:[SelectModel class]]) {
  699. SelectModel * model = (SelectModel *)sub;
  700. if (model.hadSelected) {
  701. count++;
  702. }
  703. }
  704. }
  705. }
  706. for (SelectModel * model in self.departSourceDataArray) {
  707. if (model.hadSelected) {
  708. count++;
  709. }
  710. }
  711. self.selectCountL.text = [NSString stringWithFormat:@"%ld",count];
  712. [self countMailArray:@[detail]];
  713. }
  714. - (void)countMailArray:(NSArray *)sssArray
  715. {
  716. NSMutableArray * mailArray = [NSMutableArray arrayWithArray:USERDEFAULTSGET(MAILSELECT)];
  717. for (id detail in sssArray) {
  718. SelectModel * ssmodel = [self addSelectModel:detail];
  719. __block BOOL isEque = NO;
  720. [mailArray enumerateObjectsUsingBlock:^(id _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
  721. SelectModel * sModel = (SelectModel*) [NSKeyedUnarchiver unarchiveObjectWithData:(NSData *)obj];
  722. if (sModel.SourceType == ssmodel.SourceType && sModel.SourceId == ssmodel.SourceId) {
  723. isEque = YES;
  724. if (!ssmodel.hadSelected) {
  725. [mailArray removeObject:obj];
  726. }
  727. }
  728. }];
  729. if (!isEque && ssmodel.hadSelected) {
  730. NSData * ssdata = [NSKeyedArchiver archivedDataWithRootObject:ssmodel];
  731. [mailArray addObject:ssdata];
  732. }
  733. USERDEFAULTSSET(mailArray, MAILSELECT);
  734. }
  735. if (mailArray.count > 0) {
  736. self.myNavigationBar.rightButton.enabled = YES;
  737. [self.myNavigationBar.rightButton setTitleColor:UIColorHex(#3979D3) forState:UIControlStateNormal];
  738. [self.myNavigationBar.rightButton setTitle:[NSString stringWithFormat:@"确定(%ld)",(long)mailArray.count] forState:UIControlStateNormal];
  739. }else{
  740. self.myNavigationBar.rightButton.enabled = NO;
  741. [self.myNavigationBar.rightButton setTitle:@"确定" forState:UIControlStateNormal];
  742. [self.myNavigationBar.rightButton setTitleColor:[UIColor lightGrayColor] forState:UIControlStateNormal];
  743. }
  744. }
  745. - (SelectModel *)addSelectModel:(id)model
  746. {
  747. if ([model isKindOfClass:[SelectModel class]]) {
  748. SelectModel * sModel = (SelectModel *)model;
  749. sModel.SourceType = 0;
  750. sModel.SourceId = sModel.UserId;
  751. sModel.SourceName = sModel.UserName;
  752. sModel.hadSelected = sModel.hadSelected;
  753. sModel.AvatarUrl = sModel.AvatarUrl;
  754. return sModel;
  755. }
  756. if ([model isKindOfClass:[MailModel class]]) {
  757. MailModel * mModel = (MailModel *)model;
  758. SelectModel * sModel = [[SelectModel alloc] init];
  759. sModel.SourceType = mModel.TypeId;
  760. sModel.SourceId = 0;
  761. sModel.SourceName = mModel.Name;
  762. sModel.TypeValue = 0;
  763. sModel.hadSelected = mModel.IsSelect;
  764. return sModel;
  765. }
  766. if ([model isKindOfClass:[MailSubModel class]]) {
  767. MailSubModel * mModel = (MailSubModel *)model;
  768. SelectModel * sModel = [[SelectModel alloc] init];
  769. sModel.SourceType = mModel.TypeId;
  770. sModel.SourceId = mModel.Id;
  771. sModel.SourceName = mModel.Name;
  772. sModel.TypeValue = mModel.TypeValue;
  773. sModel.hadSelected = mModel.IsSelect;
  774. return sModel;
  775. }
  776. if ([model isKindOfClass:[Department class]]) {
  777. Department * mModel = (Department *)model;
  778. SelectModel * sModel = [[SelectModel alloc] init];
  779. sModel.SourceType = 1;
  780. sModel.SourceId = mModel.Id;
  781. sModel.SourceName = mModel.Name;
  782. sModel.TypeValue = 0;
  783. sModel.hadSelected = mModel.hadSelected;
  784. return sModel;
  785. }
  786. return nil;
  787. }
  788. #pragma mark - 网络数据请求
  789. - (void)getdata{
  790. if (!self.IsSubVC) {
  791. [self getRootData];
  792. }
  793. if (self.isDefalutPage == 1) {
  794. return ;
  795. }
  796. if (self.isMyGroup == 1) {
  797. [self defaltGroupData];
  798. }
  799. if (self.isMyGroup == 2) {
  800. [self myGroupData];
  801. }
  802. }
  803. - (void)getRootData
  804. {
  805. SHOWLOADING
  806. WS(weakSelf);
  807. [self.dataSourceArray removeAllObjects];
  808. [self.OtherArray removeAllObjects];
  809. [[HttpManager sharedHttpManager] GETUrl:Host(API_APP_User_Link) parameters:@{} responseStyle:JOSN success:^(id _Nonnull responseObject) {
  810. NSLog(@"%@",responseObject);
  811. REMOVESHOW
  812. NSMutableArray * fArray = [NSMutableArray array];
  813. if ([responseObject[@"Items"] isKindOfClass:[NSArray class]]) {
  814. NSArray * array = responseObject[@"Items"];
  815. for (NSDictionary * dict in array) {
  816. MailModel * model = [MailModel modelWithDictionary:dict];
  817. [fArray addObject:model];
  818. }
  819. if ([responseObject[@"FriendUsers"] isKindOfClass:[NSArray class]]) {
  820. NSArray * array = responseObject[@"FriendUsers"];
  821. for (NSDictionary * dict in array) {
  822. SelectModel * smodel = [[SelectModel alloc] initDict:dict];
  823. smodel.SourceId = smodel.UserId;
  824. smodel.SourceName = smodel.UserName;
  825. smodel.SourceType = 0;
  826. [weakSelf.OtherArray addObject:smodel];
  827. }
  828. }
  829. NSMutableArray * sArray = [NSMutableArray array];
  830. if ([responseObject[@"LatelyChatUsers"] isKindOfClass:[NSArray class]]) {
  831. NSArray * array = responseObject[@"LatelyChatUsers"];
  832. for (NSDictionary * dict in array) {
  833. SelectModel * smodel = [[SelectModel alloc] initDict:dict];
  834. smodel.SourceId = smodel.UserId;
  835. smodel.SourceName = smodel.UserName;
  836. smodel.SourceType = 0;
  837. [sArray addObject:smodel];
  838. }
  839. }
  840. [weakSelf.dataSourceArray addObject:fArray];
  841. [weakSelf.dataSourceArray addObject:sArray];
  842. dispatch_async(dispatch_get_main_queue(), ^{
  843. [weakSelf.myTableView reloadData];
  844. });
  845. }
  846. } failure:^(NSError * _Nonnull error) {
  847. REMOVESHOW
  848. }];
  849. }
  850. - (void)defaltGroupData{
  851. SHOWLOADING
  852. NSDictionary * paraDict = @{@"DepartmentId":@(self.indexId),@"UserIds":self.UserIds,@"IsShow":@(self.isShow)};
  853. NSLog(@"%@",paraDict);
  854. [[HttpManager sharedHttpManager] POSTUrl:[NSString stringWithFormat:@"%@%@",BaseUrl,AddressBookGroup_DepartemntDetail_Post] parameters:paraDict responseStyle:JOSN success:^(id _Nonnull responseObject) {
  855. REMOVESHOW;
  856. NSDictionary *dic = responseObject;
  857. NSArray *departMentArray = dic[@"Departments"];
  858. NSMutableArray *departMentMutableArray = [NSMutableArray array];
  859. for (NSDictionary *dic2 in departMentArray) {
  860. Department *model = [[Department alloc]initWithDictionary:dic2 error:nil];
  861. [departMentMutableArray addObject:model];
  862. }
  863. self.departSourceDataArray = departMentMutableArray;
  864. NSArray *userArray = dic[@"Users"];
  865. NSMutableArray *usersMutableArray = [NSMutableArray array];
  866. for (NSDictionary *dic2 in userArray) {
  867. SelectModel * model = [[SelectModel alloc] initDict:dic2];
  868. [usersMutableArray addObject:model];
  869. }
  870. for (SelectModel * model in self.grouperArray) {
  871. for (SelectModel * userModel in usersMutableArray) {
  872. if (userModel.UserId == model.UserId) {
  873. userModel.IsDelete = YES;
  874. }
  875. }
  876. }
  877. NSMutableArray * checkUserArray = [NSMutableArray array];
  878. for (SelectModel * model in usersMutableArray) {
  879. if (!model.IsDelete) {
  880. [checkUserArray addObject:model];
  881. }
  882. }
  883. self.usersSourceDataArray = checkUserArray;
  884. [self.myTableView reloadData];
  885. } failure:^(NSError * _Nonnull error) {
  886. SHOWERROR([ZYCTool handerResultData:error]);
  887. }];
  888. }
  889. - (void)myGroupData{
  890. SHOWLOADING
  891. NSDictionary * paraDict = @{@"AddressBookGroupId":@(self.indexId),@"UserIds":self.UserIds,@"IsShow":@(self.isShow)};
  892. NSLog(@"%@",paraDict);
  893. [[HttpManager sharedHttpManager] POSTUrl:[NSString stringWithFormat:@"%@%@",BaseUrl,AddressBookGroupUser_Get_Post] parameters:paraDict responseStyle:JOSN success:^(id _Nonnull responseObject) {
  894. REMOVESHOW;
  895. NSDictionary *dic = responseObject;
  896. NSArray *departMentArray = dic[@"AddressBookGroups"];
  897. NSMutableArray *departMentMutableArray = [NSMutableArray array];
  898. for (NSDictionary *dic2 in departMentArray) {
  899. Department *model = [[Department alloc]initWithDictionary:dic2 error:nil];
  900. [departMentMutableArray addObject:model];
  901. }
  902. self.departSourceDataArray = departMentMutableArray;
  903. NSArray *userArray = dic[@"AddressBookGroupUsers"];
  904. NSMutableArray *usersMutableArray = [NSMutableArray array];
  905. for (NSDictionary *dic2 in userArray) {
  906. SelectModel * model = [SelectModel modelWithDictionary:dic2];
  907. [usersMutableArray addObject:model];
  908. }
  909. for (SelectModel * model in self.grouperArray) {
  910. for (SelectModel * userModel in usersMutableArray) {
  911. if (userModel.UserId == model.UserId) {
  912. userModel.IsDelete = YES;
  913. }
  914. }
  915. }
  916. NSMutableArray * checkUserArray = [NSMutableArray array];
  917. for (SelectModel * model in usersMutableArray) {
  918. if (!model.IsDelete) {
  919. [checkUserArray addObject:model];
  920. }
  921. }
  922. self.usersSourceDataArray = checkUserArray;
  923. [self.myTableView reloadData];
  924. } failure:^(NSError * _Nonnull error) {
  925. SHOWERROR([ZYCTool handerResultData:error]);
  926. }];
  927. }
  928. #pragma mark - 搜索事件处理
  929. - (void)searchhander:(TDButton *)sedner{
  930. }
  931. -(void)getSearchKeyWord:(NSString *)searchWord{
  932. NSLog(@"%@",searchWord);
  933. if(searchWord.length > 0){
  934. NSMutableDictionary *dict = [NSMutableDictionary dictionary];
  935. [dict setObject:searchWord forKey:@"Key"];
  936. WEAKSELF
  937. [[HttpManager sharedHttpManager] POSTWithUrl:Host(AddressBookGroup_Search_Post) parameters:dict success:^(id _Nonnull responseObject) {
  938. STRONGSELF
  939. NSArray *array = responseObject;
  940. if (array.count == 0) {
  941. SHOWERROR(@"没有搜到结果");
  942. }else{
  943. NSArray *userArray = responseObject;
  944. NSMutableArray *usersMutableArray = [NSMutableArray array];
  945. for (NSDictionary *dic2 in userArray) {
  946. SelectModel * model = [[SelectModel alloc] initDict:dic2];
  947. [usersMutableArray addObject:model];
  948. }
  949. [strongSelf.departSourceDataArray removeAllObjects];
  950. strongSelf.usersSourceDataArray = usersMutableArray;
  951. [strongSelf.myTableView reloadData];
  952. [strongSelf.myTableView reloadData];
  953. }
  954. } failure:^(NSError * _Nonnull error) {
  955. SHOWERROR([ZYCTool handerResultData:error])
  956. }];
  957. }else{
  958. }
  959. }
  960. - (void)canCelAllSelect
  961. {
  962. for (SelectModel * model in self.usersSourceDataArray) {
  963. model.hadSelected = NO;
  964. }
  965. for (Department * model in self.departSourceDataArray) {
  966. model.hadSelected = NO;
  967. }
  968. }
  969. - (UIButton *)allSelectBtn
  970. {
  971. if (!_allSelectBtn) {
  972. _allSelectBtn = [UIButton new];
  973. [_allSelectBtn setImage:IMG(@"sendinfo_no") forState:UIControlStateNormal];
  974. }
  975. return _allSelectBtn;
  976. }
  977. - (UILabel *)selectCountL
  978. {
  979. if (!_selectCountL) {
  980. _selectCountL = [UILabel new];
  981. _selectCountL.font = Kfont(13);
  982. _selectCountL.text = @"0";
  983. _selectCountL.textColor = UIColorHex(0x0F88EB);
  984. }
  985. return _selectCountL;
  986. }
  987. - (UIView *)SortView
  988. {
  989. if (!_SortView) {
  990. _SortView = [UIView new];
  991. _SortView.backgroundColor = UIColorHex(0xF0EFF4);
  992. }
  993. return _SortView;
  994. }
  995. - (void)addSortV
  996. {
  997. [self.view addSubview:self.SortView];
  998. [self.SortView mas_makeConstraints:^(MASConstraintMaker *make) {
  999. make.left.right.mas_equalTo(self.view);
  1000. make.height.mas_offset(38);
  1001. make.top.mas_equalTo(self.listHeaderVIew.mas_bottom);
  1002. }];
  1003. [self.SortView addSubview:self.allSelectBtn];
  1004. [self.SortView addSubview:self.selectCountL];
  1005. [self.allSelectBtn mas_makeConstraints:^(MASConstraintMaker *make) {
  1006. make.left.mas_offset(5);
  1007. make.centerY.mas_equalTo(self.SortView);
  1008. make.size.mas_offset(CGSizeMake(38, 38));
  1009. }];
  1010. UILabel * leftL = [UILabel new];
  1011. leftL.text = @"已选:";
  1012. leftL.textColor = UIColorHex(0x666666);
  1013. leftL.font = Kfont(13);
  1014. [self.SortView addSubview:leftL];
  1015. [leftL mas_makeConstraints:^(MASConstraintMaker *make) {
  1016. make.left.mas_equalTo(self.allSelectBtn.mas_right).offset(5);
  1017. make.centerY.mas_equalTo(self.SortView);
  1018. }];
  1019. [self.selectCountL mas_makeConstraints:^(MASConstraintMaker *make) {
  1020. make.left.mas_equalTo(leftL.mas_right).offset(8);
  1021. make.centerY.mas_equalTo(self.SortView);
  1022. }];
  1023. WS(weakSelf);
  1024. [self.allSelectBtn setAction:^{
  1025. weakSelf.isAllSelected = !weakSelf.isAllSelected;
  1026. [weakSelf selectedAction];
  1027. }];
  1028. }
  1029. - (NSMutableArray *)dataSourceArray
  1030. {
  1031. if (!_dataSourceArray) {
  1032. _dataSourceArray = [NSMutableArray array];
  1033. }
  1034. return _dataSourceArray;
  1035. }
  1036. - (NSMutableArray *)OtherArray
  1037. {
  1038. if (!_OtherArray) {
  1039. _OtherArray = [NSMutableArray array];
  1040. }
  1041. return _OtherArray;
  1042. }
  1043. - (void)viewWillDisappear:(BOOL)animated
  1044. {
  1045. [super viewWillDisappear:animated];
  1046. [self canCelAllSelect];
  1047. [self.myTableView reloadData];
  1048. }
  1049. @end