OrderHomeViewController.h 1.0 KB

1234567891011121314151617181920212223
  1. //
  2. // OrderHomeViewController.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 "ProductSearchViewController.h"
  10. #import "HistoryOrderViewController.h"
  11. #import "BusinessInfoViewController.h"
  12. @interface OrderHomeViewController : BaseViewController<UIScrollViewDelegate,UIGestureRecognizerDelegate>
  13. @property (nonatomic , assign) NSInteger currentIndex;//当前索引
  14. @property (nonatomic,strong) UIButton *productSearchButton;//订单搜索按钮
  15. @property (nonatomic,strong) UIButton *historyOrderButton;//历史订单按钮
  16. @property (nonatomic,strong) ProductSearchViewController *searchVC;//订单搜索控制器
  17. @property (nonatomic,strong) HistoryOrderViewController *historyOrderVC;//历史订单控制器
  18. @property (nonatomic,strong) UIScrollView *mainScrollView;//scroll view
  19. @property (nonatomic,strong) UILabel *sliderLabel;//滑动块
  20. @property(weak)UIViewController *parentVC;//父视图控制器
  21. @end