1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
//
// CardOrderInformationReusableView.h
//
//
// Created by 曹云霄 on 2016/10/20.
//
//
#import <UIKit/UIKit.h>
@protocol UploadReceiptsDelegate <NSObject>
- (void)startUploadReceipts:(NSInteger)sectionIndex;
@end
@interface CardOrderInformationReusableView : UICollectionReusableView
@property (nonatomic,weak) id<UploadReceiptsDelegate> 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