SourceGroupVC.m 45 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948
  1. //
  2. // SourceGroupVC.m
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2020/5/7.
  6. // Copyright © 2020 tederen. All rights reserved.
  7. //
  8. #import "SourceGroupVC.h"
  9. #import "MyTDGroupView.h"
  10. #import "TDGroupInfoListCell.h"
  11. #import "ChatMsgListCell.h"
  12. #import "TDGroupInfoListModel.h"
  13. #import "NoteBookVC.h"
  14. #import "OtherNoteBookVC.h"
  15. #import "MailListDetailVC.h"
  16. #import "MyFavoriteVC.h"
  17. #import "MyTDGroupViewController.h"
  18. #import "MoveViewController.h"
  19. #import "OtherFavoriteVC.h"
  20. #import "TDGroupInfoListVC.h"
  21. #import "WorkFlowDetailsController.h"
  22. #import "MyApprovalPageDetail.h"
  23. #import "DownFileViewController.h"
  24. #import "ShareListVC.h"
  25. #import "TDInterLeterHomeViewController.h"
  26. #import "MailListVC.h"
  27. #import "WaitWorkVC.h"
  28. #import "MyTDTopicSearchVC.h"
  29. #import "NoteBookShareVC.h"
  30. #import "GroupSquareVC.h"
  31. @interface SourceGroupVC ()<UITableViewDelegate,UITableViewDataSource,NoteBookShareVCDelegate>
  32. @property (weak, nonatomic) IBOutlet UIButton *editBtn;
  33. @property (weak, nonatomic) IBOutlet UIButton *squareBtn;
  34. @property (weak, nonatomic) IBOutlet UIView *HeadView;
  35. @property (weak, nonatomic) IBOutlet UITableView *tableView;
  36. @property (strong, nonatomic) MyTDGroupView *SearchView;
  37. @property (copy, nonatomic) NSMutableArray *dataArray;
  38. @property (strong, nonatomic) UIView *groupView;
  39. @property (strong, nonatomic) NoteBookShareVC *noteBookShareVC;
  40. @property (copy, nonatomic) FlowAttachmentsModel *sendModel;
  41. @property (assign, nonatomic) BOOL isReturn;
  42. @end
  43. @implementation SourceGroupVC
  44. +(SourceGroupVC *)initSourceGroupVC{
  45. SourceGroupVC *controller = [StoryboardManager.shared.Source instantiateViewControllerWithIdentifier:@"SourceGroupVC"];
  46. return controller;
  47. }
  48. - (void)viewDidLoad {
  49. [super viewDidLoad];
  50. self.fd_prefersNavigationBarHidden = YES;
  51. [self addHeaderSubView];
  52. self.tableView.delegate = self;
  53. self.tableView.dataSource = self;
  54. WS(weakSelf);
  55. [self.squareBtn setAction:^{
  56. GroupSquareVC * vc = [GroupSquareVC initGroupSquareVC];
  57. [weakSelf.navigationController pushViewController:vc animated:YES];
  58. }];
  59. [self.editBtn setAction:^{
  60. MyTDTopicCreateVC * vc = [MyTDTopicCreateVC initMyTDTopicCreateVC];
  61. vc.type = CollectModel_NewTopic;
  62. vc.upDateBlock = ^{
  63. [weakSelf getData];
  64. };
  65. [weakSelf.navigationController pushViewController:vc animated:YES];
  66. }];
  67. [self getData];
  68. }
  69. - (void)addHeaderSubView
  70. {
  71. [self.HeadView addSubview:self.SearchView];
  72. [self.SearchView mas_makeConstraints:^(MASConstraintMaker *make) {
  73. make.top.mas_offset(6);
  74. make.left.right.mas_equalTo(self.HeadView);
  75. make.height.mas_offset(36);
  76. }];
  77. [self.HeadView addSubview:self.groupView];
  78. [self.groupView mas_makeConstraints:^(MASConstraintMaker *make) {
  79. make.top.mas_equalTo(self.SearchView.mas_bottom);
  80. make.left.bottom.right.mas_equalTo(self.HeadView);
  81. }];
  82. UIImageView * imgV = [UIImageView new];
  83. imgV.image = IMG(@"Source_Group_Icon");
  84. [self.groupView addSubview:imgV];
  85. [imgV mas_makeConstraints:^(MASConstraintMaker *make) {
  86. make.left.mas_offset(15);
  87. make.centerY.mas_equalTo(self.groupView);
  88. }];
  89. UILabel * lineL = [UILabel new];
  90. lineL.backgroundColor = LINEBGCOLOR;
  91. [self.groupView addSubview:lineL];
  92. [lineL mas_makeConstraints:^(MASConstraintMaker *make) {
  93. make.left.bottom.right.mas_equalTo(self.groupView);
  94. make.height.mas_offset(0.5);
  95. }];
  96. UILabel * titleL = [UILabel new];
  97. titleL.textColor = UIColorHex(0x0A0A0A);
  98. titleL.font = [UIFont systemFontOfSize:15];
  99. titleL.text = @"我的小组";
  100. [self.groupView addSubview:titleL];
  101. [titleL mas_makeConstraints:^(MASConstraintMaker *make) {
  102. make.centerY.mas_equalTo(self.groupView);
  103. make.left.mas_equalTo(imgV.mas_right).offset(15);
  104. }];
  105. UIImageView * rightImgV = [UIImageView new];
  106. rightImgV.image = IMG(@"chatmsg_rightArrow_icon");
  107. [self.groupView addSubview:rightImgV];
  108. [rightImgV mas_makeConstraints:^(MASConstraintMaker *make) {
  109. make.centerY.mas_equalTo(self.groupView);
  110. make.right.offset(-15);
  111. }];
  112. WS(weakSelf);
  113. UITapGestureRecognizer * tap = [[UITapGestureRecognizer alloc] initWithActionBlock:^(id _Nonnull sender) {
  114. [weakSelf pushGroupVC];
  115. }];
  116. self.groupView.userInteractionEnabled = YES;
  117. [self.groupView addGestureRecognizer:tap];
  118. }
  119. - (void)pushGroupVC
  120. {
  121. MyTDGroupViewController * vc = [[MyTDGroupViewController alloc] init];
  122. [self.navigationController pushViewController:vc animated:YES];
  123. }
  124. - (void)getData
  125. {
  126. WS(weakSelf);
  127. NSDictionary * paraDict = @{@"ParentId":@(0),
  128. @"UserId":@([AppUserModel sharedAppUserModel].Id),
  129. @"Keyword": @"",
  130. @"Page":@(1),
  131. @"TopicGroupIds": @[],
  132. @"PerPage": @(99999999),
  133. @"Sort":@""
  134. };
  135. [[HttpManager sharedHttpManager] POSTUrl:Host(APP_Topic_Topic_List_Page) parameters:paraDict responseStyle:JOSN success:^(id _Nonnull responseObject) {
  136. NSLog(@"%@",responseObject);
  137. [weakSelf.tableView.mj_header endRefreshing];
  138. [weakSelf.tableView.mj_footer endRefreshing];
  139. TopicListModel * model = [TopicListModel modelWithDictionary:responseObject];
  140. [weakSelf.dataArray addObjectsFromArray:model.Items];
  141. dispatch_async(dispatch_get_main_queue(), ^{
  142. [weakSelf.tableView reloadData];
  143. });
  144. } failure:^(NSError * _Nonnull error) {
  145. [weakSelf.tableView.mj_header endRefreshing];
  146. [weakSelf.tableView.mj_footer endRefreshing];
  147. }];
  148. }
  149. #pragma mark - UITableViewDelegate
  150. - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
  151. return 1;
  152. }
  153. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
  154. return self.dataArray.count;
  155. }
  156. - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
  157. return UITableViewAutomaticDimension;
  158. }
  159. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
  160. WS(weakSelf);
  161. TopicListItemModel * model = [self.dataArray objectAtIndex:indexPath.row];
  162. switch (model.DataType) {
  163. case TopiclistCellImage:
  164. {
  165. TDGroupInfoListCell * cell;
  166. switch (model.Data.count) {
  167. case 1:
  168. {
  169. cell = [TDGroupInfoListCell configCell1:tableView indexPath:indexPath];
  170. cell.cellImagV1.hidden = NO;
  171. cell.cellImagV2.hidden = YES;
  172. cell.cellImagV3.hidden = YES;
  173. cell.cellImagV4.hidden = YES;
  174. cell.cellImagV5.hidden = YES;
  175. cell.cellImagV6.hidden = YES;
  176. cell.cellImagV7.hidden = YES;
  177. cell.cellImagV8.hidden = YES;
  178. cell.cellImagV9.hidden = YES;
  179. TopicListSubModel * subModel0 = model.Data[0];
  180. [cell.cellImagV1 sd_setImageWithURL:[NSURL URLWithString:subModel0.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  181. }
  182. break;
  183. case 2:
  184. {
  185. cell = [TDGroupInfoListCell configCell1:tableView indexPath:indexPath];
  186. cell.cellImagV1.hidden = NO;
  187. cell.cellImagV2.hidden = NO;
  188. cell.cellImagV3.hidden = YES;
  189. cell.cellImagV4.hidden = YES;
  190. cell.cellImagV5.hidden = YES;
  191. cell.cellImagV6.hidden = YES;
  192. cell.cellImagV7.hidden = YES;
  193. cell.cellImagV8.hidden = YES;
  194. cell.cellImagV9.hidden = YES;
  195. TopicListSubModel * subModel0 = model.Data[0];
  196. [cell.cellImagV1 sd_setImageWithURL:[NSURL URLWithString:subModel0.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  197. TopicListSubModel * subModel1 = model.Data[1];
  198. [cell.cellImagV2 sd_setImageWithURL:[NSURL URLWithString:subModel1.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  199. }
  200. break;
  201. case 3:
  202. {
  203. cell = [TDGroupInfoListCell configCell2:tableView indexPath:indexPath];
  204. cell.cellImagV1.hidden = NO;
  205. cell.cellImagV2.hidden = NO;
  206. cell.cellImagV3.hidden = NO;
  207. cell.cellImagV4.hidden = YES;
  208. cell.cellImagV5.hidden = YES;
  209. cell.cellImagV6.hidden = YES;
  210. cell.cellImagV7.hidden = YES;
  211. cell.cellImagV8.hidden = YES;
  212. cell.cellImagV9.hidden = YES;
  213. TopicListSubModel * subModel0 = model.Data[0];
  214. [cell.cellImagV1 sd_setImageWithURL:[NSURL URLWithString:subModel0.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  215. TopicListSubModel * subModel1 = model.Data[1];
  216. [cell.cellImagV2 sd_setImageWithURL:[NSURL URLWithString:subModel1.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  217. TopicListSubModel * subModel2 = model.Data[2];
  218. [cell.cellImagV3 sd_setImageWithURL:[NSURL URLWithString:subModel2.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  219. }
  220. break;
  221. case 4:
  222. {
  223. cell = [TDGroupInfoListCell configCell3:tableView indexPath:indexPath];
  224. cell.cellImagV1.hidden = NO;
  225. cell.cellImagV2.hidden = NO;
  226. cell.cellImagV3.hidden = NO;
  227. cell.cellImagV4.hidden = NO;
  228. cell.cellImagV5.hidden = YES;
  229. cell.cellImagV6.hidden = YES;
  230. cell.cellImagV7.hidden = YES;
  231. cell.cellImagV8.hidden = YES;
  232. cell.cellImagV9.hidden = YES;
  233. TopicListSubModel * subModel0 = model.Data[0];
  234. [cell.cellImagV1 sd_setImageWithURL:[NSURL URLWithString:subModel0.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  235. TopicListSubModel * subModel1 = model.Data[1];
  236. [cell.cellImagV2 sd_setImageWithURL:[NSURL URLWithString:subModel1.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  237. TopicListSubModel * subModel2 = model.Data[2];
  238. [cell.cellImagV3 sd_setImageWithURL:[NSURL URLWithString:subModel2.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  239. TopicListSubModel * subModel3 = model.Data[3];
  240. [cell.cellImagV4 sd_setImageWithURL:[NSURL URLWithString:subModel3.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  241. }
  242. break;
  243. case 5:
  244. {
  245. cell = [TDGroupInfoListCell configCell4:tableView indexPath:indexPath];
  246. cell.cellImagV1.hidden = NO;
  247. cell.cellImagV2.hidden = NO;
  248. cell.cellImagV3.hidden = NO;
  249. cell.cellImagV4.hidden = NO;
  250. cell.cellImagV5.hidden = NO;
  251. cell.cellImagV6.hidden = YES;
  252. cell.cellImagV7.hidden = YES;
  253. cell.cellImagV8.hidden = YES;
  254. cell.cellImagV9.hidden = YES;
  255. TopicListSubModel * subModel0 = model.Data[0];
  256. [cell.cellImagV1 sd_setImageWithURL:[NSURL URLWithString:subModel0.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  257. TopicListSubModel * subModel1 = model.Data[1];
  258. [cell.cellImagV2 sd_setImageWithURL:[NSURL URLWithString:subModel1.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  259. TopicListSubModel * subModel2 = model.Data[2];
  260. [cell.cellImagV3 sd_setImageWithURL:[NSURL URLWithString:subModel2.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  261. TopicListSubModel * subModel3 = model.Data[3];
  262. [cell.cellImagV4 sd_setImageWithURL:[NSURL URLWithString:subModel3.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  263. TopicListSubModel * subModel4 = model.Data[4];
  264. [cell.cellImagV5 sd_setImageWithURL:[NSURL URLWithString:subModel4.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  265. }
  266. break;
  267. case 6:
  268. {
  269. cell = [TDGroupInfoListCell configCell4:tableView indexPath:indexPath];
  270. cell.cellImagV1.hidden = NO;
  271. cell.cellImagV2.hidden = NO;
  272. cell.cellImagV3.hidden = NO;
  273. cell.cellImagV4.hidden = NO;
  274. cell.cellImagV5.hidden = NO;
  275. cell.cellImagV6.hidden = NO;
  276. cell.cellImagV7.hidden = YES;
  277. cell.cellImagV8.hidden = YES;
  278. cell.cellImagV9.hidden = YES;
  279. TopicListSubModel * subModel0 = model.Data[0];
  280. [cell.cellImagV1 sd_setImageWithURL:[NSURL URLWithString:subModel0.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  281. TopicListSubModel * subModel1 = model.Data[1];
  282. [cell.cellImagV2 sd_setImageWithURL:[NSURL URLWithString:subModel1.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  283. TopicListSubModel * subModel2 = model.Data[2];
  284. [cell.cellImagV3 sd_setImageWithURL:[NSURL URLWithString:subModel2.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  285. TopicListSubModel * subModel3 = model.Data[3];
  286. [cell.cellImagV4 sd_setImageWithURL:[NSURL URLWithString:subModel3.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  287. TopicListSubModel * subModel4 = model.Data[4];
  288. [cell.cellImagV5 sd_setImageWithURL:[NSURL URLWithString:subModel4.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  289. TopicListSubModel * subModel5 = model.Data[5];
  290. [cell.cellImagV6 sd_setImageWithURL:[NSURL URLWithString:subModel5.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  291. }
  292. break;
  293. case 7:
  294. {
  295. cell = [TDGroupInfoListCell configCell5:tableView indexPath:indexPath];
  296. cell.cellImagV1.hidden = NO;
  297. cell.cellImagV2.hidden = NO;
  298. cell.cellImagV3.hidden = NO;
  299. cell.cellImagV4.hidden = NO;
  300. cell.cellImagV5.hidden = NO;
  301. cell.cellImagV6.hidden = NO;
  302. cell.cellImagV7.hidden = NO;
  303. cell.cellImagV8.hidden = YES;
  304. cell.cellImagV9.hidden = YES;
  305. TopicListSubModel * subModel0 = model.Data[0];
  306. [cell.cellImagV1 sd_setImageWithURL:[NSURL URLWithString:subModel0.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  307. TopicListSubModel * subModel1 = model.Data[1];
  308. [cell.cellImagV2 sd_setImageWithURL:[NSURL URLWithString:subModel1.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  309. TopicListSubModel * subModel2 = model.Data[2];
  310. [cell.cellImagV3 sd_setImageWithURL:[NSURL URLWithString:subModel2.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  311. TopicListSubModel * subModel3 = model.Data[3];
  312. [cell.cellImagV4 sd_setImageWithURL:[NSURL URLWithString:subModel3.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  313. TopicListSubModel * subModel4 = model.Data[4];
  314. [cell.cellImagV5 sd_setImageWithURL:[NSURL URLWithString:subModel4.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  315. TopicListSubModel * subModel5 = model.Data[5];
  316. [cell.cellImagV6 sd_setImageWithURL:[NSURL URLWithString:subModel5.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  317. TopicListSubModel * subModel6 = model.Data[6];
  318. [cell.cellImagV7 sd_setImageWithURL:[NSURL URLWithString:subModel6.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  319. }
  320. break;
  321. case 8:
  322. {
  323. cell = [TDGroupInfoListCell configCell5:tableView indexPath:indexPath];
  324. cell.cellImagV1.hidden = NO;
  325. cell.cellImagV2.hidden = NO;
  326. cell.cellImagV3.hidden = NO;
  327. cell.cellImagV4.hidden = NO;
  328. cell.cellImagV5.hidden = NO;
  329. cell.cellImagV6.hidden = NO;
  330. cell.cellImagV7.hidden = NO;
  331. cell.cellImagV8.hidden = NO;
  332. cell.cellImagV9.hidden = YES;
  333. TopicListSubModel * subModel0 = model.Data[0];
  334. [cell.cellImagV1 sd_setImageWithURL:[NSURL URLWithString:subModel0.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  335. TopicListSubModel * subModel1 = model.Data[1];
  336. [cell.cellImagV2 sd_setImageWithURL:[NSURL URLWithString:subModel1.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  337. TopicListSubModel * subModel2 = model.Data[2];
  338. [cell.cellImagV3 sd_setImageWithURL:[NSURL URLWithString:subModel2.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  339. TopicListSubModel * subModel3 = model.Data[3];
  340. [cell.cellImagV4 sd_setImageWithURL:[NSURL URLWithString:subModel3.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  341. TopicListSubModel * subModel4 = model.Data[4];
  342. [cell.cellImagV5 sd_setImageWithURL:[NSURL URLWithString:subModel4.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  343. TopicListSubModel * subModel5 = model.Data[5];
  344. [cell.cellImagV6 sd_setImageWithURL:[NSURL URLWithString:subModel5.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  345. TopicListSubModel * subModel6 = model.Data[6];
  346. [cell.cellImagV7 sd_setImageWithURL:[NSURL URLWithString:subModel6.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  347. TopicListSubModel * subModel7 = model.Data[7];
  348. [cell.cellImagV8 sd_setImageWithURL:[NSURL URLWithString:subModel7.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  349. }
  350. break;
  351. default:
  352. {
  353. cell = [TDGroupInfoListCell configCell5:tableView indexPath:indexPath];
  354. cell.cellImagV1.hidden = NO;
  355. cell.cellImagV2.hidden = NO;
  356. cell.cellImagV3.hidden = NO;
  357. cell.cellImagV4.hidden = NO;
  358. cell.cellImagV5.hidden = NO;
  359. cell.cellImagV6.hidden = NO;
  360. cell.cellImagV7.hidden = NO;
  361. cell.cellImagV8.hidden = NO;
  362. cell.cellImagV9.hidden = NO;
  363. TopicListSubModel * subModel0 = model.Data[0];
  364. [cell.cellImagV1 sd_setImageWithURL:[NSURL URLWithString:subModel0.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  365. TopicListSubModel * subModel1 = model.Data[1];
  366. [cell.cellImagV2 sd_setImageWithURL:[NSURL URLWithString:subModel1.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  367. TopicListSubModel * subModel2 = model.Data[2];
  368. [cell.cellImagV3 sd_setImageWithURL:[NSURL URLWithString:subModel2.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  369. TopicListSubModel * subModel3 = model.Data[3];
  370. [cell.cellImagV4 sd_setImageWithURL:[NSURL URLWithString:subModel3.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  371. TopicListSubModel * subModel4 = model.Data[4];
  372. [cell.cellImagV5 sd_setImageWithURL:[NSURL URLWithString:subModel4.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  373. TopicListSubModel * subModel5 = model.Data[5];
  374. [cell.cellImagV6 sd_setImageWithURL:[NSURL URLWithString:subModel5.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  375. TopicListSubModel * subModel6 = model.Data[6];
  376. [cell.cellImagV7 sd_setImageWithURL:[NSURL URLWithString:subModel6.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  377. TopicListSubModel * subModel7 = model.Data[7];
  378. [cell.cellImagV8 sd_setImageWithURL:[NSURL URLWithString:subModel7.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  379. TopicListSubModel * subModel8 = model.Data[8];
  380. [cell.cellImagV9 sd_setImageWithURL:[NSURL URLWithString:subModel8.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  381. }
  382. break;
  383. }
  384. [cell.cellIconV sd_setImageWithURL:[NSURL URLWithString:model.AvatarUrl] placeholderImage:kUserDefaultHeadImage];
  385. [cell.fileBtn setTitle:model.FolderResult.FolderName forState:UIControlStateNormal];
  386. [cell.fileBtn setAction:^{
  387. [weakSelf enterFileWithModel:model];
  388. }];
  389. cell.ClickUserBlock = ^{
  390. [weakSelf showUserInfo:model.UserId];
  391. };
  392. cell.cellTimeL.text = [model.CreatedDate substringWithRange:NSMakeRange(5, 11)];
  393. cell.celltitleL.attributedText = [self setTitleWithStr:model.Title];
  394. cell.cellContentL.attributedText = [self setTextWithStr:model.Content];
  395. cell.cellNameL.text = model.UserName;
  396. cell.cellReadNumL.text = [NSString stringWithFormat:@"阅读:%ld",(long)model.ReadCount];
  397. [cell.cellLikeBtn setAction:^{
  398. [weakSelf likeAction:model withBtn:cell.cellLikeBtn index:indexPath];
  399. }];
  400. if (model.CommentCount > 0) {
  401. [cell.cellPingBtn setTitle:[NSString stringWithFormat:@"%ld",(long)model.CommentCount] forState:UIControlStateNormal];
  402. }else{
  403. [cell.cellPingBtn setTitle:@"评论" forState:UIControlStateNormal];
  404. }
  405. if (model.PraiseCount > 0) {
  406. [cell.cellLikeBtn setTitle:[NSString stringWithFormat:@"%ld",(long)model.PraiseCount] forState:UIControlStateNormal];
  407. }else{
  408. [cell.cellLikeBtn setTitle:@"赞" forState:UIControlStateNormal];
  409. }
  410. if (model.IsPraise) {
  411. [cell.cellLikeBtn setTitleColor:UIColorHex(#009AFF) forState:UIControlStateNormal];
  412. [cell.cellLikeBtn setImage:[UIImage imageNamed:@"收藏_赞_select"] forState:UIControlStateNormal];
  413. }else{
  414. [cell.cellLikeBtn setTitleColor:UIColorHex(#999999) forState:UIControlStateNormal];
  415. [cell.cellLikeBtn setImage:[UIImage imageNamed:@"收藏_赞"] forState:UIControlStateNormal];
  416. }
  417. [cell.cellPingBtn setAction:^{
  418. [weakSelf CommentPush:model];
  419. }];
  420. [cell.cellSendBtn setAction:^{
  421. [weakSelf reSend:model];
  422. }];
  423. if (model.Title.length == 0) {
  424. cell.TitleConstant.constant = 0;
  425. }else{
  426. cell.TitleConstant.constant = 10.f;
  427. }
  428. if (model.Content.length == 0) {
  429. cell.subTitleContant.constant = 0.f;
  430. }else{
  431. cell.subTitleContant.constant = 7.5f;
  432. }
  433. cell.fileContant.constant = 0.f;
  434. return cell;
  435. }
  436. break;
  437. case TopiclistCellFile:
  438. {
  439. TDGroupInfoListCell * cell = [TDGroupInfoListCell configCell6:tableView indexPath:indexPath];
  440. [cell.cellIconV sd_setImageWithURL:[NSURL URLWithString:model.AvatarUrl] placeholderImage:kUserDefaultHeadImage];
  441. [cell.fileBtn setTitle:model.FolderResult.FolderName forState:UIControlStateNormal];
  442. [cell.fileBtn setAction:^{
  443. [weakSelf enterFileWithModel:model];
  444. }];
  445. [cell.ClickFileAction setAction:^{
  446. [weakSelf pushFileWithModel:model.Data.firstObject];
  447. }];
  448. cell.cellNameL.text = model.UserName;
  449. cell.cellTimeL.text = [model.CreatedDate substringWithRange:NSMakeRange(5, 11)];
  450. cell.celltitleL.attributedText = [self setTitleWithStr:model.Title];
  451. cell.cellContentL.attributedText = [self setTextWithStr:model.Content];
  452. [cell setDataWithCell6:model.Data.firstObject];
  453. cell.cellReadNumL.text = [NSString stringWithFormat:@"阅读:%ld",(long)model.ReadCount];
  454. [cell.cellLikeBtn setAction:^{
  455. [weakSelf likeAction:model withBtn:cell.cellLikeBtn index:indexPath];
  456. }];
  457. if (model.CommentCount > 0) {
  458. [cell.cellPingBtn setTitle:[NSString stringWithFormat:@"%ld",(long)model.CommentCount] forState:UIControlStateNormal];
  459. }else{
  460. [cell.cellPingBtn setTitle:@"评论" forState:UIControlStateNormal];
  461. }
  462. if (model.PraiseCount > 0) {
  463. [cell.cellLikeBtn setTitle:[NSString stringWithFormat:@"%ld",(long)model.PraiseCount] forState:UIControlStateNormal];
  464. }else{
  465. [cell.cellLikeBtn setTitle:@"赞" forState:UIControlStateNormal];
  466. }
  467. if (model.IsPraise) {
  468. [cell.cellLikeBtn setTitleColor:UIColorHex(#009AFF) forState:UIControlStateNormal];
  469. [cell.cellLikeBtn setImage:[UIImage imageNamed:@"收藏_赞_select"] forState:UIControlStateNormal];
  470. }else{
  471. [cell.cellLikeBtn setTitleColor:UIColorHex(#999999) forState:UIControlStateNormal];
  472. [cell.cellLikeBtn setImage:[UIImage imageNamed:@"收藏_赞"] forState:UIControlStateNormal];
  473. }
  474. [cell.cellPingBtn setAction:^{
  475. [weakSelf CommentPush:model];
  476. }];
  477. [cell.cellSendBtn setAction:^{
  478. [weakSelf reSend:model];
  479. }];
  480. if (model.Title.length == 0) {
  481. cell.TitleConstant.constant = 0;
  482. }else{
  483. cell.TitleConstant.constant = 10.f;
  484. }
  485. if (model.Content.length == 0) {
  486. cell.subTitleContant.constant = 0.f;
  487. }else{
  488. cell.subTitleContant.constant = 7.5f;
  489. }
  490. cell.ClickUserBlock = ^{
  491. [weakSelf showUserInfo:model.UserId];
  492. };
  493. return cell;
  494. }
  495. break;
  496. default:///TopiclistCellNone
  497. {
  498. TDGroupInfoListCell * cell = [TDGroupInfoListCell configCell0:tableView indexPath:indexPath];
  499. [cell.cellIconV sd_setImageWithURL:[NSURL URLWithString:model.AvatarUrl] placeholderImage:kUserDefaultHeadImage];
  500. [cell.fileBtn setTitle:model.FolderResult.FolderName forState:UIControlStateNormal];
  501. [cell.fileBtn setAction:^{
  502. [weakSelf enterFileWithModel:model];
  503. }];
  504. cell.cellNameL.text = model.UserName;
  505. cell.cellTimeL.text = [model.CreatedDate substringWithRange:NSMakeRange(5, 11)];
  506. cell.celltitleL.attributedText = [self setTitleWithStr:model.Title];
  507. cell.cellContentL.attributedText = [self setTextWithStr:model.Content];
  508. cell.cellReadNumL.text = [NSString stringWithFormat:@"阅读:%ld",(long)model.ReadCount];
  509. [cell.cellLikeBtn setAction:^{
  510. [weakSelf likeAction:model withBtn:cell.cellLikeBtn index:indexPath];
  511. }];
  512. if (model.CommentCount > 0) {
  513. [cell.cellPingBtn setTitle:[NSString stringWithFormat:@"%ld",(long)model.CommentCount] forState:UIControlStateNormal];
  514. }else{
  515. [cell.cellPingBtn setTitle:@"评论" forState:UIControlStateNormal];
  516. }
  517. if (model.PraiseCount > 0) {
  518. [cell.cellLikeBtn setTitle:[NSString stringWithFormat:@"%ld",(long)model.PraiseCount] forState:UIControlStateNormal];
  519. }else{
  520. [cell.cellLikeBtn setTitle:@"赞" forState:UIControlStateNormal];
  521. }
  522. if (model.IsPraise) {
  523. [cell.cellLikeBtn setTitleColor:UIColorHex(#009AFF) forState:UIControlStateNormal];
  524. [cell.cellLikeBtn setImage:[UIImage imageNamed:@"收藏_赞_select"] forState:UIControlStateNormal];
  525. }else{
  526. [cell.cellLikeBtn setTitleColor:UIColorHex(#999999) forState:UIControlStateNormal];
  527. [cell.cellLikeBtn setImage:[UIImage imageNamed:@"收藏_赞"] forState:UIControlStateNormal];
  528. }
  529. [cell.cellPingBtn setAction:^{
  530. [weakSelf CommentPush:model];
  531. }];
  532. [cell.cellSendBtn setAction:^{
  533. [weakSelf reSend:model];
  534. }];
  535. if (model.Title.length == 0) {
  536. cell.TitleConstant.constant = 0;
  537. }else{
  538. cell.TitleConstant.constant = 10.f;
  539. }
  540. if (model.Content.length == 0) {
  541. cell.subTitleContant.constant = 0.f;
  542. }else{
  543. cell.subTitleContant.constant = 7.5f;
  544. }
  545. cell.ClickUserBlock = ^{
  546. [weakSelf showUserInfo:model.UserId];
  547. };
  548. return cell;
  549. }
  550. break;
  551. }
  552. }
  553. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
  554. [tableView deselectRowAtIndexPath:indexPath animated:YES];
  555. }
  556. - (void)enterFileWithModel:(TopicListItemModel *)model
  557. {
  558. if (model.UserId == [AppUserModel sharedAppUserModel].Id) {
  559. NoteBookVC *vc = [NoteBookVC initNoteBookVC];
  560. vc.listType = MyFavoriteListLevelTypeB;
  561. vc.FolderId = model.FolderResult.Id;
  562. vc.ParentId = model.FolderResult.Id;
  563. vc.myTitle = model.FolderResult.FolderName;
  564. vc.VisitUserId = model.UserId;
  565. [self.navigationController pushViewController:vc animated:YES];
  566. }else{
  567. OtherNoteBookVC *vc = [OtherNoteBookVC initOtherNoteBookVC];
  568. vc.listType = MyFavoriteListLevelTypeB;
  569. vc.FolderId = model.FolderResult.Id;
  570. vc.Author = model.UserName;
  571. vc.myTitle = model.FolderResult.FolderName;
  572. vc.VisitUserId = model.UserId;
  573. [self.navigationController pushViewController:vc animated:YES];
  574. }
  575. }
  576. - (void)showUserInfo:(NSInteger)userId
  577. {
  578. MailListDetailVC * vc = [MailListDetailVC initMailListDetailVC];
  579. vc.indexId = userId;
  580. [self.navigationController pushViewController:vc animated:YES];
  581. }
  582. #pragma mark - 点击评论
  583. - (void)likeAction:(TopicListItemModel *)model withBtn:(UIButton *)btn index:(NSIndexPath *)indexPath
  584. {
  585. WS(weakSelf);
  586. NSDictionary * paraDict = @{@"SourceId":@(model.Id),
  587. @"TypeValue":@(3),///3 笔记
  588. @"AnalyzeType":@(1)
  589. };
  590. btn.enabled = NO;
  591. [[HttpManager sharedHttpManager] POSTUrl:Host(API_APP_Analyze_Set) parameters:paraDict responseStyle:DATA success:^(id _Nonnull responseObject) {
  592. btn.enabled = YES;
  593. model.IsPraise = !model.IsPraise;
  594. model.PraiseCount = model.IsPraise ? (model.PraiseCount + 1) : (model.PraiseCount - 1);
  595. dispatch_async(dispatch_get_main_queue(), ^{
  596. [weakSelf.tableView reloadRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationNone];
  597. });
  598. } failure:^(NSError * _Nonnull error) {
  599. btn.enabled = YES;
  600. }];
  601. }
  602. - (void)CommentPush:(TopicListItemModel *)model
  603. {
  604. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  605. vc.type = CollectModel_NewTopic;
  606. vc.deleteTopicBlock = ^{
  607. };
  608. vc.Id = model.Id;
  609. vc.isComment = YES;
  610. [self.navigationController pushViewController:vc animated:YES];
  611. }
  612. - (void)reSend:(TopicListItemModel *)model
  613. {
  614. FlowAttachmentsModel * topicModel = [[FlowAttachmentsModel alloc] init];
  615. topicModel.SoureTypeId = CollectModel_NewTopic;
  616. topicModel.Title = model.Title;
  617. topicModel.SoureId = model.Id;
  618. topicModel.Title = model.Title;
  619. topicModel.Author = model.UserName;
  620. self.sendModel = topicModel;
  621. [self.noteBookShareVC initNoteBookShareData];
  622. self.noteBookShareVC.view.hidden = !self.noteBookShareVC.view.hidden;
  623. }
  624. - (NoteBookShareVC *)noteBookShareVC{
  625. if (_noteBookShareVC == nil) {
  626. _noteBookShareVC = [NoteBookShareVC initNoteBookShareVC];
  627. [_noteBookShareVC.view setFrame:CGRectMake(0,0, SCREEN_WIDTH, SCREEN_HEIGHT)];
  628. [_noteBookShareVC.view setHidden:YES];
  629. _noteBookShareVC.delegate = self;
  630. }
  631. return _noteBookShareVC;
  632. }
  633. - (void)userSelectType:(NSString *)typeName WithIndexPath:(NSIndexPath *)indexPath
  634. {
  635. self.noteBookShareVC.view.hidden = !self.noteBookShareVC.view.hidden;
  636. if ([typeName isEqualToString:@"发给微信好友"]) {
  637. [self returnToWechatSession];
  638. }else if ([typeName isEqualToString:@"发到朋友圈"]){
  639. [self returnToWechatTimeLine];
  640. }else if ([typeName isEqualToString:@"发到微博"]){
  641. [self returnToSina];
  642. }else if ([typeName isEqualToString:@"发给QQ好友"]){
  643. [self returnToQQ];
  644. }else if ([typeName isEqualToString:@"发到消息"]){
  645. [self returnToMessage];
  646. }else if ([typeName isEqualToString:@"发到小组"]){
  647. [self returnToGroup];
  648. }else if ([typeName isEqualToString:@"发到笔记"]){
  649. [self returnToNote];
  650. }else if ([typeName isEqualToString:@"发到话题"]){
  651. [self returnToTopic];
  652. }else{
  653. }
  654. }
  655. - (void)shareWebPageToPlatformType:(UMSocialPlatformType)platformType title:(NSString *)title desc:(NSString *)desc url:(NSString *)url
  656. {
  657. //创建分享消息对象
  658. UMSocialMessageObject *messageObject = [UMSocialMessageObject messageObject];
  659. messageObject.title = title;
  660. //创建网页内容对象
  661. UMShareWebpageObject *shareObject = [UMShareWebpageObject shareObjectWithTitle:title descr:desc thumImage:IMG(@"logo_60")];
  662. //设置网页地址
  663. shareObject.webpageUrl = url;
  664. //分享消息对象设置分享内容对象
  665. messageObject.shareObject = shareObject;
  666. //调用分享接口
  667. [[UMSocialManager defaultManager] shareToPlatform:platformType messageObject:messageObject currentViewController:self completion:^(id data, NSError *error) {
  668. if (error) {
  669. NSLog(@"************Share fail with error %@*********",error);
  670. }else{
  671. NSLog(@"response data is %@",data);
  672. }
  673. }];
  674. }
  675. - (void)returnToWechatSession
  676. {
  677. [self shareWebPageToPlatformType:UMSocialPlatformType_WechatSession title:self.sendModel.Title desc:[NSString stringWithFormat:@"来自-%@",self.sendModel.Author] url:[self returnUrl]];
  678. }
  679. - (void)returnToWechatTimeLine
  680. {
  681. [self shareWebPageToPlatformType:UMSocialPlatformType_WechatTimeLine title:self.sendModel.Title desc:[NSString stringWithFormat:@"来自-%@",self.sendModel.Author] url:[self returnUrl]];
  682. }
  683. - (void)returnToSina
  684. {
  685. [self shareWebPageToPlatformType:UMSocialPlatformType_Sina title:self.sendModel.Title desc:[NSString stringWithFormat:@"来自-%@",self.sendModel.Author] url:[self returnUrl]];
  686. }
  687. - (void)returnToQQ
  688. {
  689. [self shareWebPageToPlatformType:UMSocialPlatformType_QQ title:self.sendModel.Title desc:[NSString stringWithFormat:@"来自-%@",self.sendModel.Author] url:[self returnUrl]];
  690. }
  691. - (NSString *)returnUrl
  692. {
  693. NSString * url = [NSString stringWithFormat:@"%@%ld",Host(@"/admin/mobile/noteDetailsWx?"),(long)self.sendModel.Id];
  694. return url;
  695. }
  696. #pragma mark - 分享功能
  697. - (void)returnToMessage
  698. {
  699. ShareListVC * vc = [ShareListVC initShareListVC];
  700. vc.sendModel = self.sendModel;
  701. vc.isReturn = YES;
  702. [self.navigationController pushViewController:vc animated:YES];
  703. }
  704. - (void)returnToGroup
  705. {
  706. MyTDGroupViewController * vc = [[MyTDGroupViewController alloc] init];
  707. vc.type = CollectModel_Group;
  708. vc.sendModel = self.sendModel;
  709. vc.isReturn = YES;
  710. [self.navigationController pushViewController:vc animated:YES];
  711. }
  712. - (void)returnToNote
  713. {
  714. MyTDTopicCreateVC * vc = [MyTDTopicCreateVC initMyTDTopicCreateVC];
  715. vc.type = CollectModel_NoteBook;
  716. vc.sendModel = self.sendModel;
  717. vc.isReturn = YES;
  718. [self.navigationController pushViewController:vc animated:YES];
  719. }
  720. - (void)returnToTopic
  721. {
  722. MyTDTopicCreateVC * vc = [MyTDTopicCreateVC initMyTDTopicCreateVC];
  723. vc.type = CollectModel_NewTopic;
  724. vc.sendModel = self.sendModel;
  725. vc.isReturn = YES;
  726. [self.navigationController pushViewController:vc animated:YES];
  727. }
  728. #pragma mark - 点击文件跳转
  729. - (void)pushFileWithModel:(TopicListSubModel *)model
  730. {
  731. WS(weakSelf);
  732. switch (model.Type) {
  733. case CollectModel_Aritle:
  734. {
  735. SHOWLOADING
  736. [[HttpManager sharedHttpManager] GETWithUrl:[NSString stringWithFormat:@"%@%ld",Article_Detail_Get,(long)model.Id] parameters:@{} success:^(id _Nonnull responseObject) {
  737. REMOVESHOW;
  738. Item *itemModel = [[Item alloc]initWithDictionary:responseObject error:nil];
  739. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  740. vc.type = CollectModel_Aritle;
  741. vc.Id = itemModel.Id;
  742. [weakSelf.navigationController pushViewController:vc animated:YES];
  743. } failure:^(NSError * _Nonnull error) {
  744. SHOWERROR([ZYCTool handerResultData:error]);
  745. }];
  746. }
  747. break;
  748. case CollectModel_Toipc:
  749. {
  750. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  751. vc.type = CollectModel_Toipc;
  752. vc.Id = model.Id;
  753. [self.navigationController pushViewController:vc animated:YES];
  754. }
  755. break;
  756. case CollectModel_NewTopic:
  757. {
  758. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  759. vc.type = CollectModel_NewTopic;
  760. vc.Id = model.Id;
  761. [self.navigationController pushViewController:vc animated:YES];
  762. }
  763. break;
  764. case CollectModel_Collect:
  765. {
  766. }
  767. break;
  768. case CollectModel_NoteBook:
  769. {
  770. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  771. vc.type = CollectModel_NoteBook;
  772. vc.Id = model.Id;
  773. [self.navigationController pushViewController:vc animated:YES];
  774. }
  775. break;
  776. case CollectModel_CollectFile:{
  777. if (model.SourceUserId == [AppUserModel sharedAppUserModel].Id) {
  778. MyFavoriteVC *vc = [MyFavoriteVC initMyFavoriteVC];
  779. vc.listType = model.Id == 0 ? MyFavoriteListLevelTypeA : MyFavoriteListLevelTypeB;
  780. vc.ParentId = 0;
  781. vc.FolderId = model.Id;
  782. vc.myTitle = model.Title;
  783. [self.navigationController pushViewController:vc animated:YES];
  784. }else{
  785. OtherFavoriteVC *vc = [OtherFavoriteVC initOtherFavoriteVC];
  786. vc.listType = model.Id == 0 ? MyFavoriteListLevelTypeA : MyFavoriteListLevelTypeB;
  787. vc.ParentId = 0;
  788. vc.FolderId = model.Id;
  789. vc.myTitle = model.Title;
  790. vc.VisitUserId = model.SourceUserId;
  791. [self.navigationController pushViewController:vc animated:YES];
  792. }
  793. }break;
  794. case CollectModel_NoteFile:{
  795. if (model.SourceUserId == [AppUserModel sharedAppUserModel].Id) {
  796. NoteBookVC *vc = [NoteBookVC initNoteBookVC];
  797. vc.listType = model.Id == 0 ? MyFavoriteListLevelTypeA : MyFavoriteListLevelTypeB;
  798. vc.ParentId = 0;
  799. vc.FolderId = model.Id;
  800. vc.myTitle = model.Title;
  801. vc.VisitUserId = 0;
  802. [self.navigationController pushViewController:vc animated:YES];
  803. }else{
  804. OtherNoteBookVC *vc = [OtherNoteBookVC initOtherNoteBookVC];
  805. vc.listType = model.Id == 0 ? MyFavoriteListLevelTypeA : MyFavoriteListLevelTypeB;
  806. vc.ParentId = 0;
  807. vc.FolderId = model.Id;
  808. vc.myTitle = model.Title;
  809. vc.VisitUserId = model.SourceUserId;
  810. [self.navigationController pushViewController:vc animated:YES];
  811. }
  812. }break;
  813. case CollectModel_Notice:
  814. {
  815. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  816. vc.type = CollectModel_Notice;
  817. vc.Id = model.Id;
  818. [self.navigationController pushViewController:vc animated:YES];
  819. }
  820. break;
  821. case CollectModel_InterMail:
  822. {
  823. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  824. vc.type = CollectModel_InterMail;
  825. vc.Id = model.Id;
  826. [self.navigationController pushViewController:vc animated:YES];
  827. }
  828. break;
  829. case CollectModel_Group:
  830. {
  831. TDGroupInfoListVC * vc = [TDGroupInfoListVC initTDGroupInfoListVC];
  832. vc.GroupId = model.Id;
  833. vc.titleStr = model.Title;
  834. [self.navigationController pushViewController:vc animated:YES];
  835. }
  836. break;
  837. case CollectModel_meetMian:
  838. {
  839. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  840. vc.type = CollectModel_meetMian;
  841. vc.Id = model.Id;
  842. [self.navigationController pushViewController:vc animated:YES];
  843. }
  844. break;
  845. case CollectModel_meetDetail:
  846. {
  847. WorkFlowDetailsController * vc = [[WorkFlowDetailsController alloc] initWithId:model.Id];
  848. [self.navigationController pushViewController:vc animated:YES];
  849. }
  850. break;
  851. case CollectModel_work:
  852. {
  853. MyApprovalPageDetail * vc = [[MyApprovalPageDetail alloc]init];
  854. vc.pageType = Type_ONEC;
  855. vc.indexId = model.Id;
  856. vc.title = model.Title;
  857. vc.TodoId = model.Id;
  858. [self.navigationController pushViewController:vc animated:YES];
  859. }
  860. break;
  861. default:
  862. {
  863. DownFileViewController *vc = [[DownFileViewController alloc]init];
  864. FlowAttachmentsModel * fmodel = [[FlowAttachmentsModel alloc] init];
  865. fmodel.SoureId = model.Id;
  866. fmodel.Title = model.Title;
  867. fmodel.Url = model.File;
  868. vc.model = fmodel;
  869. [self.navigationController pushViewController:vc animated:YES];
  870. }
  871. break;
  872. }
  873. }
  874. - (void)pushSearchVC
  875. {
  876. MyTDTopicSearchVC * vc = [[MyTDTopicSearchVC alloc] init];
  877. vc.searchType = TDTopicSearch;
  878. [self.navigationController pushViewController:vc animated:YES];
  879. }
  880. - (NSAttributedString *)setTextWithStr:(NSString *)str
  881. {
  882. NSMutableAttributedString *attributedString = [[NSMutableAttributedString alloc] initWithString:str];
  883. [attributedString addAttribute:NSFontAttributeName value:[UIFont fontWithName:@"PingFang SC" size:16] range:NSMakeRange(0, str.length)];
  884. [attributedString addAttribute:NSForegroundColorAttributeName value:UIColorHex(#484848) range:NSMakeRange(0, str.length)];
  885. NSMutableParagraphStyle *paraStyle = [[NSMutableParagraphStyle alloc]init];
  886. paraStyle.alignment = NSTextAlignmentJustified;//两端对齐
  887. [paraStyle setLineSpacing:5];//行间距
  888. [attributedString addAttribute:NSParagraphStyleAttributeName value:paraStyle range:NSMakeRange(0, str.length)];
  889. [attributedString addAttribute:NSUnderlineStyleAttributeName value:[NSNumber numberWithInteger:NSUnderlineStyleNone] range:NSMakeRange(0, str.length)];
  890. return attributedString;
  891. }
  892. - (NSAttributedString *)setTitleWithStr:(NSString *)str
  893. {
  894. NSMutableAttributedString *attributedString = [[NSMutableAttributedString alloc] initWithString:str];
  895. [attributedString addAttribute:NSFontAttributeName value:[UIFont systemFontOfSize:18] range:NSMakeRange(0, str.length)];
  896. [attributedString addAttribute:NSForegroundColorAttributeName value:UIColorHex(0x0a0a0a) range:NSMakeRange(0, str.length)];
  897. NSMutableParagraphStyle *paraStyle = [[NSMutableParagraphStyle alloc]init];
  898. paraStyle.alignment = NSTextAlignmentJustified;//两端对齐
  899. [paraStyle setLineSpacing:5];//行间距
  900. [attributedString addAttribute:NSParagraphStyleAttributeName value:paraStyle range:NSMakeRange(0, str.length)];
  901. [attributedString addAttribute:NSUnderlineStyleAttributeName value:[NSNumber numberWithInteger:NSUnderlineStyleNone] range:NSMakeRange(0, str.length)];
  902. return attributedString;
  903. }
  904. #pragma mark - Load On Demand
  905. - (NSMutableArray *)dataArray
  906. {
  907. if (!_dataArray) {
  908. _dataArray = [NSMutableArray array];
  909. }
  910. return _dataArray;
  911. }
  912. - (MyTDGroupView *)SearchView
  913. {
  914. if (!_SearchView) {
  915. _SearchView = [[MyTDGroupView alloc] initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, 36)];
  916. }
  917. return _SearchView;
  918. }
  919. - (UIView *)groupView
  920. {
  921. if (!_groupView) {
  922. _groupView = [UIView new];
  923. }
  924. return _groupView;
  925. }
  926. @end