HistoryOrderViewController.h 1.4 KB

1234567891011121314151617181920212223242526272829
  1. //
  2. // HistoryOrderViewController.h
  3. // IBOSSmini
  4. //
  5. // Created by guan hong hou on 2017/5/16.
  6. // Copyright © 2017年 elongtian. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. #import "OrderHomeViewController.h"
  10. #import "SideSlipFilterController.h"
  11. #import "HistoryOrderSearchModel.h"
  12. #import "OrderModel.h"
  13. #import "HistoryOrderDelegate.h"
  14. #define SEARCH_RANGE_MODEL @"SEARCH_RANGE_MODEL"
  15. #define IsiPhoneX ([UIScreen instancesRespondToSelector:@selector(currentMode)] ? CGSizeEqualToSize(CGSizeMake(1125, 2436), [[UIScreen mainScreen] currentMode].size) : NO)
  16. @interface HistoryOrderViewController : BaseViewController<UITableViewDelegate,UITableViewDataSource,HistoryOrderDelegate>
  17. @property (strong, nonatomic) UINavigationController *cNav;//父类导航控制器
  18. @property (strong, nonatomic) UIButton *btnSearch;//订单查询按钮
  19. @property (strong, nonatomic) SideSlipFilterController *filterController;//抽屉控制器
  20. @property(nonatomic,strong) ASIDownManager *mDownManager;//下载工具类
  21. @property (nonatomic,strong) HistoryOrderSearchModel *m;//历史订单搜索类
  22. @property(nonatomic,strong) NSMutableArray *orderArr;//历史订单数组
  23. @property(nonatomic,strong)OrderModel *cartModel;//订单model
  24. @property(nonatomic,strong) UITableView *tbView;//订单搜索结果tableview
  25. @property(nonatomic,strong) UIView *separatorView;
  26. @property (nonatomic,strong)MBProgressHUD *HUD;
  27. -(void)refreshData;
  28. @end