//
//  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 "KWMFilterView.h"
#import "KWMBrandCaramelCell.h"
#import "UIColor+SAMAdditions.h"

//选中的商品列表
@interface KWMSelectedGoodsVC : KWMBasePageVC<KWMBrandCaramelCellDelegate,KWMFilterDelegate>

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

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

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

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

@property (weak, nonatomic) IBOutlet KWMDoubleTitleView *vDoubleTitle;

@property (weak, nonatomic) IBOutlet KWMFilterView *filterView;

@property (weak, nonatomic) IBOutlet UIImageView *testImageView;

//双重标题view的高度
@property (weak, nonatomic) IBOutlet NSLayoutConstraint *heightDoubleTitle;

@property (nonatomic) BOOL isLoading;

@property (nonatomic) KWMProductType *productType;

@property (nonatomic) BUYCollectionSort collectionSort;

@property (nonatomic) NSInteger tagType;

@property (nonatomic) BUYCollection *collection;




@end