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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
//
// ProductDetailsHeaderView.h
// Lighting
//
// Created by 曹云霄 on 16/5/5.
// Copyright © 2016年 上海勾芒科技有限公司. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface ProductDetailsHeaderView : UIView
/**
* 添加至购物袋
*/
@property (weak, nonatomic) IBOutlet UIButton *addGoodsShoppingbagsButton;
/**
* 库存标题(添加至购物车按钮需要适配)
*/
@property (weak, nonatomic) IBOutlet UILabel *inventoryLabe;
/**
* 库存数量
*/
@property (weak, nonatomic) IBOutlet UILabel *inventoryNumber;
/**
* 商品数量
*/
@property (weak, nonatomic) IBOutlet UITextField *goodsNumber;
/**
* 减少商品
*/
@property (weak, nonatomic) IBOutlet UIButton *reduceButton;
/**
* 增加商品
*/
@property (weak, nonatomic) IBOutlet UIButton *addButton;
/**
* 吊牌价格
*/
@property (weak, nonatomic) IBOutlet UILabel *dorpPriceLabe;
/**
* 品牌名称
*/
@property (weak, nonatomic) IBOutlet UILabel *brandName;
/**
* 名称
*/
@property (weak, nonatomic) IBOutlet UILabel *nameLabe;
/**
* 编号
*/
@property (weak, nonatomic) IBOutlet UILabel *serialNumber;
/**
* 向上滑动scrollview
*/
@property (weak, nonatomic) IBOutlet UIButton *topSlidingScrollView;
/**
* 向下滑动scrollview
*/
@property (weak, nonatomic) IBOutlet UIButton *downSlidingScrollView;
/**
* 商品同型号,其他规格scrollview
*/
@property (weak, nonatomic) IBOutlet UIScrollView *goodsBrotherScrollview;
/**
* 商品大图
*/
@property (weak, nonatomic) IBOutlet UIImageView *goodsImageview;
/**
* 放大按钮
*/
@property (weak, nonatomic) IBOutlet UIButton *amplificationButton;
@end