| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- //
- // RepairReceiptHomeViewController.h
- // IBOSS
- //
- // Created by guan hong hou on 2017/7/10.
- // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
- //
- // 功能描述:维修回执主页控制器
- #import "BaseViewController.h"
- #import "RepairUnreceiptVC.h"
- #import "RepairReceiptedVC.h"
- @interface RepairReceiptHomeViewController : BaseViewController<UIScrollViewDelegate,UIGestureRecognizerDelegate>
- /**
- 当前索引
- */
- @property (nonatomic , assign) NSInteger currentIndex;
- /**
- 维修未回执按钮
- */
- @property (nonatomic,strong) UIButton *repairUnreceiptButton;
- /**
- 维修已回执按钮
- */
- @property (nonatomic,strong) UIButton *repairReceiptedButton;
- /**
- scrollview
- */
- @property (nonatomic,strong) UIScrollView *mainScrollView;
- /**
- 滑动块
- */
- @property (nonatomic,strong) UILabel *sliderLabel;
- /**
- 维修未回执控制器
- */
- @property (nonatomic,strong) RepairUnreceiptVC *repairUnreceiptVC;
- /**
- 维修已回执控制器
- */
- @property (nonatomic,strong)RepairReceiptedVC *repairReceiptedVC;
- @end
|