| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- //
- // DeliveryRequirementHomeViewController.h
- // IBOSSHSH
- //
- // Created by ssl on 2018/1/12.
- // Copyright © 2018年 elongtian. All rights reserved.
- //
- #import "BaseViewController.h"
- #import "DeliveryUnreceiptListVC.h"
- #import "DeliveryReceiptedListVC.h"
- #import "PageSwitchView.h"
- #import "DispatchRequirementNoReceiptController.h"
- #import "DispatchRequirementReceiptController.h"
- @interface DispatchRequirementHomeViewController : BaseViewController<UIScrollViewDelegate,UIGestureRecognizerDelegate,FollowUpBrowseProtocol>
- /**
- 当前索引
- */
- @property (nonatomic , assign) NSInteger currentIndex;
- /**
- 未回执button
- */
- @property (nonatomic,strong) UIButton *deliveryUnreceiptButton;
- /**
- 已回执button
- */
- @property (nonatomic,strong) UIButton *deliveryReceiptedButton;
- /**
- scrollview
- */
- @property (nonatomic,strong) UIScrollView *mainScrollView;
- /**
- 滑动块
- */
- @property (nonatomic,strong) UILabel *sliderLabel;
- /**
- 配送未回执控制器
- */
- @property (nonatomic,strong) DispatchRequirementNoReceiptController *deliveryUnreceiptVC;
- /**
- 配送已回执控制器
- */
- @property (nonatomic,strong)DispatchRequirementReceiptController *deliveryReceiptVC;
- @property (nonatomic,strong) PageSwitchView *page;
- @end
|