| 1234567891011121314151617181920212223 |
- //
- // OrderHomeViewController.h
- // IBOSSmini
- //
- // Created by guan hong hou on 2017/5/16.
- // Copyright © 2017年 elongtian. All rights reserved.
- //
- #import "BaseViewController.h"
- #import "ProductSearchViewController.h"
- #import "HistoryOrderViewController.h"
- #import "BusinessInfoViewController.h"
- @interface OrderHomeViewController : BaseViewController<UIScrollViewDelegate,UIGestureRecognizerDelegate>
- @property (nonatomic , assign) NSInteger currentIndex;//当前索引
- @property (nonatomic,strong) UIButton *productSearchButton;//订单搜索按钮
- @property (nonatomic,strong) UIButton *historyOrderButton;//历史订单按钮
- @property (nonatomic,strong) ProductSearchViewController *searchVC;//订单搜索控制器
- @property (nonatomic,strong) HistoryOrderViewController *historyOrderVC;//历史订单控制器
- @property (nonatomic,strong) UIScrollView *mainScrollView;//scroll view
- @property (nonatomic,strong) UILabel *sliderLabel;//滑动块
- @property(weak)UIViewController *parentVC;//父视图控制器
- @end
|