BKShopPayResultCollectionReusableHeaderView.h
1.11 KB
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
//
// BKShopPayResultCollectionReusableHeaderView.h
// zhaolin
//
// Created by 兆林 on 2017/8/31.
// Copyright © 2017年 zhaolin. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface BKShopPayResultCollectionReusableHeaderView : UICollectionReusableView
@property (nonatomic,strong) DSImageView * payResultBgImageView;
@property (nonatomic,strong) DSImageView * payResultImageView;
@property (nonatomic,strong) UILabel * payResultTitleLab;
@property (nonatomic,strong) UILabel * payResultDescLab;
@property (nonatomic,strong) UILabel * name;
@property (nonatomic,strong) UILabel * address;
@property (nonatomic,strong) UIView * bottomView;
@property (nonatomic,strong) DSImageView * payTypeImageView;
@property (nonatomic,strong) UILabel * payTypeLab;
@property (nonatomic,strong) UILabel * money;
@property (nonatomic,strong) UIButton * leftBtn;
@property (nonatomic,strong) UIButton * rightBtn;
@property (nonatomic,strong) UILabel * remindLab;
@property (nonatomic,strong) UIView * moreView;
@property (nonatomic,copy) void (^leftBtnAction)(void);
@property (nonatomic,copy) void (^rightBtnAction)(void);
@end