GoodsKindViewController.h 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. //
  2. // GoodsKindViewController.h
  3. // IBOSS
  4. //
  5. // Created by guan hong hou on 2017/9/8.
  6. // Copyright © 2017年 elongtian. All rights reserved.
  7. //
  8. // 功能描述:产品种类树型控制器
  9. #import "BaseViewController.h"
  10. #import "CustomerReportTextProtocol.h"
  11. @interface GoodsKindViewController : BaseViewController<UITableViewDelegate,UITableViewDataSource,CustomerReportTextProtocol>
  12. @property (nonatomic,strong) ASIDownManager *downManager;
  13. /**
  14. 查询结果数据
  15. */
  16. @property (strong,nonatomic) NSMutableArray *arrSearch;
  17. /**
  18. 树型数组
  19. */
  20. @property (strong,nonatomic) NSMutableArray *treeArray;
  21. /**
  22. 商品种类协议
  23. */
  24. @property (nonatomic,weak) id<CustomerReportTextProtocol> cDelegate;
  25. /**
  26. 种类id数组
  27. */
  28. @property (strong,nonatomic) NSMutableArray *kindIdResultArray;
  29. /**
  30. 种类名称数组
  31. */
  32. @property (strong,nonatomic) NSMutableArray *kindNameResultArray;
  33. /**
  34. 种类table view
  35. */
  36. @property(nonatomic,strong) UITableView *kindTableView;
  37. /**
  38. 视图控制器展示方式
  39. */
  40. @property (assign,nonatomic) BOOL isPresentViewFlag;
  41. @end