12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- //
- // OrderCell.h
- // jiaPei
- //
- // Created by apple on 16/6/7.
- // Copyright © 2016年 JCZ. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- typedef void (^ZZBlockType)(id,id);
- @interface OrderCell : UITableViewCell
- {
- UILabel *orderNumLabel;//订单编号
- UILabel *lineLabel;
-
- UILabel *beginTimeLabel;
- UILabel *endTimeLabel;
- UILabel *staticLabel;//订单状态
- UILabel *trainTimeLabel;//学时情况
- UILabel *priceLabel;//单价
- UILabel *totalPriceLabel;//总价
- UILabel *nameLabel;//名字
-
- UIButton *lookBtn;//评论/投诉
- UIButton *orbitBtn;//轨迹
-
- ZZBlockType 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:(ZZBlockType)block;
- @end
|