ImitateOrderCell.h 818 B

123456789101112131415161718192021222324252627282930313233343536
  1. //
  2. // ImitateOrderCell.h
  3. // jiaPei
  4. //
  5. // Created by EchoShacolee on 2017/5/15.
  6. // Copyright © 2017年 JCZ. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface ImitateOrderCell : UITableViewCell
  10. {
  11. UILabel * orderNumLab;
  12. // UILabel * creatTimeLab;
  13. UILabel * yuyueDateLab;
  14. UILabel * moniTimeLab;
  15. UILabel * trainLineLab;
  16. UILabel * deviceLableLab;
  17. UILabel * allPriceLab;
  18. UILabel * lineLab;
  19. UIButton * payBtn;
  20. UIButton * cancleOrderBtn;
  21. }
  22. @property (nonatomic, assign)NSInteger type;
  23. @property (nonatomic, strong) UIViewController *skipVC;
  24. @property (nonatomic, strong) NSDictionary *dataDic;
  25. @property (nonatomic, copy) MyBlockType block;//cell btn处理成功回调
  26. +(ImitateOrderCell *)cellForTabelView:(UITableView*)tableView block:(MyBlockType)block;
  27. @end