KWMSelectedGoodsVC.h 1.4 KB
Newer Older
houweibin committed
1 2 3 4 5 6 7 8 9 10 11 12 13
//
//  KWMSelectedGoodsVC.h
//  iCemarose
//
//  Created by 陈荣科 on 16/8/31.
//  Copyright © 2016年 kollway. All rights reserved.
//

#import "KWMBasePageVC.h"
#import "KWMProductType.h"
#import "KWMDoubleTitleView.h"
#import "KWMBrandCaramelCell.h"
#import "UIColor+SAMAdditions.h"
houweibin committed
14 15
#import "KWMNormalFilterTab.h"
#import "KWMNormalFilterView.h"
houweibin committed
16 17

//选中的商品列表
houweibin committed
18
@interface KWMSelectedGoodsVC : KWMBasePageVC<KWMBrandCaramelCellDelegate,KWMNormalFilterTabDelegate,KWMFilterDelegate>
houweibin committed
19 20 21 22 23 24 25 26 27

@property (weak, nonatomic) IBOutlet UITableView *tbvSelectedGoods;

@property (weak, nonatomic) IBOutlet UIView *vGoodsStyle;

@property (weak, nonatomic) IBOutlet UIView *vBackground;

@property (weak, nonatomic) IBOutlet UIView *vHeard;

houweibin committed
28
@property (weak, nonatomic) IBOutlet UIView *vNoData;
houweibin committed
29

houweibin committed
30 31
@property (weak, nonatomic) IBOutlet KWMNormalFilterTab *filterTab;
@property (weak, nonatomic) IBOutlet KWMNormalFilterView *filterView;
houweibin committed
32 33 34

@property (nonatomic) BOOL isLoading;

lee committed
35 36 37 38
/**
 *  deeplink handle
 */
@property (strong, nonatomic) NSString *handle;
lee committed
39 40 41
/**
 *  deeplink tags
 */
u  
lee committed
42
@property (strong, nonatomic) NSArray<NSString *>*ctags;
lee committed
43

44 45
/** 该属性相关页面已经废弃,相关逻辑也已删除 **/
@property (nonatomic) KWMProductType *productType DEPRECATED_ATTRIBUTE;
houweibin committed
46 47 48 49 50 51 52 53 54 55 56

@property (nonatomic) BUYCollectionSort collectionSort;

@property (nonatomic) NSInteger tagType;

@property (nonatomic) BUYCollection *collection;




@end