| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- //
- // GoodsKindViewController.h
- // IBOSS
- //
- // Created by guan hong hou on 2017/9/8.
- // Copyright © 2017年 elongtian. All rights reserved.
- //
- // 功能描述:产品种类树型控制器
- #import "BaseViewController.h"
- #import "CustomerReportTextProtocol.h"
- @interface GoodsKindViewController : BaseViewController<UITableViewDelegate,UITableViewDataSource,CustomerReportTextProtocol>
- @property (nonatomic,strong) ASIDownManager *downManager;
- /**
- 查询结果数据
- */
- @property (strong,nonatomic) NSMutableArray *arrSearch;
- /**
- 树型数组
- */
- @property (strong,nonatomic) NSMutableArray *treeArray;
- /**
- 商品种类协议
- */
- @property (nonatomic,weak) id<CustomerReportTextProtocol> cDelegate;
- /**
- 种类id数组
- */
- @property (strong,nonatomic) NSMutableArray *kindIdResultArray;
- /**
- 种类名称数组
- */
- @property (strong,nonatomic) NSMutableArray *kindNameResultArray;
- /**
- 种类table view
- */
- @property(nonatomic,strong) UITableView *kindTableView;
- /**
- 视图控制器展示方式
- */
- @property (assign,nonatomic) BOOL isPresentViewFlag;
- @end
|