OrderCell.h 834 B

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // OrderCell.h
  3. // jiaPei
  4. //
  5. // Created by apple on 16/6/7.
  6. // Copyright © 2016年 JCZ. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface OrderCell : UITableViewCell
  10. {
  11. UILabel *orderNumLabel;
  12. UILabel *lineLabel;
  13. UILabel *nameLabel;
  14. UILabel *beginTimeLabel;
  15. UILabel *endTimeLabel;
  16. UILabel *priceLabel;
  17. UILabel *staticLabel;
  18. UIButton *lookBtn;//评论/投诉
  19. UIButton *orbitBtn;//轨迹
  20. MyBlockType payBlock;
  21. }
  22. @property (nonatomic, strong) NSString *type;//订单状态 0 进行中 1 待支付 2 待评价/投诉 3 交易完成 4 投诉中
  23. @property (nonatomic, strong) UIViewController *skipVC;
  24. @property (nonatomic, strong) NSDictionary *dataDic;
  25. + (OrderCell *)cellForTabelView:(UITableView*)tableView;
  26. - (void)payClickToBlock:(MyBlockType)block;
  27. @end