// // CardOrderInformationReusableView.h // // // Created by 曹云霄 on 2016/10/20. // // #import @protocol UploadReceiptsDelegate - (void)startUploadReceipts:(NSInteger)sectionIndex; @end @interface CardOrderInformationReusableView : UICollectionReusableView @property (nonatomic,weak) id delegate; @property (nonatomic,assign) NSInteger sectionIndex; /** * 上传小票 */ @property (weak, nonatomic) IBOutlet UIButton *uploadReceiptsButton; /** * 订单号 */ @property (weak, nonatomic) IBOutlet UILabel *orderNumberLabel; /** * 订单时间 */ @property (weak, nonatomic) IBOutlet UILabel *orderTimelabel; /** * 订单数据 */ @property (nonatomic,strong) GroupByOrderNumber *model; @end