| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- //
- // InventoryFreezeHomeViewController.h
- // IBOSS
- //
- // Created by 关宏厚 on 2020/4/28.
- // Copyright © 2020 elongtian. All rights reserved.
- //
- #import "BaseViewController.h"
- #import "InventoryFreezeGoodsSearchViewController.h"
- #import "InventoryFrozenOrderViewController.h"
- @interface InventoryFreezeHomeViewController : BaseViewController<UIScrollViewDelegate,UIGestureRecognizerDelegate>
- /**
- 当前索引
- */
- @property (nonatomic , assign) NSInteger currentIndex;
- /**
- 商品搜索按钮
- */
- @property (nonatomic,strong) UIButton *productSearchButton;
- /**
- 冻结订单按钮
- */
- @property (nonatomic,strong) UIButton *frozenOrderButton;
- /**
- scroll view
- */
- @property (nonatomic,strong) UIScrollView *mainScrollView;
- /**
- 滑动块
- */
- @property (nonatomic,strong) UILabel *sliderLabel;
- /**
- 父视图控制器
- */
- @property (weak)UIViewController *parentVC;
- /**
- 产品搜索控制器
- */
- @property (nonatomic,strong) InventoryFreezeGoodsSearchViewController *goodsSearchVC;
- @property (nonatomic,strong) InventoryFrozenOrderViewController *orderSearchVC;
- @end
|