TDInterLeterHomeViewController.m 116 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223
  1. //
  2. // TDInterLeterHomeViewController.m
  3. // smartRhino
  4. //
  5. // Created by tederen on 2019/11/9.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import "TDInterLeterHomeViewController.h"
  9. #import "ChatMsgNoticeCell.h"
  10. #import "YCMenuView.h"
  11. #import "ShowNewGroupAlert.h"
  12. #import "TDInterLeterTypeVC.h"
  13. #import "TDInterLeterSearchVC.h"
  14. #import "NoticeNewGroupVC.h"
  15. #import "MoveViewController.h"
  16. #import "CreateInterLeterVC.h"
  17. #import "MyTDTopicCreateVC.h"
  18. #import "MyTDTopicDetailVC.h"
  19. #import "NSDate+Extension.h"
  20. #import "ShowBtn.h"
  21. #import "MyTDGroupView.h"
  22. #import "NoticeListModel.h"
  23. #import "MyApprovalPageDetail.h"
  24. @interface TDInterLeterHomeViewController ()<UITableViewDelegate,UITableViewDataSource,TDInterLeterTypeVCDelegate>
  25. //@property (weak, nonatomic) IBOutlet UITableView *tableView;
  26. @property (strong, nonatomic) UITableView *tableView;
  27. @property (weak, nonatomic) IBOutlet ShowBtn *titleBtn;
  28. @property (weak, nonatomic) IBOutlet UIButton *rightAddBtn;
  29. @property (weak, nonatomic) IBOutlet UIButton *rightEditBtn;
  30. @property (weak, nonatomic) IBOutlet UILabel *titleLable;
  31. @property (weak, nonatomic) IBOutlet UIButton *deleteSelectBtn;
  32. @property (weak, nonatomic) IBOutlet UIView *NavBar;
  33. @property (weak, nonatomic) IBOutlet UIView *HeadView;
  34. @property (strong, nonatomic) MyTDGroupView *SearchView;
  35. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *HeadHight;
  36. @property (strong, nonatomic) UIButton *leftCloseBtn;
  37. @property (strong, nonatomic) UIButton *rightMoveBtn;
  38. @property (strong, nonatomic) UILabel *LineL;
  39. @property (strong, nonatomic) NSMutableArray *taskActionArray;
  40. @property (strong, nonatomic) TDInterLeterTypeVC *tDInterLeterTypeVC;
  41. @property (assign, nonatomic) PageTypeFromShou pageType;
  42. @property (assign, nonatomic) NSUInteger currentPage;
  43. @property (assign, nonatomic) BOOL isFresh;
  44. @property (assign, nonatomic) NSInteger totalRecord;
  45. @property (strong, nonatomic) NSMutableArray<NoticeModel * >*interLetterArray;
  46. //界面操作状态参数
  47. @property (assign,nonatomic) OperationStateEnum operationStateEnum;
  48. //界面操作视图
  49. @property (strong,nonatomic) UIView *operationBottomBgView;
  50. @property (weak, nonatomic) IBOutlet UIButton *operationAllSelectButton;
  51. @property (nonatomic, assign) BOOL iSViewEditor;
  52. @property (strong,nonatomic) UIButton *opearateLeftBtn;
  53. @property (strong,nonatomic) UIButton *opearateRightBtn;
  54. @property (assign,nonatomic) BOOL isAllselect;
  55. @property (assign,nonatomic) BOOL addTableH;
  56. @property (assign,nonatomic) BOOL removeTableH;
  57. @property (strong,nonatomic) UIView *deleteView;
  58. @property (nonatomic, strong) UIView *SortView;
  59. @property (nonatomic, strong) UIButton *allSelectBtn;
  60. @property (nonatomic, strong) UILabel *selectCountL;
  61. @end
  62. @implementation TDInterLeterHomeViewController
  63. +(TDInterLeterHomeViewController *)initChatMsgNoticeVC{
  64. TDInterLeterHomeViewController *controller = [StoryboardManager.shared.interLeterHome instantiateViewControllerWithIdentifier:@"TDInterLeterHome"];
  65. return controller;
  66. }
  67. - (void)viewWillAppear:(BOOL)animated{
  68. [super viewWillAppear:animated];
  69. [self headRefresh];
  70. }
  71. - (MyTDGroupView *)SearchView
  72. {
  73. if (!_SearchView) {
  74. _SearchView = [[MyTDGroupView alloc] initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, 36)];
  75. }
  76. return _SearchView;
  77. }
  78. - (UITableView *)tableView
  79. {
  80. if (!_tableView) {
  81. _tableView = [[UITableView alloc] initWithFrame:CGRectZero style:UITableViewStylePlain];
  82. _tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
  83. }
  84. return _tableView;
  85. }
  86. - (void)autoSizeBtn:(NSString *)title
  87. {
  88. [self.titleBtn setLabelTitle:title];
  89. }
  90. - (void)viewDidLoad {
  91. [super viewDidLoad];
  92. self.fd_prefersNavigationBarHidden = YES;
  93. self.fd_interactivePopDisabled = YES;
  94. self.view.backgroundColor = RGB(255, 255, 255);
  95. [self addSortV];
  96. self.tableView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
  97. [self.HeadView addSubview:self.SearchView];
  98. [self.SearchView mas_makeConstraints:^(MASConstraintMaker *make) {
  99. make.top.mas_offset(6);
  100. make.left.right.mas_equalTo(self.HeadView);
  101. make.height.mas_offset(36);
  102. }];
  103. WS(weakSelf);
  104. [self.SearchView.button setAction:^{
  105. TDInterLeterSearchVC *vc = [[TDInterLeterSearchVC alloc] init];
  106. vc.FolderId = weakSelf.interLeterFolderId;
  107. vc.type = weakSelf.pageType;
  108. [weakSelf.navigationController pushViewController:vc animated:YES];
  109. }];
  110. [self.view addSubview:self.tableView];
  111. [self.tableView mas_makeConstraints:^(MASConstraintMaker *make) {
  112. make.left.right.mas_equalTo(self.view);
  113. make.top.mas_equalTo(self.HeadView.mas_bottom);
  114. if (@available(iOS 11.0, *)) {
  115. make.bottom.equalTo(self.view.mas_safeAreaLayoutGuideBottom);
  116. } else {
  117. make.bottom.equalTo(self.view.mas_bottom);
  118. }
  119. }];
  120. self.tableView.delegate = self;
  121. self.tableView.dataSource = self;
  122. self.tableView.backgroundColor = [UIColor clearColor];
  123. self.pageType = PageTypeFromTitleAll;
  124. [self autoSizeBtn:@"全部"];
  125. [self.titleBtn setAction:^{
  126. weakSelf.tDInterLeterTypeVC.view.hidden = !weakSelf.tDInterLeterTypeVC.view.hidden;
  127. if(weakSelf.tDInterLeterTypeVC.view.hidden){
  128. [weakSelf.titleBtn dismiss];
  129. }else{
  130. [weakSelf.titleBtn show];
  131. }
  132. }];
  133. [self.rightAddBtn setAction:^{
  134. NSMutableArray *menuDataSourceArray = [weakSelf getMenuDataSource:weakSelf.taskActionArray];
  135. YCMenuView *view = [YCMenuView menuWithActions:menuDataSourceArray width:106 relyonView:weakSelf.rightAddBtn];
  136. view.menuColor = RGB(255, 255, 255);
  137. view.separatorColor = RGB(234, 234, 234);
  138. view.textColor = RGB(102, 102, 102);
  139. view.textFont = [UIFont systemFontOfSize:16.0];
  140. view.menuCellHeight = 43.5;
  141. view.maxDisplayCount = 10;
  142. view.offset = -6;
  143. [view show];
  144. }];
  145. [self.rightEditBtn setAction:^{
  146. MyTDTopicCreateVC * vc = [MyTDTopicCreateVC initMyTDTopicCreateVC];
  147. vc.type = CollectModel_Notice;
  148. vc.replayType = MailReplayCreate;
  149. vc.FolderId = weakSelf.interLeterFolderId;
  150. [weakSelf.navigationController pushViewController:vc animated:YES];
  151. }];
  152. [self.deleteSelectBtn setAction:^{
  153. [weakSelf changeToOperation:YES];
  154. }];
  155. [self.view addSubview:self.tDInterLeterTypeVC.view];
  156. [self initBottomBgView];
  157. [self initDeleteView];
  158. [self changeToOperation:NO];
  159. self.iSViewEditor = NO;
  160. }
  161. #pragma mark - 批量编辑
  162. -(UIView *)deleteView{
  163. if(!_deleteView){
  164. _deleteView = [[UIView alloc] init];
  165. CGFloat bottomBgViewH = self.tabBarController.tabBar.height;
  166. _deleteView.frame = CGRectMake(0, SCREEN_HEIGHT - bottomBgViewH, SCREEN_WIDTH, bottomBgViewH);
  167. _deleteView.backgroundColor = RGB(255, 255, 255);
  168. _deleteView.hidden = YES;
  169. }
  170. return _deleteView;
  171. }
  172. -(void)initDeleteView
  173. {
  174. UIButton *leftCloseBtn = [UIButton buttonWithType:UIButtonTypeCustom];
  175. [leftCloseBtn setTitle:@"全部删除" forState:UIControlStateNormal];
  176. [leftCloseBtn setTitleColor:RGB(255, 82, 82) forState:UIControlStateNormal];
  177. leftCloseBtn.titleLabel.font = [UIFont systemFontOfSize:15];
  178. [self.deleteView addSubview:leftCloseBtn];
  179. leftCloseBtn.frame = CGRectMake(0, 0, SCREEN_WIDTH/2, self.deleteView.height);
  180. UIButton *rightMoveBtn = [UIButton buttonWithType:UIButtonTypeCustom];
  181. [rightMoveBtn setTitle:@"全部恢复" forState:UIControlStateNormal];
  182. [rightMoveBtn setTitleColor:RGB(57, 121, 211) forState:UIControlStateNormal];
  183. rightMoveBtn.titleLabel.font = [UIFont systemFontOfSize:15];
  184. [self.deleteView addSubview:rightMoveBtn];
  185. rightMoveBtn.frame = CGRectMake(SCREEN_WIDTH/2, 0, SCREEN_WIDTH/2, self.deleteView.height);
  186. UILabel * topLine = [[UILabel alloc] init];
  187. topLine.backgroundColor = RGB(240, 239, 244);
  188. [self.deleteView addSubview:topLine];
  189. topLine.frame = CGRectMake(0, 0, SCREEN_WIDTH, 0.5);
  190. UILabel *line = [[UILabel alloc] init];
  191. line.backgroundColor = RGB(240, 239, 244);
  192. [self.deleteView addSubview:line];
  193. line.frame = CGRectMake(SCREEN_WIDTH/2, 0, .5, self.deleteView.height);
  194. WS(weakSelf);
  195. [leftCloseBtn setAction:^{
  196. UIAlertController *alertVC = [UIAlertController alertControllerWithTitle:nil message:@"确认全部删除" preferredStyle:UIAlertControllerStyleAlert];
  197. UIAlertAction *ok = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
  198. }];
  199. [ok setValue:k9 forKey:@"_titleTextColor"];
  200. UIAlertAction *noOk = [UIAlertAction actionWithTitle:@"确认" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
  201. SHOWLOADING
  202. NSString * url = [NSString stringWithFormat:@"%@%d",Host(API_Find_DeleteRecord_All),5];
  203. [[HttpManager sharedHttpManager] DeleteUrl:url parameters:@{} responseStyle:DATA success:^(id _Nonnull responseObject) {
  204. REMOVESHOW
  205. [weakSelf headRefresh];
  206. } failure:^(NSError * _Nonnull error) {
  207. SHOWERROR([ZYCTool handerResultData:error]);
  208. }];
  209. }];
  210. [alertVC addAction:ok];
  211. [alertVC addAction:noOk];
  212. [weakSelf presentViewController:alertVC animated:YES completion:nil];
  213. }];
  214. [rightMoveBtn setAction:^{
  215. UIAlertController *alertVC = [UIAlertController alertControllerWithTitle:nil message:@"确认全部恢复" preferredStyle:UIAlertControllerStyleAlert];
  216. UIAlertAction *ok = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
  217. }];
  218. [ok setValue:k9 forKey:@"_titleTextColor"];
  219. UIAlertAction *noOk = [UIAlertAction actionWithTitle:@"确认" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
  220. SHOWLOADING
  221. NSString * url = [NSString stringWithFormat:@"%@%d",Host(API_Find_Recover_All),5];
  222. [[HttpManager sharedHttpManager] PUTUrl:url parameters:@{} responseStyle:DATA success:^(id _Nonnull responseObject) {
  223. REMOVESHOW
  224. [weakSelf headRefresh];
  225. } failure:^(NSError * _Nonnull error) {
  226. SHOWERROR([ZYCTool handerResultData:error]);
  227. }];
  228. }];
  229. [alertVC addAction:ok];
  230. [alertVC addAction:noOk];
  231. [weakSelf presentViewController:alertVC animated:YES completion:nil];
  232. }];
  233. [[UtilsTools getWindow] addSubview:self.deleteView];
  234. }
  235. - (void)changeBarBtn:(BOOL)isHidden
  236. {
  237. self.rightAddBtn.hidden = isHidden;
  238. self.rightEditBtn.hidden = isHidden;
  239. self.deleteSelectBtn.hidden = !isHidden;
  240. self.deleteView.hidden = !isHidden;
  241. if(isHidden){
  242. if (!self.removeTableH) {
  243. self.addTableH = YES;
  244. self.removeTableH = YES;
  245. self.view.height -= self.tabBarController.tabBar.height;
  246. self.tableView.height -= self.tabBarController.tabBar.height;
  247. [self.view layoutIfNeeded];
  248. [self.tableView layoutIfNeeded];
  249. }
  250. }else{
  251. if (self.addTableH) {
  252. self.addTableH = NO;
  253. self.removeTableH = NO;
  254. self.tableView.height += self.tabBarController.tabBar.height;
  255. self.view.height += self.tabBarController.tabBar.height;
  256. [self.view layoutIfNeeded];
  257. [self.tableView layoutIfNeeded];
  258. }
  259. }
  260. }
  261. - (void)addRefresh
  262. {
  263. WS(weakSelf);
  264. self.tableView.mj_header = [MJRefreshNormalHeader headerWithRefreshingBlock:^{
  265. [weakSelf headRefresh];
  266. }];
  267. // self.tableView.mj_footer = [MJRefreshBackStateFooter footerWithRefreshingBlock:^{
  268. // [weakSelf footerRefresh];
  269. // }];
  270. }
  271. - (void)removeRefresh
  272. {
  273. [self.tableView.mj_header endRefreshing];
  274. [self.tableView.mj_header removeFromSuperview];
  275. [self.tableView.mj_footer endRefreshing];
  276. [self.tableView.mj_footer removeFromSuperview];
  277. }
  278. - (void)headRefresh{
  279. self.currentPage = 1;
  280. self.totalRecord = 0;
  281. [self.interLetterArray removeAllObjects];
  282. [self getInterListData];
  283. }
  284. - (void)footerRefresh{
  285. self.currentPage += 1;
  286. if (self.totalRecord == self.interLetterArray.count) {
  287. [self.tableView.mj_footer endRefreshing];
  288. return ;
  289. }
  290. [self getInterListData];
  291. }
  292. - (void)getInterListData{
  293. NSLog(@"%@",@"刷新数据");
  294. NSMutableDictionary *dict = [[NSMutableDictionary alloc] init];
  295. if (self.pageType == PageTypeFromTitleDeleted) {
  296. [self changeBarBtn:YES];
  297. }else{
  298. [self changeBarBtn:NO];
  299. }
  300. [dict setObject:@(self.currentPage) forKey:@"Page"];
  301. [dict setObject:@"99999999" forKey:@"PerPage"];
  302. [dict setObject:@(self.pageType) forKey:@"SearchType"];
  303. [dict setObject:@"" forKey:@"Keyword"];
  304. [dict setObject:@(self.interLeterFolderId) forKey:@"NoticeFolderId"];
  305. WS(weakSelf);
  306. [[HttpManager sharedHttpManager] POSTUrl:Host(API_NOTICE_LIST) parameters:dict responseStyle:JOSN success:^(id _Nonnull responseObject) {
  307. NSLog(@"站内信返回数据%@",responseObject);
  308. NoticeListModel *listModel = [[NoticeListModel alloc] initWithDictionary:responseObject error:nil];
  309. [weakSelf.tableView.mj_header endRefreshing];
  310. [weakSelf.tableView.mj_footer endRefreshing];
  311. weakSelf.totalRecord = listModel.Total;
  312. [weakSelf.interLetterArray addObjectsFromArray:listModel.Items];
  313. if (weakSelf.totalRecord == weakSelf.interLetterArray.count) {
  314. [weakSelf.tableView.mj_footer resetNoMoreData];
  315. [weakSelf.tableView.mj_footer endRefreshingWithNoMoreData];
  316. }
  317. [weakSelf.tableView reloadData];
  318. } failure:^(NSError * _Nonnull error) {
  319. SHOWERROR([ZYCTool handerResultData:error]);
  320. [weakSelf.tableView.mj_header endRefreshing];
  321. [weakSelf.tableView.mj_footer endRefreshing];
  322. }];
  323. }
  324. - (TDInterLeterTypeVC *)tDInterLeterTypeVC{
  325. if (_tDInterLeterTypeVC == nil) {
  326. _tDInterLeterTypeVC = [TDInterLeterTypeVC initTDInterLeterTypeVC];
  327. [_tDInterLeterTypeVC.view setFrame:CGRectMake(0, kNavigationHeight, SCREEN_WIDTH, SCREEN_HEIGHT - kNavigationHeight)];
  328. [_tDInterLeterTypeVC.view setHidden:YES];
  329. _tDInterLeterTypeVC.delegate = self;
  330. }
  331. return _tDInterLeterTypeVC;
  332. }
  333. -(void)userSelectType:(NSString *)typeName{
  334. self.tDInterLeterTypeVC.view.hidden = !self.tDInterLeterTypeVC.view.hidden;
  335. if(self.tDInterLeterTypeVC.view.hidden){
  336. [self.titleBtn dismiss];
  337. }else{
  338. [self.titleBtn show];
  339. }
  340. if(typeName.length > 0){
  341. [self autoSizeBtn:typeName];
  342. if([@"全部" isEqualToString:typeName]){
  343. self.pageType = PageTypeFromTitleAll;
  344. }else if([@"通知" isEqualToString:typeName]){
  345. self.pageType = PageTypeFromTitleNotice;
  346. }else if([@"站内信" isEqualToString:typeName]){
  347. self.pageType = PageTypeFromTitleMail;
  348. }else if([@"匿名信" isEqualToString:typeName]){
  349. self.pageType = PageTypeFromTitleNoSign;
  350. }else if([@"我审批的" isEqualToString:typeName]){
  351. self.pageType = PageTypeFromTitleMeShen;
  352. }else if([@"我发出的" isEqualToString:typeName]){
  353. self.pageType = PageTypeFromTitleMeSend;
  354. }else if([@"抄送我的" isEqualToString:typeName]){
  355. self.pageType = PageTypeFromTitleChao;
  356. }else if([@"草稿箱" isEqualToString:typeName]){
  357. self.pageType = PageTypeFromTitleDraftBox;
  358. }else if([@"已删除" isEqualToString:typeName]){
  359. self.pageType = PageTypeFromTitleDeleted;
  360. }
  361. [self headRefresh];
  362. }
  363. }
  364. #pragma Mark 左滑按钮 iOS8以上
  365. - (UISwipeActionsConfiguration *)tableView:(UITableView *)tableView trailingSwipeActionsConfigurationForRowAtIndexPath:(NSIndexPath *)indexPath API_AVAILABLE(ios(11.0)) API_UNAVAILABLE(tvos){// delete action
  366. NoticeModel *model = self.interLetterArray[indexPath.row];
  367. WS(weakSelf);
  368. if (self.operationStateEnum == OperationStateEnum0) {
  369. switch (model.NoticeStatus) {
  370. case 1:{
  371. switch (model.AttributeValue) {
  372. case 2:{
  373. UIContextualAction *action1 = [UIContextualAction contextualActionWithStyle:UIContextualActionStyleDestructive title:@"删除" handler:^(UIContextualAction * _Nonnull action,__kindof UIView * _Nonnull sourceView,void (^ _Nonnull completionHandler)(BOOL)) {
  374. [tableView setEditing:NO animated:YES];
  375. UIAlertController *alertVC = [UIAlertController alertControllerWithTitle:nil message:@"确认删除" preferredStyle:UIAlertControllerStyleAlert];
  376. UIAlertAction *ok = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
  377. [tableView reloadData];
  378. }];
  379. [ok setValue:k9 forKey:@"_titleTextColor"];
  380. UIAlertAction *noOk = [UIAlertAction actionWithTitle:@"确认" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
  381. [weakSelf thoroughDelete:@[model].mutableCopy isDelete:NO];
  382. }];
  383. [alertVC addAction:ok];
  384. [alertVC addAction:noOk];
  385. [weakSelf presentViewController:alertVC animated:YES completion:nil];
  386. }];
  387. action1.backgroundColor = RGB(255, 59, 47);
  388. UIContextualAction *action2 = [UIContextualAction contextualActionWithStyle:UIContextualActionStyleDestructive title:@"重命名" handler:^(UIContextualAction * _Nonnull action,__kindof UIView * _Nonnull sourceView,void (^ _Nonnull completionHandler)(BOOL)) {
  389. [[ShowNewGroupAlert initShowNewGroupAlertWithTitle:@"修改文件夹名称" changeStr:model.FolderName confirm:^(NSString * _Nonnull groupName) {
  390. NSLog(@"%@",groupName);
  391. [weakSelf reNameFind:model withReNameString:groupName];
  392. } cancle:^{
  393. }] show];
  394. }];
  395. action2.backgroundColor = RGB(255, 149, 3);
  396. UIContextualAction *action3 = [UIContextualAction contextualActionWithStyle:UIContextualActionStyleDestructive title:model.IsTop?@"取消置顶" :@"置顶" handler:^(UIContextualAction * _Nonnull action,__kindof UIView * _Nonnull sourceView,void (^ _Nonnull completionHandler)(BOOL)) {
  397. [weakSelf topFind:model];
  398. }];
  399. action3.backgroundColor = RGB(197, 201, 204);
  400. UISwipeActionsConfiguration *actions = [UISwipeActionsConfiguration configurationWithActions:@[action1, action2, action3]];
  401. actions.performsFirstActionWithFullSwipe = NO;
  402. return actions;
  403. }break;
  404. case 3:{
  405. UIContextualAction *action1 = [UIContextualAction contextualActionWithStyle:UIContextualActionStyleDestructive title:model.IsTop?@"取消置顶" :@"置顶" handler:^(UIContextualAction * _Nonnull action,__kindof UIView * _Nonnull sourceView,void (^ _Nonnull completionHandler)(BOOL)) {
  406. [weakSelf topFind:model];
  407. }];
  408. action1.backgroundColor = RGB(197, 201, 204);
  409. UISwipeActionsConfiguration *actions = [UISwipeActionsConfiguration configurationWithActions:@[action1]];
  410. actions.performsFirstActionWithFullSwipe = NO;
  411. return actions;
  412. }break;
  413. default:{
  414. WEAKSELF
  415. UIContextualAction *action1 = [UIContextualAction contextualActionWithStyle:UIContextualActionStyleDestructive title:@"删除" handler:^(UIContextualAction * _Nonnull action,__kindof UIView * _Nonnull sourceView,void (^ _Nonnull completionHandler)(BOOL)) {
  416. UIAlertController *alertVC = [UIAlertController alertControllerWithTitle:nil message:@"确认删除" preferredStyle:UIAlertControllerStyleAlert];
  417. UIAlertAction *ok = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
  418. [tableView reloadData];
  419. }];
  420. [ok setValue:k9 forKey:@"_titleTextColor"];
  421. UIAlertAction *noOk = [UIAlertAction actionWithTitle:@"确认" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
  422. [weakSelf thoroughDelete:@[model].mutableCopy isDelete:NO];
  423. }];
  424. [alertVC addAction:ok];
  425. [alertVC addAction:noOk];
  426. [weakSelf presentViewController:alertVC animated:YES completion:nil];
  427. }];
  428. action1.backgroundColor = RGB(255, 59, 47);
  429. UIContextualAction *action2 = [UIContextualAction contextualActionWithStyle:UIContextualActionStyleDestructive title:@"移动" handler:^(UIContextualAction * _Nonnull action,__kindof UIView * _Nonnull sourceView,void (^ _Nonnull completionHandler)(BOOL)) {
  430. STRONGSELF
  431. [strongSelf launchMoveVC:@[@(model.Id)].mutableCopy];
  432. }];
  433. action2.backgroundColor = UIColorHex(0x589AF1);
  434. UIContextualAction *action3 = [UIContextualAction contextualActionWithStyle:UIContextualActionStyleDestructive title:model.IsTop?@"取消置顶" :@"置顶" handler:^(UIContextualAction * _Nonnull action,__kindof UIView * _Nonnull sourceView,void (^ _Nonnull completionHandler)(BOOL)) {
  435. STRONGSELF
  436. [strongSelf topFind:model];
  437. }];
  438. action3.backgroundColor = RGB(197, 201, 204);
  439. UISwipeActionsConfiguration *actions = [UISwipeActionsConfiguration configurationWithActions:@[action1, action2, action3]];
  440. actions.performsFirstActionWithFullSwipe = NO;
  441. return actions;
  442. }
  443. break;
  444. }
  445. }break;
  446. case 0:
  447. {
  448. UIContextualAction *action1 = [UIContextualAction contextualActionWithStyle:UIContextualActionStyleDestructive title:@"彻底删除" handler:^(UIContextualAction * _Nonnull action,__kindof UIView * _Nonnull sourceView,void (^ _Nonnull completionHandler)(BOOL)) {
  449. UIAlertController *alertVC = [UIAlertController alertControllerWithTitle:nil message:@"确认删除" preferredStyle:UIAlertControllerStyleAlert];
  450. UIAlertAction *ok = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
  451. [tableView reloadData];
  452. }];
  453. [ok setValue:k9 forKey:@"_titleTextColor"];
  454. UIAlertAction *noOk = [UIAlertAction actionWithTitle:@"确认" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
  455. [weakSelf thoroughDelete:@[model].mutableCopy isDelete:YES];
  456. }];
  457. [alertVC addAction:ok];
  458. [alertVC addAction:noOk];
  459. [weakSelf presentViewController:alertVC animated:YES completion:nil];
  460. }];
  461. action1.backgroundColor = RGB(255, 59, 47);
  462. UISwipeActionsConfiguration *actions = [UISwipeActionsConfiguration configurationWithActions:@[action1]];
  463. actions.performsFirstActionWithFullSwipe = NO;
  464. return actions;
  465. }
  466. break;
  467. default:
  468. {
  469. UIContextualAction *action1 = [UIContextualAction contextualActionWithStyle:UIContextualActionStyleDestructive title:@"删除" handler:^(UIContextualAction * _Nonnull action,__kindof UIView * _Nonnull sourceView,void (^ _Nonnull completionHandler)(BOOL)) {
  470. UIAlertController *alertVC = [UIAlertController alertControllerWithTitle:nil message:@"确认删除" preferredStyle:UIAlertControllerStyleAlert];
  471. UIAlertAction *ok = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
  472. [tableView reloadData];
  473. }];
  474. [ok setValue:k9 forKey:@"_titleTextColor"];
  475. UIAlertAction *noOk = [UIAlertAction actionWithTitle:@"确认" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
  476. [weakSelf thoroughDelete:@[model].mutableCopy isDelete:NO];
  477. }];
  478. [alertVC addAction:ok];
  479. [alertVC addAction:noOk];
  480. [weakSelf presentViewController:alertVC animated:YES completion:nil];
  481. }];
  482. action1.backgroundColor = RGB(255, 59, 47);
  483. UIContextualAction *action2 = [UIContextualAction contextualActionWithStyle:UIContextualActionStyleDestructive title:model.IsTop ?@"取消置顶" :@"置顶" handler:^(UIContextualAction * _Nonnull action,__kindof UIView * _Nonnull sourceView,void (^ _Nonnull completionHandler)(BOOL)) {
  484. [weakSelf topFind:model];
  485. }];
  486. action2.backgroundColor = RGB(197, 201, 204);
  487. UISwipeActionsConfiguration *actions = [UISwipeActionsConfiguration configurationWithActions:@[action1,action2]];
  488. actions.performsFirstActionWithFullSwipe = NO;
  489. return actions;
  490. }
  491. break;
  492. }
  493. }
  494. UISwipeActionsConfiguration *actions = [UISwipeActionsConfiguration configurationWithActions:@[]];
  495. actions.performsFirstActionWithFullSwipe = NO;
  496. return actions;
  497. }
  498. - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
  499. return 1;
  500. }
  501. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
  502. return self.interLetterArray.count;
  503. }
  504. - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
  505. // NoticeModel *model = self.interLetterArray[indexPath.row];
  506. // switch (model.AttributeValue) {
  507. // case 1:
  508. // return [ChatMsgNoticeCell configCell2Height];
  509. // case 2:
  510. // return [ChatMsgNoticeCell configCell1Height];
  511. // default:
  512. // return 0;
  513. // }
  514. return UITableViewAutomaticDimension;
  515. }
  516. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
  517. WS(weakSelf);
  518. NoticeModel *model = self.interLetterArray[indexPath.row];
  519. switch (self.operationStateEnum) {
  520. case OperationStateEnum0:{
  521. switch (model.AttributeValue) {
  522. case 1:{
  523. switch (model.NoticeStatus) {
  524. case 1:///正常
  525. {
  526. switch (model.TypeValue){
  527. case PageTypeFromTitleMail:
  528. {
  529. ChatMsgNoticeCell *cell = [ChatMsgNoticeCell configCell2:tableView indexPath:indexPath];
  530. cell.cell2UserImgView.image = [UIImage imageNamed:@"站内信图"];
  531. cell.cell2TitleLabel.text = model.Title;
  532. [self setIntroLabelWithModel:model introLabel:cell.cell2IntroLabel unreadNumberLabel:cell.cell2UnReadNumberLbl];
  533. cell.cell2TimeLabel.text = [NSDate getTimeStringAutoShort2:model.CreatedDate];
  534. cell.IsTopImgV.hidden = !model.IsTop;
  535. cell.cell2RedBgView.hidden = model.IsRead;
  536. return cell;
  537. }
  538. break;
  539. case PageTypeFromTitleNotice:
  540. {
  541. ChatMsgNoticeCell *cell = [ChatMsgNoticeCell configCell2:tableView indexPath:indexPath];
  542. cell.cell2UserImgView.image = [UIImage imageNamed:@"通知图标"];
  543. cell.cell2TitleLabel.text = model.Title;
  544. [self setIntroLabelWithModel:model introLabel:cell.cell2IntroLabel unreadNumberLabel:cell.cell2UnReadNumberLbl];
  545. cell.cell2TimeLabel.text = [NSDate getTimeStringAutoShort2:model.CreatedDate];
  546. cell.cell2RedBgView.hidden = model.IsRead;
  547. cell.IsTopImgV.hidden = !model.IsTop;
  548. return cell;
  549. }
  550. break;
  551. case PageTypeFromTitleMeShen:
  552. {
  553. ChatMsgNoticeCell *cell = [ChatMsgNoticeCell configCell2:tableView indexPath:indexPath];
  554. [self setShenIcon:model withCellImgV:cell.cell2UserImgView];
  555. cell.cell2TitleLabel.text = model.Title;
  556. [self setIntroLabelWithModel:model introLabel:cell.cell2IntroLabel unreadNumberLabel:cell.cell2UnReadNumberLbl];
  557. cell.cell2TimeLabel.text = [NSDate getTimeStringAutoShort2:model.CreatedDate];
  558. cell.cell2RedBgView.hidden = model.IsRead;
  559. cell.IsTopImgV.hidden = !model.IsTop;
  560. return cell;
  561. }
  562. break;
  563. case PageTypeFromTitleMeSend:
  564. {
  565. ChatMsgNoticeCell *cell = [ChatMsgNoticeCell configCell2:tableView indexPath:indexPath];
  566. [self setShenIcon:model withCellImgV:cell.cell2UserImgView];
  567. cell.cell2TitleLabel.text = model.Title;
  568. [self setIntroLabelWithModel:model introLabel:cell.cell2IntroLabel unreadNumberLabel:cell.cell2UnReadNumberLbl];
  569. cell.cell2TimeLabel.text = [NSDate getTimeStringAutoShort2:model.CreatedDate];
  570. cell.cell2RedBgView.hidden = model.IsRead;
  571. cell.IsTopImgV.hidden = !model.IsTop;
  572. return cell;
  573. }
  574. break;
  575. case PageTypeFromTitleChao:
  576. {
  577. ChatMsgNoticeCell *cell = [ChatMsgNoticeCell configCell2:tableView indexPath:indexPath];
  578. [self setShenIcon:model withCellImgV:cell.cell2UserImgView];
  579. cell.cell2TitleLabel.text = model.Title;
  580. [self setIntroLabelWithModel:model introLabel:cell.cell2IntroLabel unreadNumberLabel:cell.cell2UnReadNumberLbl];
  581. cell.cell2TimeLabel.text = [NSDate getTimeStringAutoShort2:model.CreatedDate];
  582. cell.cell2RedBgView.hidden = model.IsRead;
  583. cell.IsTopImgV.hidden = !model.IsTop;
  584. return cell;
  585. }
  586. break;
  587. default:///匿名
  588. {
  589. ChatMsgNoticeCell *cell = [ChatMsgNoticeCell configCell2:tableView indexPath:indexPath];
  590. cell.cell2UserImgView.image = [UIImage imageNamed:@"站内信图"];
  591. cell.cell2TitleLabel.text = model.Title;
  592. [self setIntroLabelWithModel:model introLabel:cell.cell2IntroLabel unreadNumberLabel:cell.cell2UnReadNumberLbl];
  593. cell.cell2TimeLabel.text = [NSDate getTimeStringAutoShort2:model.CreatedDate];
  594. cell.cell2RedBgView.hidden = model.IsRead;
  595. cell.IsTopImgV.hidden = !model.IsTop;
  596. return cell;
  597. }
  598. break;
  599. }
  600. }
  601. break;
  602. case 0:///删除
  603. {
  604. switch (model.TypeValue) {
  605. case PageTypeFromTitleMail:{
  606. ChatMsgNoticeCell *cell = [ChatMsgNoticeCell configCell2:tableView indexPath:indexPath];
  607. cell.cell2UserImgView.image = [UIImage imageNamed:@"站内信图"];
  608. cell.cell2TitleLabel.text = model.Title;
  609. [self setIntroLabelWithModel:model introLabel:cell.cell2IntroLabel unreadNumberLabel:cell.cell2UnReadNumberLbl];
  610. cell.IsTopImgV.hidden = !model.IsTop;
  611. cell.cell2EditBtn.hidden = NO;
  612. cell.cell2RedBgView.hidden = YES;
  613. cell.cell2TimeLabel.hidden = YES;
  614. [cell.cell2EditBtn setTitle:@"恢复" forState:UIControlStateNormal];
  615. [cell.cell2EditBtn setAction:^{
  616. NSLog(@"恢复已删除站内信");
  617. [weakSelf reDoDeleteFind:@[model].mutableCopy];
  618. }];
  619. return cell;
  620. }
  621. break;
  622. case PageTypeFromTitleNotice:
  623. {
  624. ChatMsgNoticeCell *cell = [ChatMsgNoticeCell configCell2:tableView indexPath:indexPath];
  625. cell.cell2UserImgView.image = [UIImage imageNamed:@"通知图标"];
  626. cell.cell2TitleLabel.text = model.Title;
  627. [self setIntroLabelWithModel:model introLabel:cell.cell2IntroLabel unreadNumberLabel:cell.cell2UnReadNumberLbl];
  628. cell.IsTopImgV.hidden = !model.IsTop;
  629. cell.cell2EditBtn.hidden = NO;
  630. cell.cell2RedBgView.hidden = YES;
  631. cell.cell2TimeLabel.hidden = YES;
  632. [cell.cell2EditBtn setTitle:@"恢复" forState:UIControlStateNormal];
  633. [cell.cell2EditBtn setAction:^{
  634. NSLog(@"恢复已删除站内信");
  635. [weakSelf reDoDeleteFind:@[model].mutableCopy];
  636. }];
  637. return cell;
  638. }
  639. break;
  640. case PageTypeFromTitleMeShen:
  641. {
  642. ChatMsgNoticeCell *cell = [ChatMsgNoticeCell configCell2:tableView indexPath:indexPath];
  643. [self setShenIcon:model withCellImgV:cell.cell2UserImgView];
  644. cell.cell2TitleLabel.text = model.Title;
  645. [self setIntroLabelWithModel:model introLabel:cell.cell2IntroLabel unreadNumberLabel:cell.cell2UnReadNumberLbl];
  646. cell.IsTopImgV.hidden = !model.IsTop;
  647. cell.cell2EditBtn.hidden = NO;
  648. cell.cell2RedBgView.hidden = YES;
  649. cell.cell2TimeLabel.hidden = YES;
  650. [cell.cell2EditBtn setTitle:@"恢复" forState:UIControlStateNormal];
  651. [cell.cell2EditBtn setAction:^{
  652. NSLog(@"恢复已删除站内信");
  653. [weakSelf reDoDeleteFind:@[model].mutableCopy];
  654. }];
  655. return cell;
  656. }
  657. break;
  658. case PageTypeFromTitleMeSend:
  659. {
  660. ChatMsgNoticeCell *cell = [ChatMsgNoticeCell configCell2:tableView indexPath:indexPath];
  661. [self setShenIcon:model withCellImgV:cell.cell2UserImgView];
  662. cell.cell2TitleLabel.text = model.Title;
  663. [self setIntroLabelWithModel:model introLabel:cell.cell2IntroLabel unreadNumberLabel:cell.cell2UnReadNumberLbl];
  664. cell.IsTopImgV.hidden = !model.IsTop;
  665. cell.cell2EditBtn.hidden = NO;
  666. cell.cell2RedBgView.hidden = YES;
  667. cell.cell2TimeLabel.hidden = YES;
  668. [cell.cell2EditBtn setTitle:@"恢复" forState:UIControlStateNormal];
  669. [cell.cell2EditBtn setAction:^{
  670. NSLog(@"恢复已删除站内信");
  671. [weakSelf reDoDeleteFind:@[model].mutableCopy];
  672. }];
  673. return cell;
  674. }
  675. break;
  676. case PageTypeFromTitleChao:
  677. {
  678. ChatMsgNoticeCell *cell = [ChatMsgNoticeCell configCell2:tableView indexPath:indexPath];
  679. [self setShenIcon:model withCellImgV:cell.cell2UserImgView];
  680. cell.cell2TitleLabel.text = model.Title;
  681. [self setIntroLabelWithModel:model introLabel:cell.cell2IntroLabel unreadNumberLabel:cell.cell2UnReadNumberLbl];
  682. cell.IsTopImgV.hidden = !model.IsTop;
  683. cell.cell2EditBtn.hidden = NO;
  684. cell.cell2RedBgView.hidden = YES;
  685. cell.cell2TimeLabel.hidden = YES;
  686. [cell.cell2EditBtn setTitle:@"恢复" forState:UIControlStateNormal];
  687. [cell.cell2EditBtn setAction:^{
  688. NSLog(@"恢复已删除站内信");
  689. [weakSelf reDoDeleteFind:@[model].mutableCopy];
  690. }];
  691. return cell;
  692. }
  693. break;
  694. default:///匿名
  695. {
  696. ChatMsgNoticeCell *cell = [ChatMsgNoticeCell configCell2:tableView indexPath:indexPath];
  697. cell.cell2UserImgView.image = [UIImage imageNamed:@"站内信图"];
  698. cell.cell2TitleLabel.text = model.Title;
  699. [self setIntroLabelWithModel:model introLabel:cell.cell2IntroLabel unreadNumberLabel:cell.cell2UnReadNumberLbl];
  700. cell.IsTopImgV.hidden = !model.IsTop;
  701. cell.cell2EditBtn.hidden = NO;
  702. cell.cell2RedBgView.hidden = YES;
  703. cell.cell2TimeLabel.hidden = YES;
  704. [cell.cell2EditBtn setTitle:@"恢复" forState:UIControlStateNormal];
  705. [cell.cell2EditBtn setAction:^{
  706. NSLog(@"恢复已删除站内信");
  707. [weakSelf reDoDeleteFind:@[model].mutableCopy];
  708. }];
  709. return cell;
  710. }
  711. break;
  712. }
  713. }
  714. break;
  715. default:
  716. {
  717. switch (model.TypeValue) {
  718. case PageTypeFromTitleMail:{
  719. ChatMsgNoticeCell *cell = [ChatMsgNoticeCell configCell2:tableView indexPath:indexPath];
  720. cell.cell2UserImgView.image = [UIImage imageNamed:@"站内信图"];
  721. cell.cell2TitleLabel.text = model.Title;
  722. [self setIntroLabelWithModel:model introLabel:cell.cell2IntroLabel unreadNumberLabel:cell.cell2UnReadNumberLbl];
  723. cell.IsTopImgV.hidden = !model.IsTop;
  724. cell.cell2EditBtn.hidden = NO;
  725. [cell.cell2EditBtn setAction:^{
  726. [weakSelf editorButtonHander:indexPath];
  727. }];
  728. cell.cell2RedBgView.hidden = model.IsRead;
  729. cell.cell2TimeLabel.hidden = YES;
  730. return cell;
  731. }
  732. break;
  733. case PageTypeFromTitleNotice:
  734. {
  735. ChatMsgNoticeCell *cell = [ChatMsgNoticeCell configCell2:tableView indexPath:indexPath];
  736. cell.cell2UserImgView.image = [UIImage imageNamed:@"通知图标"];
  737. cell.cell2TitleLabel.text = model.Title;
  738. [self setIntroLabelWithModel:model introLabel:cell.cell2IntroLabel unreadNumberLabel:cell.cell2UnReadNumberLbl];
  739. cell.IsTopImgV.hidden = !model.IsTop;
  740. cell.cell2EditBtn.hidden = NO;
  741. [cell.cell2EditBtn setAction:^{
  742. [weakSelf editorButtonHander:indexPath];
  743. }];
  744. cell.cell2RedBgView.hidden = model.IsRead;
  745. cell.cell2TimeLabel.hidden = YES;
  746. return cell;
  747. }
  748. break;
  749. case PageTypeFromTitleMeShen:
  750. {
  751. ChatMsgNoticeCell *cell = [ChatMsgNoticeCell configCell2:tableView indexPath:indexPath];
  752. [self setShenIcon:model withCellImgV:cell.cell2UserImgView];
  753. cell.cell2TitleLabel.text = model.Title;
  754. [self setIntroLabelWithModel:model introLabel:cell.cell2IntroLabel unreadNumberLabel:cell.cell2UnReadNumberLbl];
  755. cell.IsTopImgV.hidden = !model.IsTop;
  756. cell.cell2EditBtn.hidden = NO;
  757. [cell.cell2EditBtn setAction:^{
  758. [weakSelf editorButtonHander:indexPath];
  759. }];
  760. cell.cell2RedBgView.hidden = model.IsRead;
  761. cell.cell2TimeLabel.hidden = YES;
  762. return cell;
  763. }
  764. break;
  765. case PageTypeFromTitleMeSend:
  766. {
  767. ChatMsgNoticeCell *cell = [ChatMsgNoticeCell configCell2:tableView indexPath:indexPath];
  768. [self setShenIcon:model withCellImgV:cell.cell2UserImgView];
  769. cell.cell2TitleLabel.text = model.Title;
  770. [self setIntroLabelWithModel:model introLabel:cell.cell2IntroLabel unreadNumberLabel:cell.cell2UnReadNumberLbl];
  771. cell.IsTopImgV.hidden = !model.IsTop;
  772. cell.cell2EditBtn.hidden = NO;
  773. [cell.cell2EditBtn setAction:^{
  774. [weakSelf editorButtonHander:indexPath];
  775. }];
  776. cell.cell2RedBgView.hidden = model.IsRead;
  777. cell.cell2TimeLabel.hidden = YES;
  778. return cell;
  779. }
  780. break;
  781. case PageTypeFromTitleChao:
  782. {
  783. ChatMsgNoticeCell *cell = [ChatMsgNoticeCell configCell2:tableView indexPath:indexPath];
  784. [self setShenIcon:model withCellImgV:cell.cell2UserImgView];
  785. cell.cell2TitleLabel.text = model.Title;
  786. [self setIntroLabelWithModel:model introLabel:cell.cell2IntroLabel unreadNumberLabel:cell.cell2UnReadNumberLbl];
  787. cell.IsTopImgV.hidden = !model.IsTop;
  788. cell.cell2EditBtn.hidden = NO;
  789. [cell.cell2EditBtn setAction:^{
  790. [weakSelf editorButtonHander:indexPath];
  791. }];
  792. cell.cell2RedBgView.hidden = model.IsRead;
  793. cell.cell2TimeLabel.hidden = YES;
  794. return cell;
  795. }
  796. break;
  797. default:///匿名
  798. {
  799. ChatMsgNoticeCell *cell = [ChatMsgNoticeCell configCell2:tableView indexPath:indexPath];
  800. cell.cell2UserImgView.image = [UIImage imageNamed:@"站内信图"];
  801. cell.cell2TitleLabel.text = model.Title;
  802. [self setIntroLabelWithModel:model introLabel:cell.cell2IntroLabel unreadNumberLabel:cell.cell2UnReadNumberLbl];
  803. cell.IsTopImgV.hidden = !model.IsTop;
  804. cell.cell2EditBtn.hidden = NO;
  805. [cell.cell2EditBtn setAction:^{
  806. [weakSelf editorButtonHander:indexPath];
  807. }];
  808. cell.cell2RedBgView.hidden = model.IsRead;
  809. cell.cell2TimeLabel.hidden = YES;
  810. return cell;
  811. }
  812. break;
  813. }
  814. }
  815. break;
  816. }
  817. }
  818. break;
  819. case 2:{
  820. ChatMsgNoticeCell *cell = [ChatMsgNoticeCell configCell1:tableView indexPath:indexPath];
  821. cell.cell1TitleLabel.text = model.FolderName;
  822. cell.IsTopImgV.hidden = !model.IsTop;
  823. cell.cell1TimeLabel.text = [NSString stringWithFormat:@"%ld",(long)model.FileCount];
  824. return cell;
  825. }break;
  826. default:{
  827. ChatMsgNoticeCell *cell = [ChatMsgNoticeCell configCell2:tableView indexPath:indexPath];
  828. return cell;
  829. }
  830. break;
  831. }
  832. }break;
  833. default:{
  834. self.isAllselect = [self checkNoticeArray];
  835. [self setingMoveButton];
  836. [self.operationAllSelectButton setTitle:self.isAllselect ? @"取消全选": @"全选" forState:UIControlStateNormal];
  837. switch (model.AttributeValue) {
  838. case 1:{
  839. switch (model.NoticeStatus) {
  840. case 1:///正常
  841. {
  842. switch (model.TypeValue){
  843. case PageTypeFromTitleMail:
  844. {
  845. ChatMsgNoticeCell *cell = [ChatMsgNoticeCell configCell20:tableView indexPath:indexPath];
  846. cell.cell2UserImgView.image = [UIImage imageNamed:@"站内信图"];
  847. cell.cell2TitleLabel.text = model.Title;
  848. [self setIntroLabelWithModel:model introLabel:cell.cell2IntroLabel unreadNumberLabel:cell.cell2UnReadNumberLbl];
  849. cell.cell2TimeLabel.text = [NSDate getTimeStringAutoShort2:model.CreatedDate];
  850. cell.IsTopImgV.hidden = !model.IsTop;
  851. cell.cell2TimeLabel.hidden = YES;
  852. cell.cell2RedBgView.hidden = YES;
  853. cell.cell1SelectButton.selected = model.IsSelect;
  854. [cell.cell1SelectButton setAction:^{
  855. model.IsSelect = !model.IsSelect;
  856. [weakSelf sumCount];
  857. [tableView reloadRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationNone];
  858. }];
  859. cell.isShow = model.IsTop;
  860. return cell;
  861. }
  862. break;
  863. case PageTypeFromTitleNotice:
  864. {
  865. ChatMsgNoticeCell *cell = [ChatMsgNoticeCell configCell20:tableView indexPath:indexPath];
  866. cell.cell2UserImgView.image = [UIImage imageNamed:@"通知图标"];
  867. cell.cell2TitleLabel.text = model.Title;
  868. [self setIntroLabelWithModel:model introLabel:cell.cell2IntroLabel unreadNumberLabel:cell.cell2UnReadNumberLbl];
  869. cell.cell2TimeLabel.text = [NSDate getTimeStringAutoShort2:model.CreatedDate];
  870. cell.cell2RedBgView.hidden = YES;
  871. cell.IsTopImgV.hidden = !model.IsTop;
  872. cell.cell2TimeLabel.hidden = YES;
  873. cell.cell1SelectButton.selected = model.IsSelect;
  874. [cell.cell1SelectButton setAction:^{
  875. model.IsSelect = !model.IsSelect;
  876. [weakSelf sumCount];
  877. [tableView reloadRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationNone];
  878. }];
  879. cell.isShow = model.IsTop;
  880. return cell;
  881. }
  882. break;
  883. case PageTypeFromTitleMeShen:
  884. {
  885. ChatMsgNoticeCell *cell = [ChatMsgNoticeCell configCell20:tableView indexPath:indexPath];
  886. [self setShenIcon:model withCellImgV:cell.cell2UserImgView];
  887. cell.cell2TitleLabel.text = model.Title;
  888. [self setIntroLabelWithModel:model introLabel:cell.cell2IntroLabel unreadNumberLabel:cell.cell2UnReadNumberLbl];
  889. cell.cell2TimeLabel.text = [NSDate getTimeStringAutoShort2:model.CreatedDate];
  890. cell.IsTopImgV.hidden = !model.IsTop;
  891. cell.cell2TimeLabel.hidden = YES;
  892. cell.cell2RedBgView.hidden = YES;
  893. cell.cell1SelectButton.selected = model.IsSelect;
  894. [cell.cell1SelectButton setAction:^{
  895. model.IsSelect = !model.IsSelect;
  896. [weakSelf sumCount];
  897. [tableView reloadRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationNone];
  898. }];
  899. cell.isShow = model.IsTop;
  900. return cell;
  901. }
  902. break;
  903. case PageTypeFromTitleMeSend:
  904. {
  905. ChatMsgNoticeCell *cell = [ChatMsgNoticeCell configCell20:tableView indexPath:indexPath];
  906. [self setShenIcon:model withCellImgV:cell.cell2UserImgView];
  907. cell.cell2TitleLabel.text = model.Title;
  908. [self setIntroLabelWithModel:model introLabel:cell.cell2IntroLabel unreadNumberLabel:cell.cell2UnReadNumberLbl];
  909. cell.cell2TimeLabel.text = [NSDate getTimeStringAutoShort2:model.CreatedDate];
  910. cell.IsTopImgV.hidden = !model.IsTop;
  911. cell.cell2TimeLabel.hidden = YES;
  912. cell.cell2RedBgView.hidden = YES;
  913. cell.cell1SelectButton.selected = model.IsSelect;
  914. [cell.cell1SelectButton setAction:^{
  915. model.IsSelect = !model.IsSelect;
  916. [weakSelf sumCount];
  917. [tableView reloadRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationNone];
  918. }];
  919. cell.isShow = model.IsTop;
  920. return cell;
  921. }
  922. break;
  923. case PageTypeFromTitleChao:
  924. {
  925. ChatMsgNoticeCell *cell = [ChatMsgNoticeCell configCell20:tableView indexPath:indexPath];
  926. [self setShenIcon:model withCellImgV:cell.cell2UserImgView];
  927. cell.cell2TitleLabel.text = model.Title;
  928. [self setIntroLabelWithModel:model introLabel:cell.cell2IntroLabel unreadNumberLabel:cell.cell2UnReadNumberLbl];
  929. cell.cell2TimeLabel.text = [NSDate getTimeStringAutoShort2:model.CreatedDate];
  930. cell.IsTopImgV.hidden = !model.IsTop;
  931. cell.cell2TimeLabel.hidden = YES;
  932. cell.cell2RedBgView.hidden = YES;
  933. cell.cell1SelectButton.selected = model.IsSelect;
  934. [cell.cell1SelectButton setAction:^{
  935. model.IsSelect = !model.IsSelect;
  936. [weakSelf sumCount];
  937. [tableView reloadRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationNone];
  938. }];
  939. cell.isShow = model.IsTop;
  940. return cell;
  941. }
  942. break;
  943. default:///匿名
  944. {
  945. ChatMsgNoticeCell *cell = [ChatMsgNoticeCell configCell20:tableView indexPath:indexPath];
  946. cell.cell2UserImgView.image = [UIImage imageNamed:@"站内信图"];
  947. cell.cell2TitleLabel.text = model.Title;
  948. [self setIntroLabelWithModel:model introLabel:cell.cell2IntroLabel unreadNumberLabel:cell.cell2UnReadNumberLbl];
  949. cell.cell2TimeLabel.text = [NSDate getTimeStringAutoShort2:model.CreatedDate];
  950. cell.IsTopImgV.hidden = !model.IsTop;
  951. cell.cell2TimeLabel.hidden = YES;
  952. cell.cell2RedBgView.hidden = YES;
  953. cell.cell1SelectButton.selected = model.IsSelect;
  954. [cell.cell1SelectButton setAction:^{
  955. model.IsSelect = !model.IsSelect;
  956. [weakSelf sumCount];
  957. [tableView reloadRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationNone];
  958. }];
  959. cell.isShow = model.IsTop;
  960. return cell;
  961. }
  962. break;
  963. }
  964. }
  965. break;
  966. case 0:///删除
  967. {
  968. switch (model.TypeValue) {
  969. case PageTypeFromTitleMail:{
  970. ChatMsgNoticeCell *cell = [ChatMsgNoticeCell configCell20:tableView indexPath:indexPath];
  971. cell.cell2UserImgView.image = [UIImage imageNamed:@"站内信图"];
  972. cell.cell2TitleLabel.text = model.Title;
  973. [self setIntroLabelWithModel:model introLabel:cell.cell2IntroLabel unreadNumberLabel:cell.cell2UnReadNumberLbl];
  974. cell.IsTopImgV.hidden = !model.IsTop;
  975. cell.cell2EditBtn.hidden = NO;
  976. cell.cell2RedBgView.hidden = YES;
  977. cell.cell2TimeLabel.hidden = YES;
  978. [cell.cell2EditBtn setTitle:@"恢复" forState:UIControlStateNormal];
  979. [cell.cell2EditBtn setAction:^{
  980. NSLog(@"恢复已删除站内信");
  981. [weakSelf reDoDeleteFind:@[model].mutableCopy];
  982. }];
  983. cell.isShow = model.IsTop;
  984. cell.cell1SelectButton.selected = model.IsSelect;
  985. [cell.cell1SelectButton setAction:^{
  986. model.IsSelect = !model.IsSelect;
  987. dispatch_async(dispatch_get_main_queue(), ^{
  988. [tableView reloadRowAtIndexPath:indexPath withRowAnimation:UITableViewRowAnimationAutomatic];
  989. });
  990. }];
  991. return cell;
  992. }
  993. break;
  994. case PageTypeFromTitleNotice:
  995. {
  996. ChatMsgNoticeCell *cell = [ChatMsgNoticeCell configCell20:tableView indexPath:indexPath];
  997. cell.cell2UserImgView.image = [UIImage imageNamed:@"通知图标"];
  998. cell.cell2TitleLabel.text = model.Title;
  999. [self setIntroLabelWithModel:model introLabel:cell.cell2IntroLabel unreadNumberLabel:cell.cell2UnReadNumberLbl];
  1000. cell.IsTopImgV.hidden = !model.IsTop;
  1001. cell.cell2EditBtn.hidden = NO;
  1002. cell.cell2RedBgView.hidden = YES;
  1003. cell.cell2TimeLabel.hidden = YES;
  1004. [cell.cell2EditBtn setTitle:@"恢复" forState:UIControlStateNormal];
  1005. [cell.cell2EditBtn setAction:^{
  1006. NSLog(@"恢复已删除站内信");
  1007. [weakSelf reDoDeleteFind:@[model].mutableCopy];
  1008. }];
  1009. cell.isShow = model.IsTop;
  1010. cell.cell1SelectButton.selected = model.IsSelect;
  1011. [cell.cell1SelectButton setAction:^{
  1012. model.IsSelect = !model.IsSelect;
  1013. dispatch_async(dispatch_get_main_queue(), ^{
  1014. [tableView reloadRowAtIndexPath:indexPath withRowAnimation:UITableViewRowAnimationAutomatic];
  1015. });
  1016. }];
  1017. return cell;
  1018. }
  1019. break;
  1020. case PageTypeFromTitleMeShen:
  1021. {
  1022. ChatMsgNoticeCell *cell = [ChatMsgNoticeCell configCell20:tableView indexPath:indexPath];
  1023. [self setShenIcon:model withCellImgV:cell.cell2UserImgView];
  1024. cell.cell2TitleLabel.text = model.Title;
  1025. [self setIntroLabelWithModel:model introLabel:cell.cell2IntroLabel unreadNumberLabel:cell.cell2UnReadNumberLbl];
  1026. cell.IsTopImgV.hidden = !model.IsTop;
  1027. cell.cell2EditBtn.hidden = NO;
  1028. cell.cell2RedBgView.hidden = YES;
  1029. cell.cell2TimeLabel.hidden = YES;
  1030. [cell.cell2EditBtn setTitle:@"恢复" forState:UIControlStateNormal];
  1031. [cell.cell2EditBtn setAction:^{
  1032. NSLog(@"恢复已删除站内信");
  1033. [weakSelf reDoDeleteFind:@[model].mutableCopy];
  1034. }];
  1035. cell.isShow = model.IsTop;
  1036. cell.cell1SelectButton.selected = model.IsSelect;
  1037. [cell.cell1SelectButton setAction:^{
  1038. model.IsSelect = !model.IsSelect;
  1039. dispatch_async(dispatch_get_main_queue(), ^{
  1040. [tableView reloadRowAtIndexPath:indexPath withRowAnimation:UITableViewRowAnimationAutomatic];
  1041. });
  1042. }];
  1043. return cell;
  1044. }
  1045. break;
  1046. case PageTypeFromTitleMeSend:
  1047. {
  1048. ChatMsgNoticeCell *cell = [ChatMsgNoticeCell configCell20:tableView indexPath:indexPath];
  1049. [self setShenIcon:model withCellImgV:cell.cell2UserImgView];
  1050. cell.cell2TitleLabel.text = model.Title;
  1051. [self setIntroLabelWithModel:model introLabel:cell.cell2IntroLabel unreadNumberLabel:cell.cell2UnReadNumberLbl];
  1052. cell.IsTopImgV.hidden = !model.IsTop;
  1053. cell.cell2EditBtn.hidden = NO;
  1054. cell.cell2RedBgView.hidden = YES;
  1055. cell.cell2TimeLabel.hidden = YES;
  1056. [cell.cell2EditBtn setTitle:@"恢复" forState:UIControlStateNormal];
  1057. [cell.cell2EditBtn setAction:^{
  1058. NSLog(@"恢复已删除站内信");
  1059. [weakSelf reDoDeleteFind:@[model].mutableCopy];
  1060. }];
  1061. cell.isShow = model.IsTop;
  1062. cell.cell1SelectButton.selected = model.IsSelect;
  1063. [cell.cell1SelectButton setAction:^{
  1064. model.IsSelect = !model.IsSelect;
  1065. dispatch_async(dispatch_get_main_queue(), ^{
  1066. [tableView reloadRowAtIndexPath:indexPath withRowAnimation:UITableViewRowAnimationAutomatic];
  1067. });
  1068. }];
  1069. return cell;
  1070. }
  1071. break;
  1072. case PageTypeFromTitleChao:
  1073. {
  1074. ChatMsgNoticeCell *cell = [ChatMsgNoticeCell configCell20:tableView indexPath:indexPath];
  1075. [self setShenIcon:model withCellImgV:cell.cell2UserImgView];
  1076. cell.cell2TitleLabel.text = model.Title;
  1077. [self setIntroLabelWithModel:model introLabel:cell.cell2IntroLabel unreadNumberLabel:cell.cell2UnReadNumberLbl];
  1078. cell.IsTopImgV.hidden = !model.IsTop;
  1079. cell.cell2EditBtn.hidden = NO;
  1080. cell.cell2RedBgView.hidden = YES;
  1081. cell.cell2TimeLabel.hidden = YES;
  1082. [cell.cell2EditBtn setTitle:@"恢复" forState:UIControlStateNormal];
  1083. [cell.cell2EditBtn setAction:^{
  1084. NSLog(@"恢复已删除站内信");
  1085. [weakSelf reDoDeleteFind:@[model].mutableCopy];
  1086. }];
  1087. cell.isShow = model.IsTop;
  1088. cell.cell1SelectButton.selected = model.IsSelect;
  1089. [cell.cell1SelectButton setAction:^{
  1090. model.IsSelect = !model.IsSelect;
  1091. dispatch_async(dispatch_get_main_queue(), ^{
  1092. [tableView reloadRowAtIndexPath:indexPath withRowAnimation:UITableViewRowAnimationAutomatic];
  1093. });
  1094. }];
  1095. return cell;
  1096. }
  1097. break;
  1098. default:///匿名
  1099. {
  1100. ChatMsgNoticeCell *cell = [ChatMsgNoticeCell configCell20:tableView indexPath:indexPath];
  1101. cell.cell2UserImgView.image = [UIImage imageNamed:@"站内信图"];
  1102. cell.cell2TitleLabel.text = model.Title;
  1103. [self setIntroLabelWithModel:model introLabel:cell.cell2IntroLabel unreadNumberLabel:cell.cell2UnReadNumberLbl];
  1104. cell.IsTopImgV.hidden = !model.IsTop;
  1105. cell.cell2EditBtn.hidden = NO;
  1106. cell.cell2RedBgView.hidden = YES;
  1107. cell.cell2TimeLabel.hidden = YES;
  1108. [cell.cell2EditBtn setTitle:@"恢复" forState:UIControlStateNormal];
  1109. [cell.cell2EditBtn setAction:^{
  1110. NSLog(@"恢复已删除站内信");
  1111. [weakSelf reDoDeleteFind:@[model].mutableCopy];
  1112. }];
  1113. cell.isShow = model.IsTop;
  1114. cell.cell1SelectButton.selected = model.IsSelect;
  1115. [cell.cell1SelectButton setAction:^{
  1116. model.IsSelect = !model.IsSelect;
  1117. dispatch_async(dispatch_get_main_queue(), ^{
  1118. [tableView reloadRowAtIndexPath:indexPath withRowAnimation:UITableViewRowAnimationAutomatic];
  1119. });
  1120. }];
  1121. return cell;
  1122. }
  1123. break;
  1124. }
  1125. }
  1126. break;
  1127. default:
  1128. {
  1129. switch (model.TypeValue) {
  1130. case PageTypeFromTitleMail:{
  1131. ChatMsgNoticeCell *cell = [ChatMsgNoticeCell configCell20:tableView indexPath:indexPath];
  1132. cell.cell2UserImgView.image = [UIImage imageNamed:@"站内信图"];
  1133. cell.cell2TitleLabel.text = model.Title;
  1134. [self setIntroLabelWithModel:model introLabel:cell.cell2IntroLabel unreadNumberLabel:cell.cell2UnReadNumberLbl];
  1135. cell.cell2TimeLabel.hidden = YES;
  1136. cell.cell1TimeLabel.hidden = YES;
  1137. cell.IsTopImgV.hidden = !model.IsTop;
  1138. cell.enterBtn.hidden = YES;
  1139. cell.cell1SelectButton.selected = model.IsSelect;
  1140. [cell.cell1SelectButton setAction:^{
  1141. model.IsSelect = !model.IsSelect;
  1142. [weakSelf sumCount];
  1143. [tableView reloadRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationNone];
  1144. }];
  1145. cell.isShow = model.IsTop;
  1146. return cell;
  1147. }
  1148. break;
  1149. case PageTypeFromTitleNotice:
  1150. {
  1151. ChatMsgNoticeCell *cell = [ChatMsgNoticeCell configCell20:tableView indexPath:indexPath];
  1152. cell.cell2UserImgView.image = [UIImage imageNamed:@"通知图标"];
  1153. cell.cell2TitleLabel.text = model.Title;
  1154. [self setIntroLabelWithModel:model introLabel:cell.cell2IntroLabel unreadNumberLabel:cell.cell2UnReadNumberLbl];
  1155. cell.cell2TimeLabel.hidden = YES;
  1156. cell.cell1TimeLabel.hidden = YES;
  1157. cell.IsTopImgV.hidden = !model.IsTop;
  1158. cell.enterBtn.hidden = YES;
  1159. cell.cell1SelectButton.selected = model.IsSelect;
  1160. [cell.cell1SelectButton setAction:^{
  1161. model.IsSelect = !model.IsSelect;
  1162. [weakSelf sumCount];
  1163. [tableView reloadRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationNone];
  1164. }];
  1165. cell.isShow = model.IsTop;
  1166. return cell;
  1167. }
  1168. break;
  1169. case PageTypeFromTitleMeShen:
  1170. {
  1171. ChatMsgNoticeCell *cell = [ChatMsgNoticeCell configCell20:tableView indexPath:indexPath];
  1172. [self setShenIcon:model withCellImgV:cell.cell2UserImgView];
  1173. cell.cell2TitleLabel.text = model.Title;
  1174. [self setIntroLabelWithModel:model introLabel:cell.cell2IntroLabel unreadNumberLabel:cell.cell2UnReadNumberLbl];
  1175. cell.cell2TimeLabel.hidden = YES;
  1176. cell.cell1TimeLabel.hidden = YES;
  1177. cell.IsTopImgV.hidden = !model.IsTop;
  1178. cell.enterBtn.hidden = YES;
  1179. cell.cell1SelectButton.selected = model.IsSelect;
  1180. [cell.cell1SelectButton setAction:^{
  1181. model.IsSelect = !model.IsSelect;
  1182. [weakSelf sumCount];
  1183. [tableView reloadRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationNone];
  1184. }];
  1185. cell.isShow = model.IsTop;
  1186. return cell;
  1187. }
  1188. break;
  1189. case PageTypeFromTitleMeSend:
  1190. {
  1191. ChatMsgNoticeCell *cell = [ChatMsgNoticeCell configCell20:tableView indexPath:indexPath];
  1192. [self setShenIcon:model withCellImgV:cell.cell2UserImgView];
  1193. cell.cell2TitleLabel.text = model.Title;
  1194. [self setIntroLabelWithModel:model introLabel:cell.cell2IntroLabel unreadNumberLabel:cell.cell2UnReadNumberLbl];
  1195. cell.cell2TimeLabel.hidden = YES;
  1196. cell.cell1TimeLabel.hidden = YES;
  1197. cell.IsTopImgV.hidden = !model.IsTop;
  1198. cell.enterBtn.hidden = YES;
  1199. cell.cell1SelectButton.selected = model.IsSelect;
  1200. [cell.cell1SelectButton setAction:^{
  1201. model.IsSelect = !model.IsSelect;
  1202. [weakSelf sumCount];
  1203. [tableView reloadRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationNone];
  1204. }];
  1205. cell.isShow = model.IsTop;
  1206. return cell;
  1207. }
  1208. break;
  1209. case PageTypeFromTitleChao:
  1210. {
  1211. ChatMsgNoticeCell *cell = [ChatMsgNoticeCell configCell20:tableView indexPath:indexPath];
  1212. [self setShenIcon:model withCellImgV:cell.cell2UserImgView];
  1213. cell.cell2TitleLabel.text = model.Title;
  1214. [self setIntroLabelWithModel:model introLabel:cell.cell2IntroLabel unreadNumberLabel:cell.cell2UnReadNumberLbl];
  1215. cell.cell2TimeLabel.hidden = YES;
  1216. cell.cell1TimeLabel.hidden = YES;
  1217. cell.IsTopImgV.hidden = !model.IsTop;
  1218. cell.enterBtn.hidden = YES;
  1219. cell.cell1SelectButton.selected = model.IsSelect;
  1220. [cell.cell1SelectButton setAction:^{
  1221. model.IsSelect = !model.IsSelect;
  1222. [weakSelf sumCount];
  1223. [tableView reloadRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationNone];
  1224. }];
  1225. cell.isShow = model.IsTop;
  1226. return cell;
  1227. }
  1228. break;
  1229. default:///匿名
  1230. {
  1231. ChatMsgNoticeCell *cell = [ChatMsgNoticeCell configCell20:tableView indexPath:indexPath];
  1232. cell.cell2UserImgView.image = [UIImage imageNamed:@"站内信图"];
  1233. cell.cell2TitleLabel.text = model.Title;
  1234. [self setIntroLabelWithModel:model introLabel:cell.cell2IntroLabel unreadNumberLabel:cell.cell2UnReadNumberLbl];
  1235. cell.cell2TimeLabel.hidden = YES;
  1236. cell.cell1TimeLabel.hidden = YES;
  1237. cell.IsTopImgV.hidden = !model.IsTop;
  1238. cell.enterBtn.hidden = YES;
  1239. cell.cell1SelectButton.selected = model.IsSelect;
  1240. [cell.cell1SelectButton setAction:^{
  1241. model.IsSelect = !model.IsSelect;
  1242. [weakSelf sumCount];
  1243. [tableView reloadRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationNone];
  1244. }];
  1245. cell.isShow = model.IsTop;
  1246. return cell;
  1247. }
  1248. break;
  1249. }
  1250. }
  1251. break;
  1252. }
  1253. }
  1254. break;
  1255. default:{
  1256. ChatMsgNoticeCell *cell = [ChatMsgNoticeCell configCell10:tableView indexPath:indexPath];
  1257. cell.cell1TitleLabel.text = model.FolderName;
  1258. cell.cell1TimeLabel.hidden = YES;
  1259. cell.enterBtn.hidden = YES;
  1260. cell.IsTopImgV.hidden = !model.IsTop;
  1261. cell.cell2TimeLabel.hidden = YES;
  1262. [self setIntroLabelWithModel:model introLabel:cell.cell2IntroLabel unreadNumberLabel:cell.cell2UnReadNumberLbl];
  1263. cell.cell1SelectButton.selected = model.IsSelect;
  1264. [cell.cell1SelectButton setAction:^{
  1265. model.IsSelect = !model.IsSelect;
  1266. [weakSelf sumCount];
  1267. [tableView reloadRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationNone];
  1268. }];
  1269. return cell;
  1270. }break;
  1271. }
  1272. }break;
  1273. }
  1274. }
  1275. - (BOOL)checkNoticeArray
  1276. {
  1277. BOOL isFloder = NO;
  1278. for (NoticeModel * model in self.interLetterArray) {
  1279. if (model.AttributeValue == 2) {
  1280. if (model.IsSelect) {
  1281. SHOWERROR(@"文件夹不能移动");
  1282. isFloder = YES;
  1283. }
  1284. }
  1285. }
  1286. [self.rightMoveBtn setEnabled:!isFloder];
  1287. if(self.interLetterArray.count == 0)
  1288. {
  1289. return NO;
  1290. }else{
  1291. for (NoticeModel * model in self.interLetterArray) {
  1292. if (!model.IsSelect) {
  1293. return NO;
  1294. }
  1295. }
  1296. return YES;
  1297. }
  1298. }
  1299. - (void)setIntroLabelWithModel:(NoticeModel *)model introLabel:(UILabel *)introLabel unreadNumberLabel:(UILabel *)unreadNumberLabel {
  1300. //判断是否匿名
  1301. if (model.IsAdmin) {
  1302. if (model.TypeValue == 18) {
  1303. introLabel.text = @"匿名";
  1304. unreadNumberLabel.text = nil;
  1305. }else{
  1306. if (model.EnjoyUser.length > 10) {
  1307. NSRange range1 = NSMakeRange(10, (model.EnjoyUser.length - 10));
  1308. NSString *resultStr1 = [model.EnjoyUser stringByReplacingCharactersInRange:range1 withString:@"..."];
  1309. introLabel.text = [NSString stringWithFormat:@"收件人:%@",resultStr1];
  1310. }else{
  1311. introLabel.text = [NSString stringWithFormat:@"收件人:%@",model.EnjoyUser];
  1312. }
  1313. unreadNumberLabel.text = [NSString stringWithFormat:@"已读:%ld/%ld",(long)model.ReadCount,(long)model.AllCount];
  1314. }
  1315. }else {
  1316. if (model.TypeValue == 18) {
  1317. introLabel.text = @"匿名";
  1318. unreadNumberLabel.text = nil;
  1319. }else{
  1320. introLabel.text = [NSString stringWithFormat:@"发件人:%@",model.UserName];
  1321. unreadNumberLabel.text = [NSString stringWithFormat:@"已读:%ld/%ld",(long)model.ReadCount,(long)model.AllCount];
  1322. }
  1323. }
  1324. }
  1325. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
  1326. [tableView deselectRowAtIndexPath:indexPath animated:YES];
  1327. NoticeModel *model = self.interLetterArray[indexPath.row];
  1328. switch (self.operationStateEnum) {
  1329. case OperationStateEnum0:
  1330. {
  1331. switch (model.AttributeValue) {
  1332. case 2:{
  1333. TDInterLeterHomeViewController *vc = [TDInterLeterHomeViewController initChatMsgNoticeVC];
  1334. vc.interLeterFolderId = model.Id;
  1335. vc.interLeterFoldName = model.FolderName;
  1336. [self.navigationController pushViewController:vc animated:YES];
  1337. }break;
  1338. default:{
  1339. if (self.pageType == PageTypeFromTitleDraftBox) {
  1340. [self editorButtonHander:indexPath];
  1341. }else{
  1342. switch (model.TypeValue) {
  1343. case PageTypeFromTitleNoSign:
  1344. {
  1345. MyTDTopicDetailVC *vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  1346. vc.Id = model.MiddleId;
  1347. vc.type = CollectModel_NoSignMail;
  1348. [self.navigationController pushViewController:vc animated:YES];
  1349. }break;
  1350. case PageTypeFromTitleMail:
  1351. {
  1352. MyTDTopicDetailVC *vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  1353. vc.Id = model.MiddleId;
  1354. vc.type = CollectModel_InterMail;
  1355. [self.navigationController pushViewController:vc animated:YES];
  1356. }break;
  1357. case PageTypeFromTitleNotice:
  1358. {
  1359. MyTDTopicDetailVC *vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  1360. vc.Id = model.MiddleId;
  1361. vc.type = CollectModel_Notice;
  1362. [self.navigationController pushViewController:vc animated:YES];
  1363. }break;
  1364. case PageTypeFromTitleMeShen:
  1365. {
  1366. [self pushWorkVCwithModel:model];
  1367. }break;
  1368. case PageTypeFromTitleMeSend:
  1369. {
  1370. [self pushWorkVCwithModel:model];
  1371. }break;
  1372. case PageTypeFromTitleChao:
  1373. {
  1374. [self pushWorkVCwithModel:model];
  1375. }break;
  1376. default:
  1377. {
  1378. // MyTDTopicDetailVC *vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  1379. // vc.detailType = (model.MissiveType == 1)? InterLeterDetialType_Sign : InterLeterDetialType_NoSign;
  1380. // vc.Id = model.MiddleId;
  1381. // vc.type = CollectModel_InterMail;
  1382. // [self.navigationController pushViewController:vc animated:YES];
  1383. }break;
  1384. }
  1385. }
  1386. }break;
  1387. }
  1388. }break;
  1389. default:{
  1390. model.IsSelect = !model.IsSelect;
  1391. [self sumCount];
  1392. [tableView reloadRowAtIndexPath:indexPath withRowAnimation:UITableViewRowAnimationAutomatic];
  1393. }break;
  1394. }
  1395. }
  1396. - (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath {
  1397. return tableView.editing;
  1398. }
  1399. - (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)sourceIndexPath toIndexPath:(NSIndexPath *)destinationIndexPath {
  1400. NoticeModel *model = self.interLetterArray[sourceIndexPath.row];
  1401. NoticeModel *toModel = self.interLetterArray[destinationIndexPath.row];
  1402. WS(weakSelf);
  1403. if (model.AttributeValue == toModel.AttributeValue && model.IsTop && toModel.IsTop) {
  1404. [[HttpManager sharedHttpManager] POSTUrl:Host(API_Find_Sort) parameters:@{@"MiddleIdFirst":@(model.Id),@"MiddleIdSecond":@(toModel.Id)} responseStyle:DATA success:^(id _Nonnull responseObject) {
  1405. [weakSelf.interLetterArray removeObject:model];
  1406. [weakSelf.interLetterArray insertObject:model atIndex:destinationIndexPath.row];
  1407. dispatch_async(dispatch_get_main_queue(), ^{
  1408. [weakSelf.tableView reloadData];
  1409. });
  1410. } failure:^(NSError * _Nonnull error) {
  1411. }];
  1412. }else{
  1413. [weakSelf.interLetterArray removeObject:model];
  1414. [weakSelf.interLetterArray insertObject:model atIndex:sourceIndexPath.row];
  1415. dispatch_async(dispatch_get_main_queue(), ^{
  1416. [weakSelf.tableView reloadData];
  1417. });
  1418. }
  1419. }
  1420. - (void)sumCount
  1421. {
  1422. NSInteger count = 0;
  1423. for (NoticeModel * smodel in self.interLetterArray) {
  1424. if (smodel.IsSelect) {
  1425. count ++;
  1426. }
  1427. }
  1428. [self.allSelectBtn setImage:count == self.interLetterArray.count ? IMG(@"sendinfo_yes") : IMG(@"sendinfo_no") forState:UIControlStateNormal];
  1429. self.selectCountL.text = [NSString stringWithFormat:@"%ld",(long)count];
  1430. }
  1431. #pragma mark - 设置 移动按钮 样式
  1432. - (void)setingMoveButton{
  1433. BOOL flag = NO;
  1434. BOOL use = NO;
  1435. for (NoticeModel *model in self.interLetterArray) {
  1436. if (model.IsSelect) {
  1437. if (model.AttributeValue == 2) {
  1438. flag = YES;
  1439. }else{
  1440. use = YES;
  1441. }
  1442. }
  1443. }
  1444. if (flag) {
  1445. [self.rightMoveBtn setTitleColor:UIColorHex(0xBBBBBB) forState:UIControlStateNormal];
  1446. self.rightMoveBtn.enabled = NO;
  1447. }else{
  1448. if (!use) {
  1449. [self.rightMoveBtn setTitleColor:UIColorHex(0xBBBBBB) forState:UIControlStateNormal];
  1450. self.rightMoveBtn.enabled = NO;
  1451. }else{
  1452. [self.rightMoveBtn setTitleColor:RGB(57, 121, 211) forState:UIControlStateNormal];
  1453. self.rightMoveBtn.enabled = YES;
  1454. }
  1455. }
  1456. }
  1457. -(NSMutableArray *)getMenuDataSource:(NSMutableArray *)titleArray{
  1458. NSMutableArray *menuDataSourceArray = [[NSMutableArray alloc] init];
  1459. for(int i=0;i<titleArray.count;i++){
  1460. NSString *titleStr = [titleArray objectAtIndex:i];
  1461. WS(weakSelf);
  1462. YCMenuAction *actionMenu = [YCMenuAction actionWithTitle:titleStr image:nil handler:^(YCMenuAction *action) {
  1463. if([@"建文件夹" isEqualToString:action.title]){
  1464. [[ShowNewGroupAlert initShowNewGroupAlertWithTitle:@"建文件夹" placeholder:@"请输入文件夹名称" confirm:^(NSString * _Nonnull groupName) {
  1465. NSLog(@"%@",groupName);
  1466. [weakSelf addFind:groupName];
  1467. } cancle:^{
  1468. }] show];
  1469. }
  1470. else if ([@"批量编辑" isEqualToString:action.title]){
  1471. [weakSelf changeToOperation:YES];
  1472. }
  1473. }];
  1474. [menuDataSourceArray addObject:actionMenu];
  1475. }
  1476. return menuDataSourceArray;
  1477. }
  1478. -(NSMutableArray *)taskActionArray{
  1479. if(!_taskActionArray){
  1480. if (self.isHome) {
  1481. _taskActionArray = [[NSMutableArray alloc] initWithObjects:@"建文件夹",@"批量编辑", nil];
  1482. }else{
  1483. _taskActionArray = [[NSMutableArray alloc] initWithObjects:@"批量编辑", nil];
  1484. }
  1485. }
  1486. return _taskActionArray;
  1487. }
  1488. - (NSMutableArray<NoticeModel *> *)interLetterArray{
  1489. if (!_interLetterArray) {
  1490. _interLetterArray = [NSMutableArray array];
  1491. }
  1492. return _interLetterArray;
  1493. }
  1494. #pragma mark - 批量编辑
  1495. -(void)initBottomBgView{
  1496. UIButton *leftCloseBtn = [UIButton buttonWithType:UIButtonTypeCustom];
  1497. [leftCloseBtn setTitle:@"删除" forState:UIControlStateNormal];
  1498. [leftCloseBtn setTitleColor:RGB(255, 82, 82) forState:UIControlStateNormal];
  1499. leftCloseBtn.titleLabel.font = [UIFont systemFontOfSize:15];
  1500. [self.operationBottomBgView addSubview:leftCloseBtn];
  1501. leftCloseBtn.frame = CGRectMake(0, 10, SCREEN_WIDTH/2, self.operationBottomBgView.height - 10);
  1502. self.opearateLeftBtn = leftCloseBtn;
  1503. UIButton *rightMoveBtn = [UIButton buttonWithType:UIButtonTypeCustom];
  1504. [rightMoveBtn setTitle:@"移动" forState:UIControlStateNormal];
  1505. [rightMoveBtn setTitleColor:UIColorHex(#BBBBBB) forState:UIControlStateNormal];
  1506. // [rightMoveBtn setTitleColor:UIColorHex(#BBBBBB) forState:UIControlStateDisabled];
  1507. rightMoveBtn.titleLabel.font = [UIFont systemFontOfSize:15];
  1508. [self.operationBottomBgView addSubview:rightMoveBtn];
  1509. rightMoveBtn.frame = CGRectMake(SCREEN_WIDTH/2, 10, SCREEN_WIDTH/2, self.operationBottomBgView.height - 10);
  1510. self.opearateRightBtn = rightMoveBtn;
  1511. UILabel *line = [[UILabel alloc] init];
  1512. line.backgroundColor = RGB(240, 239, 244);
  1513. [self.operationBottomBgView addSubview:line];
  1514. line.frame = CGRectMake(SCREEN_WIDTH/2, 0, .5, self.operationBottomBgView.height);
  1515. self.leftCloseBtn = leftCloseBtn;
  1516. self.rightMoveBtn = rightMoveBtn;
  1517. self.LineL = line;
  1518. WS(weakSelf);
  1519. [leftCloseBtn setAction:^{
  1520. NSMutableArray *selectIDArray = [NSMutableArray array];
  1521. for (NoticeModel * model in weakSelf.interLetterArray) {
  1522. if (model.IsSelect) {
  1523. [selectIDArray addObject:model];
  1524. }
  1525. }
  1526. if (selectIDArray.count == 0) {
  1527. SHOWERROR(@"请选择要删除的站内信");
  1528. return ;
  1529. }else{
  1530. UIAlertController *alertVC = [UIAlertController alertControllerWithTitle:nil message:@"确认删除" preferredStyle:UIAlertControllerStyleAlert];
  1531. UIAlertAction *ok = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
  1532. }];
  1533. [ok setValue:k9 forKey:@"_titleTextColor"];
  1534. UIAlertAction *noOk = [UIAlertAction actionWithTitle:@"确认" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
  1535. [weakSelf thoroughDelete:selectIDArray isDelete:weakSelf.pageType == PageTypeFromTitleDeleted ? YES : NO];
  1536. }];
  1537. [alertVC addAction:ok];
  1538. [alertVC addAction:noOk];
  1539. [weakSelf presentViewController:alertVC animated:YES completion:nil];
  1540. }
  1541. }];
  1542. [rightMoveBtn setAction:^{
  1543. NSMutableArray *selectIDArray = [NSMutableArray array];
  1544. for (NoticeModel * model in weakSelf.interLetterArray) {
  1545. if (model.IsSelect) {
  1546. [selectIDArray addObject:@(model.Id)];
  1547. }
  1548. }
  1549. if (selectIDArray.count == 0) {
  1550. SHOWERROR(@"请选择要移动的站内信或者文件夹");
  1551. return ;
  1552. }
  1553. [weakSelf launchMoveVC:selectIDArray];
  1554. }];
  1555. [[UtilsTools getWindow] addSubview:self.operationBottomBgView];
  1556. }
  1557. - (void)launchMoveVC:(NSMutableArray<NSNumber*>*)selectIDArray{
  1558. MoveViewController * vc = [MoveViewController initMoveViewController];
  1559. vc.TypeId = CreateShouType;
  1560. vc.collectType = CollectHanderType_Move;
  1561. vc.ParentId = 0;
  1562. vc.titleStr = @"移动到";
  1563. vc.FolderIds = selectIDArray;
  1564. [self.navigationController pushViewController:vc animated:YES];
  1565. [self changeToOperation:NO];
  1566. }
  1567. -(UIView *)operationBottomBgView{
  1568. if(!_operationBottomBgView){
  1569. _operationBottomBgView = [[UIView alloc] init];
  1570. CGFloat bottomBgViewH = self.tabBarController.tabBar.height;
  1571. _operationBottomBgView.frame = CGRectMake(0, SCREEN_HEIGHT - bottomBgViewH, SCREEN_WIDTH, bottomBgViewH);
  1572. _operationBottomBgView.backgroundColor = RGB(255, 255, 255);
  1573. _operationBottomBgView.hidden = YES;
  1574. }
  1575. return _operationBottomBgView;
  1576. }
  1577. #pragma mark 批量操作与正常操作界面切换
  1578. -(void)changeToOperation:(BOOL)operation{
  1579. WS(weakSelf);
  1580. if(self.pageType == PageTypeFromTitleDeleted){
  1581. [self.rightMoveBtn setTitle:@"恢复" forState:UIControlStateNormal];
  1582. [self.rightMoveBtn setAction:^{
  1583. NSMutableArray *MiddleIds = [NSMutableArray array];
  1584. for (NoticeModel *model in weakSelf.interLetterArray) {
  1585. if (model.IsSelect) {
  1586. [MiddleIds addObject:@(model.Id)];
  1587. }
  1588. }
  1589. NSMutableDictionary *dic = [[NSMutableDictionary alloc]init];
  1590. [dic setValue:MiddleIds forKey:@"MiddleIds"];
  1591. [dic setValue:@(5) forKey:@"FolderType"];
  1592. [dic setValue:@(1) forKey:@"IsDelete"];
  1593. [dic setValue:@([AppUserModel sharedAppUserModel].Id) forKey:@"UserId"];
  1594. SHOWLOADING
  1595. [[HttpManager sharedHttpManager] POSTUrl:Host(API_Find_DeleteRecord) parameters:dic responseStyle:DATA success:^(id _Nonnull responseObject) {
  1596. REMOVESHOW
  1597. [weakSelf headRefresh];
  1598. } failure:^(NSError * _Nonnull error) {
  1599. SHOWERROR([ZYCTool handerResultData:error]);
  1600. }];
  1601. }];
  1602. }else{
  1603. [self.rightMoveBtn setTitle:@"移动" forState:UIControlStateNormal];
  1604. [self.rightMoveBtn setAction:^{
  1605. NSMutableArray *selectIDArray = [NSMutableArray array];
  1606. for (NoticeModel * model in weakSelf.interLetterArray) {
  1607. if (model.IsSelect) {
  1608. [selectIDArray addObject:@(model.Id)];
  1609. }
  1610. }
  1611. if (selectIDArray.count == 0) {
  1612. SHOWERROR(@"请选择要移动的站内信或者文件夹");
  1613. return ;
  1614. }
  1615. [weakSelf launchMoveVC:selectIDArray];
  1616. }];
  1617. }
  1618. if(operation){
  1619. self.deleteView.hidden = YES;
  1620. self.iSViewEditor = YES;
  1621. self.SearchView.hidden = YES;
  1622. self.HeadHight.constant = 36.f;
  1623. self.rightAddBtn.hidden = YES;
  1624. self.rightEditBtn.hidden = YES;
  1625. self.SortView.hidden = NO;
  1626. //默认操作状态为批量编辑状态
  1627. [self removeRefresh];
  1628. [self.tableView setEditing:YES];
  1629. self.operationStateEnum = OperationStateEnum1;
  1630. self.operationAllSelectButton.hidden = NO;
  1631. [self.operationAllSelectButton setTitleColor:UIColorHex(#0F88EB) forState:UIControlStateNormal];
  1632. [self.operationAllSelectButton setImage:nil forState:UIControlStateNormal];
  1633. WS(weakSelf);
  1634. self.isAllselect = [self checkNoticeArray];
  1635. self.titleLable.text = @"批量编辑";
  1636. self.titleLable.hidden = NO;
  1637. self.titleBtn.hidden = YES;
  1638. [self.operationAllSelectButton setTitle:self.isAllselect ? @"取消全选": @"全选" forState:UIControlStateNormal];
  1639. [self.operationAllSelectButton setAction:^{
  1640. for (NoticeModel *model in weakSelf.interLetterArray) {
  1641. model.IsSelect = !weakSelf.isAllselect;
  1642. }
  1643. [weakSelf.allSelectBtn setImage:weakSelf.isAllselect ? IMG(@"sendinfo_no") : IMG(@"sendinfo_yes") forState:UIControlStateNormal];
  1644. weakSelf.selectCountL.text = [NSString stringWithFormat:@"%ld",weakSelf.isAllselect ? 0 : (long)weakSelf.interLetterArray.count];
  1645. [weakSelf.tableView reloadData];
  1646. }];
  1647. self.operationBottomBgView.hidden = NO;
  1648. if(self.pageType != PageTypeFromTitleDeleted){
  1649. self.tabBarController.tabBar.hidden = YES;
  1650. self.view.height -= self.tabBarController.tabBar.height;
  1651. self.tableView.height -= (self.tabBarController.tabBar.height + 36);
  1652. [self.view layoutIfNeeded];
  1653. [self.tableView layoutIfNeeded];
  1654. }else{
  1655. self.deleteSelectBtn.hidden = YES;
  1656. }
  1657. self.fd_interactivePopDisabled = YES;
  1658. self.tableView.allowsSelectionDuringEditing = YES;
  1659. }else{
  1660. [self addRefresh];
  1661. if(self.pageType == PageTypeFromTitleDeleted){
  1662. self.deleteView.hidden = NO;
  1663. self.rightAddBtn.hidden = YES;
  1664. self.rightEditBtn.hidden = YES;
  1665. self.deleteSelectBtn.hidden = NO;
  1666. }else{
  1667. self.deleteView.hidden = YES;
  1668. self.rightAddBtn.hidden = NO;
  1669. self.rightEditBtn.hidden = NO;
  1670. self.deleteSelectBtn.hidden = YES;
  1671. self.tabBarController.tabBar.hidden = YES;
  1672. self.tableView.height += self.tabBarController.tabBar.height;
  1673. self.view.height += self.tabBarController.tabBar.height;
  1674. [self.view layoutIfNeeded];
  1675. [self.tableView layoutIfNeeded];
  1676. }
  1677. [self.tableView setEditing:NO];
  1678. self.operationBottomBgView.hidden = YES;
  1679. self.iSViewEditor = NO;
  1680. self.HeadHight.constant = 46.f;
  1681. self.SortView.hidden = YES;
  1682. self.SearchView.hidden = NO;
  1683. [self.SortView mas_updateConstraints:^(MASConstraintMaker *make) {
  1684. make.height.mas_offset(0);
  1685. }];
  1686. //默认操作状态为无状态
  1687. self.operationStateEnum = OperationStateEnum0;
  1688. self.operationAllSelectButton.hidden = NO;
  1689. if (self.isHome) {
  1690. self.titleBtn.hidden = NO;
  1691. self.titleLable.hidden = YES;
  1692. }else{
  1693. self.titleLable.hidden = NO;
  1694. self.titleBtn.hidden = YES;
  1695. self.titleLable.text = self.interLeterFoldName;
  1696. }
  1697. [self.operationAllSelectButton setImage:IMG(@"menu_black_icon") forState:UIControlStateNormal];
  1698. [self.operationAllSelectButton setTitleColor:[UIColor clearColor] forState:UIControlStateNormal];
  1699. self.fd_interactivePopDisabled = NO;
  1700. }
  1701. [self.tableView reloadData];
  1702. }
  1703. #pragma mark 移动 isEdit:当前是否为编辑状态
  1704. -(void)userDidMove:(BOOL)move isEdit:(BOOL)isEdit{
  1705. //移动
  1706. if(move){
  1707. //默认操作状态为移动状态
  1708. self.operationStateEnum = OperationStateEnum2;
  1709. self.rightAddBtn.hidden = NO;
  1710. [self resetRightBtnAction:NO];
  1711. //隐藏tabBar - 并将TableView至底端
  1712. self.tabBarController.tabBar.hidden = YES;
  1713. self.view.height += self.tabBarController.tabBar.height;
  1714. self.tableView.height += self.tabBarController.tabBar.height;
  1715. [self.view layoutIfNeeded];
  1716. [self.tableView layoutIfNeeded];
  1717. //隐藏operationBottomBgView
  1718. self.operationBottomBgView.hidden = YES;
  1719. }
  1720. else{
  1721. //隐藏tabBar - 并将TableView至底端有tabBar.height的高
  1722. self.tabBarController.tabBar.hidden = YES;
  1723. self.view.height -= self.tabBarController.tabBar.height;
  1724. self.tableView.height -= self.tabBarController.tabBar.height;
  1725. [self.view layoutIfNeeded];
  1726. [self.tableView layoutIfNeeded];
  1727. //显示operationBottomBgView
  1728. self.operationBottomBgView.hidden = NO;
  1729. if(isEdit){
  1730. self.operationStateEnum = OperationStateEnum1;
  1731. self.rightAddBtn.hidden = YES;
  1732. [self resetRightBtnAction:YES];
  1733. }else{
  1734. [self changeToOperation:NO];
  1735. }
  1736. }
  1737. [self.tableView reloadData];
  1738. }
  1739. - (void)reSettingIsSelect{
  1740. for (NoticeModel *model in self.interLetterArray) {
  1741. model.IsSelect = NO;
  1742. }
  1743. }
  1744. -(void)resetRightBtnAction:(BOOL)isShowMenu{
  1745. WS(weakSelf);
  1746. if(isShowMenu){
  1747. [self.rightAddBtn setImage:[UIImage imageNamed:@"chatmsg_right_add_icon"] forState:UIControlStateNormal];
  1748. [self.rightAddBtn setAction:^{
  1749. NSMutableArray *menuDataSourceArray = [weakSelf getMenuDataSource:weakSelf.taskActionArray];
  1750. YCMenuView *view = [YCMenuView menuWithActions:menuDataSourceArray width:106 relyonView:weakSelf.rightAddBtn];
  1751. view.menuColor = RGB(255, 255, 255);
  1752. view.separatorColor = RGB(234, 234, 234);
  1753. view.textColor = RGB(102, 102, 102);
  1754. view.textFont = [UIFont systemFontOfSize:16.0];
  1755. view.menuCellHeight = 43.5;
  1756. view.maxDisplayCount = 10;
  1757. view.offset = -6;
  1758. [view show];
  1759. }];
  1760. }else{
  1761. [self.rightAddBtn setImage:[UIImage imageNamed:@"chatmsg_right_fileadd_icon"] forState:UIControlStateNormal];
  1762. [self.rightAddBtn setAction:^{
  1763. [ShowtipTool showErrorWithStatus:@"未做"];
  1764. }];
  1765. }
  1766. }
  1767. - (void)backAction:(id)sender{
  1768. [self changeBarBtn:NO];
  1769. self.deleteView.hidden = YES;
  1770. if (self.iSViewEditor) {
  1771. [self headRefresh];
  1772. [self changeSelectStatus];
  1773. [self changeToOperation:NO];
  1774. }else{
  1775. [self.navigationController popViewControllerAnimated:true];
  1776. }
  1777. }
  1778. - (void)changeSelectStatus
  1779. {
  1780. for (NoticeModel * model in self.interLetterArray) {
  1781. model.IsSelect = NO;
  1782. }
  1783. }
  1784. - (void)menuAction:(id)sender{
  1785. switch (self.operationStateEnum) {
  1786. case OperationStateEnum1:
  1787. {
  1788. for (NoticeModel *model in self.interLetterArray) {
  1789. model.IsSelect = !self.isAllselect;
  1790. }
  1791. [self.tableView reloadData];
  1792. [self setingMoveButton];
  1793. }
  1794. break;
  1795. default:{
  1796. [super menuAction:sender];
  1797. self.deleteView.hidden = YES;
  1798. self.operationBottomBgView.hidden = YES;
  1799. }
  1800. break;
  1801. }
  1802. }
  1803. #pragma mark - 文件夹操作 创建 | 修改 | 置顶 | 取消置顶 | 删除 | 恢复已删除 | 移动
  1804. /// 创建文件夹
  1805. - (void)addFind:(NSString *)groupname{
  1806. SHOWLOADING
  1807. WEAKSELF
  1808. [[HttpManager sharedHttpManager] PUTUrl:Host(APP_Middle_Add_Folder) parameters:@{@"FolderName":groupname,@"ParentId":@(self.interLeterFolderId),@"TypeId":@(800)} responseStyle:JOSN success:^(id _Nonnull responseObject) {
  1809. STRONGSELF
  1810. REMOVESHOW
  1811. [strongSelf headRefresh];
  1812. } failure:^(NSError * _Nonnull error) {
  1813. SHOWERROR([ZYCTool handerResultData:error]);
  1814. }];
  1815. }
  1816. /// 修改文件夹名称
  1817. - (void)reNameFind:(NoticeModel*)findModel withReNameString:(NSString *)renameString{
  1818. SHOWLOADING
  1819. WEAKSELF
  1820. [[HttpManager sharedHttpManager] POSTUrl:Host(API_Find_ReName) parameters:@{@"FolderName":renameString,@"Id":@(findModel.Id)} responseStyle:DATA success:^(id _Nonnull responseObject) {
  1821. STRONGSELF
  1822. REMOVESHOW
  1823. [strongSelf headRefresh];
  1824. } failure:^(NSError * _Nonnull error) {
  1825. SHOWERROR([ZYCTool handerResultData:error]);
  1826. }];
  1827. }
  1828. /// 文件夹 置顶 和 取消置顶
  1829. - (void)topFind:(NoticeModel*)findModel{
  1830. NSLog(@"文件夹---%@%@",findModel.IsTop ? @"置顶":@"取消置顶",findModel.FolderName);
  1831. SHOWLOADING
  1832. WEAKSELF
  1833. [[HttpManager sharedHttpManager] PUTUrl:[NSString stringWithFormat:@"%@%@%ld",BaseUrl,API_Find_Top,(long)findModel.Id] parameters:@{} success:^(id _Nonnull responseObject) {
  1834. REMOVESHOW
  1835. [weakSelf reCreateTable];
  1836. } failure:^(NSError * _Nonnull error) {
  1837. SHOWERROR([ZYCTool handerResultData:error]);
  1838. }];
  1839. }
  1840. - (void)reCreateTable
  1841. {
  1842. self.currentPage = 1;
  1843. self.totalRecord = 0;
  1844. [self.interLetterArray removeAllObjects];
  1845. NSMutableDictionary *dict = [[NSMutableDictionary alloc] init];
  1846. if (self.pageType == PageTypeFromTitleDeleted) {
  1847. [self changeBarBtn:YES];
  1848. }else{
  1849. [self changeBarBtn:NO];
  1850. }
  1851. // [dict setObject:@(self.currentPage) forKey:@"Page"];
  1852. // [dict setObject:@"99999999" forKey:@"PerPage"];
  1853. // [dict setObject:@(self.pageType) forKey:@"SearchType"];
  1854. // [dict setObject:@"" forKey:@"Keyword"];
  1855. // [dict setObject:@(self.interLeterFolderId) forKey:@"NoticeFolderId"];
  1856. // WS(weakSelf);
  1857. // [[HttpManager sharedHttpManager] POSTUrl:Host(API_NOTICE_LIST) parameters:dict responseStyle:JOSN success:^(id _Nonnull responseObject) {
  1858. // NSLog(@"站内信返回数据%@",responseObject);
  1859. // NoticeListModel *listModel = [[NoticeListModel alloc] initWithDictionary:responseObject error:nil];
  1860. // [weakSelf.tableView.mj_header endRefreshing];
  1861. // [weakSelf.tableView.mj_footer endRefreshing];
  1862. // weakSelf.totalRecord = listModel.Total;
  1863. // [weakSelf.interLetterArray addObjectsFromArray:listModel.Items];
  1864. // if (weakSelf.totalRecord == weakSelf.interLetterArray.count) {
  1865. // [weakSelf.tableView.mj_footer resetNoMoreData];
  1866. // [weakSelf.tableView.mj_footer endRefreshingWithNoMoreData];
  1867. // }
  1868. // [weakSelf.tableView reloadData];
  1869. // } failure:^(NSError * _Nonnull error) {
  1870. // SHOWERROR([ZYCTool handerResultData:error]);
  1871. // [weakSelf.tableView.mj_header endRefreshing];
  1872. // [weakSelf.tableView.mj_footer endRefreshing];
  1873. // }];
  1874. [dict setObject:@(self.currentPage) forKey:@"Page"];
  1875. [dict setObject:@"99999999" forKey:@"PerPage"];
  1876. [dict setObject:@(self.pageType) forKey:@"SearchType"];
  1877. [dict setObject:@"" forKey:@"Key"];
  1878. [dict setObject:@(self.interLeterFolderId) forKey:@"NoticeFolderId"];
  1879. WS(weakSelf);
  1880. [[HttpManager sharedHttpManager] POSTUrl:Host(API_NOTICE_LIST) parameters:dict responseStyle:JOSN success:^(id _Nonnull responseObject) {
  1881. NSLog(@"站内信返回数据%@",responseObject);
  1882. NoticeListModel *listModel = [[NoticeListModel alloc] initWithDictionary:responseObject error:nil];
  1883. [weakSelf.tableView.mj_header endRefreshing];
  1884. [weakSelf.tableView.mj_footer endRefreshing];
  1885. weakSelf.totalRecord = listModel.Total;
  1886. [weakSelf.interLetterArray addObjectsFromArray:listModel.Items];
  1887. if (weakSelf.totalRecord == weakSelf.interLetterArray.count) {
  1888. [weakSelf.tableView.mj_footer resetNoMoreData];
  1889. [weakSelf.tableView.mj_footer endRefreshingWithNoMoreData];
  1890. }
  1891. dispatch_async(dispatch_get_main_queue(), ^{
  1892. [weakSelf.tableView removeFromSuperview];
  1893. weakSelf.tableView = nil;
  1894. [weakSelf.view addSubview:weakSelf.tableView];
  1895. weakSelf.tableView.delegate = weakSelf;
  1896. weakSelf.tableView.dataSource = weakSelf;
  1897. weakSelf.tableView.backgroundColor = [UIColor clearColor];
  1898. [weakSelf.tableView mas_makeConstraints:^(MASConstraintMaker *make) {
  1899. make.left.right.mas_equalTo(weakSelf.view);
  1900. make.top.mas_equalTo(weakSelf.NavBar.mas_bottom);
  1901. if (@available(iOS 11.0, *)) {
  1902. make.bottom.equalTo(weakSelf.view.mas_safeAreaLayoutGuideBottom);
  1903. } else {
  1904. make.bottom.equalTo(weakSelf.view.mas_bottom);
  1905. }
  1906. }];
  1907. [weakSelf.tableView reloadData];
  1908. });
  1909. } failure:^(NSError * _Nonnull error) {
  1910. SHOWERROR([ZYCTool handerResultData:error]);
  1911. [weakSelf.tableView.mj_header endRefreshing];
  1912. [weakSelf.tableView.mj_footer endRefreshing];
  1913. }];
  1914. }
  1915. /// 删除文件夹
  1916. //- (void)deleteFind:(NSMutableArray<NoticeModel *>*)findModelArray{
  1917. // NSMutableArray *MiddleIds = [NSMutableArray array];
  1918. //
  1919. // for (NoticeModel *model in findModelArray) {
  1920. // [MiddleIds addObject:@(model.Id)];
  1921. // }
  1922. // NSMutableDictionary *dic = [[NSMutableDictionary alloc]init];
  1923. // [dic setValue:MiddleIds forKey:@"MiddleIds"];
  1924. // [dic setValue:@(5) forKey:@"FolderType"];
  1925. // [dic setValue:@(0) forKey:@"IsDelete"];
  1926. // [dic setValue:@([AppUserModel sharedAppUserModel].Id) forKey:@"UserId"];
  1927. //
  1928. // SHOWLOADING
  1929. // WEAKSELF
  1930. // [[HttpManager sharedHttpManager] POSTUrl:Host(API_Find_DeleteRecord) parameters:dic responseStyle:DATA success:^(id _Nonnull responseObject) {
  1931. // STRONGSELF
  1932. // REMOVESHOW
  1933. // [strongSelf headRefresh];
  1934. // } failure:^(NSError * _Nonnull error) {
  1935. // SHOWERROR([ZYCTool handerResultData:error]);
  1936. // }];
  1937. //
  1938. //}
  1939. - (void)thoroughDelete:(NSMutableArray<NoticeModel *>*)array isDelete:(BOOL)isDelete
  1940. {
  1941. NSMutableArray * addArray = [NSMutableArray array];
  1942. for (NoticeModel *model in array) {
  1943. [addArray addObject:@(model.Id)];
  1944. }
  1945. NSDictionary * dict = @{@"MiddleIds":addArray,
  1946. @"FolderType":@(800), ///1 通知
  1947. @"IsDelete":@(isDelete)
  1948. };
  1949. WS(weakSelf);
  1950. SHOWLOADING
  1951. [[HttpManager sharedHttpManager] POSTUrl:Host(API_Find_DeleteRecord) parameters:dict responseStyle:DATA success:^(id _Nonnull responseObject) {
  1952. REMOVESHOW
  1953. SHOWSUCCESS(@"删除成功");
  1954. [weakSelf.interLetterArray removeObjectsInArray:array];
  1955. dispatch_async(dispatch_get_main_queue(), ^{
  1956. [weakSelf.tableView reloadData];
  1957. });
  1958. } failure:^(NSError * _Nonnull error) {
  1959. REMOVESHOW
  1960. }];
  1961. }
  1962. /// 恢复文件夹
  1963. - (void)reDoDeleteFind:(NSMutableArray<NoticeModel *>*)findModelArray{
  1964. NSMutableArray *MiddleIds = [NSMutableArray array];
  1965. for (NoticeModel *model in findModelArray) {
  1966. [MiddleIds addObject:@(model.Id)];
  1967. }
  1968. NSMutableDictionary *dic = [[NSMutableDictionary alloc]init];
  1969. [dic setValue:MiddleIds forKey:@"MiddleIds"];
  1970. [dic setValue:@(800) forKey:@"FolderType"];
  1971. [dic setValue:@(0) forKey:@"IsDelete"];
  1972. [dic setValue:@([AppUserModel sharedAppUserModel].Id) forKey:@"UserId"];
  1973. SHOWLOADING
  1974. WEAKSELF
  1975. [[HttpManager sharedHttpManager] POSTUrl:Host(API_Find_DeleteRecord_Redo) parameters:dic responseStyle:DATA success:^(id _Nonnull responseObject) {
  1976. STRONGSELF
  1977. REMOVESHOW
  1978. [strongSelf headRefresh];
  1979. } failure:^(NSError * _Nonnull error) {
  1980. SHOWERROR([ZYCTool handerResultData:error]);
  1981. }];
  1982. }
  1983. /// 移动文件夹
  1984. - (void)moveFind:(NSMutableArray<NoticeModel *>*)findModelArray withSuperModel:(NoticeModel *)supermodel{
  1985. NSMutableArray *MiddleIds = [NSMutableArray array];
  1986. for (NoticeModel *model in findModelArray) {
  1987. [MiddleIds addObject:@(model.Id)];
  1988. }
  1989. NSMutableDictionary *dic = [[NSMutableDictionary alloc]init];
  1990. [dic setValue:MiddleIds forKey:@"Ids"];
  1991. [dic setValue:@(0) forKey:@"ParentId"];
  1992. SHOWLOADING
  1993. WEAKSELF
  1994. [[HttpManager sharedHttpManager] POSTUrl:Host(API_Find_Move) parameters:dic responseStyle:DATA success:^(id _Nonnull responseObject) {
  1995. STRONGSELF
  1996. REMOVESHOW
  1997. [strongSelf headRefresh];
  1998. } failure:^(NSError * _Nonnull error) {
  1999. SHOWERROR([ZYCTool handerResultData:error]);
  2000. }];
  2001. }
  2002. - (void)editorButtonHander:(NSIndexPath *)indexpath{
  2003. WS(weakSelf);
  2004. NoticeModel *model = self.interLetterArray[indexpath.row];
  2005. MyTDTopicCreateVC * vc = [MyTDTopicCreateVC initMyTDTopicCreateVC];
  2006. vc.type = CollectModel_InterMail;
  2007. vc.isEdit = YES;
  2008. vc.replayType = MailReplayEdit;
  2009. vc.Id = model.MiddleId;
  2010. vc.isFromDraft = (model.SourceId == 0 ? YES : NO);
  2011. vc.MailType = model.TypeValue;
  2012. vc.upDateBlock = ^{
  2013. [weakSelf headRefresh];
  2014. };
  2015. [self.navigationController pushViewController:vc animated:YES];
  2016. }
  2017. - (void)pushWorkVCwithModel:(NoticeModel *)model
  2018. {
  2019. WS(weakSelf);
  2020. MyApprovalPageDetail *myApprovalPageDetail = [[MyApprovalPageDetail alloc] init];
  2021. [myApprovalPageDetail setActionSussBlock:^{
  2022. [weakSelf headRefresh];
  2023. }];
  2024. switch (model.TypeValue) {
  2025. case PageTypeFromTitleMeShen:
  2026. {
  2027. myApprovalPageDetail.pageType = Type_ONEA;
  2028. }
  2029. break;
  2030. case PageTypeFromTitleMeSend:
  2031. {
  2032. myApprovalPageDetail.pageType = Type_ONEB;
  2033. }
  2034. break;
  2035. default:
  2036. {
  2037. myApprovalPageDetail.pageType = Type_ONEC;
  2038. }
  2039. break;
  2040. }
  2041. myApprovalPageDetail.Stats = model.FlowState;
  2042. myApprovalPageDetail.userId = model.UserId;
  2043. myApprovalPageDetail.indexId = model.MiddleId;
  2044. myApprovalPageDetail.TodoId = model.TodoId;
  2045. myApprovalPageDetail.title = model.Title;
  2046. [self.navigationController pushViewController:myApprovalPageDetail animated:YES];
  2047. }
  2048. - (void)setShenIcon:(NoticeModel *)model withCellImgV:(UIImageView *)imagV
  2049. {
  2050. if (model.IsRecall) {
  2051. imagV.image = IMG(@"shenpi_reCall");
  2052. }else{
  2053. if ([model.FlowState isEqualToString:@"Checking"]) {
  2054. imagV.image = IMG(@"审批");
  2055. }else{
  2056. imagV.image = IMG(@"shenpi_icon");
  2057. }
  2058. }
  2059. }
  2060. - (UIButton *)allSelectBtn
  2061. {
  2062. if (!_allSelectBtn) {
  2063. _allSelectBtn = [UIButton new];
  2064. _allSelectBtn.hidden = YES;
  2065. [_allSelectBtn setImage:IMG(@"sendinfo_no") forState:UIControlStateNormal];
  2066. }
  2067. return _allSelectBtn;
  2068. }
  2069. - (UILabel *)selectCountL
  2070. {
  2071. if (!_selectCountL) {
  2072. _selectCountL = [UILabel new];
  2073. _selectCountL.font = Kfont(13);
  2074. _selectCountL.text = @"0";
  2075. _selectCountL.hidden = YES;
  2076. _selectCountL.textColor = UIColorHex(0x0F88EB);
  2077. }
  2078. return _selectCountL;
  2079. }
  2080. - (UIView *)SortView
  2081. {
  2082. if (!_SortView) {
  2083. _SortView = [UIView new];
  2084. _SortView.backgroundColor = UIColorHex(0xF0EFF4);
  2085. _SortView.hidden = YES;
  2086. }
  2087. return _SortView;
  2088. }
  2089. - (void)addSortV
  2090. {
  2091. [self.HeadView addSubview:self.SortView];
  2092. [self.SortView mas_makeConstraints:^(MASConstraintMaker *make) {
  2093. make.edges.mas_offset(UIEdgeInsetsZero);
  2094. }];
  2095. [self.SortView addSubview:self.allSelectBtn];
  2096. // [self.SortView addSubview:self.selectCountL];
  2097. [self.allSelectBtn mas_makeConstraints:^(MASConstraintMaker *make) {
  2098. make.left.mas_offset(5);
  2099. make.centerY.mas_equalTo(self.SortView);
  2100. make.size.mas_offset(CGSizeMake(36, 36));
  2101. }];
  2102. // UILabel * leftL = [UILabel new];
  2103. // leftL.text = @"已选:";
  2104. // leftL.textColor = UIColorHex(0x666666);
  2105. // leftL.font = Kfont(13);
  2106. // [self.SortView addSubview:leftL];
  2107. // [leftL mas_makeConstraints:^(MASConstraintMaker *make) {
  2108. // make.left.mas_equalTo(self.allSelectBtn.mas_right).offset(5);
  2109. // make.centerY.mas_equalTo(self.SortView);
  2110. // }];
  2111. // [self.selectCountL mas_makeConstraints:^(MASConstraintMaker *make) {
  2112. // make.left.mas_equalTo(leftL.mas_right).offset(8);
  2113. // make.centerY.mas_equalTo(self.SortView);
  2114. // }];
  2115. UILabel * rightL = [UILabel new];
  2116. rightL.text = @"长按右侧三横,拖动可进行排序";
  2117. rightL.textColor = UIColorHex(0x666666);
  2118. rightL.font = Kfont(13);
  2119. [self.SortView addSubview:rightL];
  2120. [rightL mas_makeConstraints:^(MASConstraintMaker *make) {
  2121. // make.left.mas_equalTo(self.selectCountL.mas_right).offset(5);
  2122. // make.centerY.mas_equalTo(self.SortView);
  2123. make.center.mas_equalTo(self.SortView);
  2124. }];
  2125. WS(weakSelf);
  2126. [self.allSelectBtn setAction:^{
  2127. for (NoticeModel *model in weakSelf.interLetterArray) {
  2128. model.IsSelect = !weakSelf.isAllselect;
  2129. if (model.IsSelect && model.AttributeValue == 2) {
  2130. SHOWERROR(@"文件夹不能移动");
  2131. }
  2132. }
  2133. NSInteger count = 0;
  2134. for (NoticeModel * smodel in weakSelf.interLetterArray) {
  2135. if (smodel.IsSelect) {
  2136. count ++;
  2137. }
  2138. }
  2139. [weakSelf.allSelectBtn setImage:count == weakSelf.interLetterArray.count ? IMG(@"sendinfo_yes") : IMG(@"sendinfo_no") forState:UIControlStateNormal];
  2140. weakSelf.selectCountL.text = [NSString stringWithFormat:@"%ld",(long)count];
  2141. dispatch_async(dispatch_get_main_queue(), ^{
  2142. [weakSelf.tableView reloadData];
  2143. });
  2144. }];
  2145. }
  2146. - (void)viewDidDisappear:(BOOL)animated
  2147. {
  2148. [super viewDidDisappear:animated];
  2149. [self changeBarBtn:NO];
  2150. self.deleteView.hidden = YES;
  2151. self.operationBottomBgView.hidden = YES;
  2152. }
  2153. @end