123456789101112131415161718192021222324252627282930313233343536 |
- //
- // ImitateOrderCell.h
- // jiaPei
- //
- // Created by EchoShacolee on 2017/5/15.
- // Copyright © 2017年 JCZ. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface ImitateOrderCell : UITableViewCell
- {
- UILabel * orderNumLab;
- // UILabel * creatTimeLab;
- UILabel * yuyueDateLab;
- UILabel * moniTimeLab;
- UILabel * trainLineLab;
- UILabel * deviceLableLab;
- UILabel * allPriceLab;
- UILabel * lineLab;
-
- UIButton * payBtn;
- UIButton * cancleOrderBtn;
- }
- @property (nonatomic, assign)NSInteger type;
- @property (nonatomic, strong) UIViewController *skipVC;
- @property (nonatomic, strong) NSDictionary *dataDic;
- @property (nonatomic, copy) MyBlockType block;//cell btn处理成功回调
- +(ImitateOrderCell *)cellForTabelView:(UITableView*)tableView block:(MyBlockType)block;
- @end
|