InventoryFreezeHomeViewController.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. //
  2. // InventoryFreezeHomeViewController.h
  3. // IBOSS
  4. //
  5. // Created by 关宏厚 on 2020/4/28.
  6. // Copyright © 2020 elongtian. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. #import "InventoryFreezeGoodsSearchViewController.h"
  10. #import "InventoryFrozenOrderViewController.h"
  11. @interface InventoryFreezeHomeViewController : BaseViewController<UIScrollViewDelegate,UIGestureRecognizerDelegate>
  12. /**
  13. 当前索引
  14. */
  15. @property (nonatomic , assign) NSInteger currentIndex;
  16. /**
  17. 商品搜索按钮
  18. */
  19. @property (nonatomic,strong) UIButton *productSearchButton;
  20. /**
  21. 冻结订单按钮
  22. */
  23. @property (nonatomic,strong) UIButton *frozenOrderButton;
  24. /**
  25. scroll view
  26. */
  27. @property (nonatomic,strong) UIScrollView *mainScrollView;
  28. /**
  29. 滑动块
  30. */
  31. @property (nonatomic,strong) UILabel *sliderLabel;
  32. /**
  33. 父视图控制器
  34. */
  35. @property (weak)UIViewController *parentVC;
  36. /**
  37. 产品搜索控制器
  38. */
  39. @property (nonatomic,strong) InventoryFreezeGoodsSearchViewController *goodsSearchVC;
  40. @property (nonatomic,strong) InventoryFrozenOrderViewController *orderSearchVC;
  41. @end