KWMSelectedGoodsVC.h 1.24 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
/**
 *  deeplink tags
 */
u  
lee committed
38
@property (strong, nonatomic) NSArray<NSString *>*ctags;
lee committed
39

houweibin committed
40 41 42 43 44 45 46 47 48 49 50 51
@property (nonatomic) KWMProductType *productType;

@property (nonatomic) BUYCollectionSort collectionSort;

@property (nonatomic) NSInteger tagType;

@property (nonatomic) BUYCollection *collection;




@end