// // OrderCell.h // jiaPei // // Created by apple on 16/6/7. // Copyright © 2016年 JCZ. All rights reserved. // #import @interface OrderCell : UITableViewCell { UILabel *orderNumLabel; UILabel *lineLabel; UILabel *nameLabel; UILabel *beginTimeLabel; UILabel *endTimeLabel; UILabel *priceLabel; UILabel *staticLabel; UIButton *lookBtn;//评论/投诉 UIButton *orbitBtn;//轨迹 MyBlockType payBlock; } @property (nonatomic, strong) NSString *type;//订单状态 0 进行中 1 待支付 2 待评价/投诉 3 交易完成 4 投诉中 @property (nonatomic, strong) UIViewController *skipVC; @property (nonatomic, strong) NSDictionary *dataDic; + (OrderCell *)cellForTabelView:(UITableView*)tableView; - (void)payClickToBlock:(MyBlockType)block; @end