OrderCell.h 759 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. UILabel *contentLab;
  19. UIButton *orbitButton;
  20. UIButton *refershBtn;
  21. UIButton *commentBtn;
  22. UIButton *complainBtn;
  23. UIButton *payBtn;
  24. }
  25. @property (nonatomic, strong) NSString *type;
  26. @property (nonatomic, strong) UIViewController *skipVC;
  27. @property (nonatomic, strong) NSDictionary *dataDic;
  28. +(OrderCell *)cellForTabelView:(UITableView*)tableView;
  29. @end