KWMShopCartVC.h 779 Bytes
Newer Older
houweibin committed
1 2 3 4 5 6 7 8 9 10 11
//
//  KWMShopCartVC.h
//  iCemarose
//
//  Created by 陈荣科 on 16/8/24.
//  Copyright © 2016年 kollway. All rights reserved.
//

#import "KWMBaseVC.h"
#import "KWMShopCarCell.h"
#import "KWMDeleteView.h"
houweibin committed
12
#import "KWMVariantsVC.h"
houweibin committed
13

houweibin committed
14 15

@interface KWMShopCartVC : KWMBaseVC<KWMShopCarDelegate,KWMDeleteDelegate,KWMVariantsVCDelegate,UITableViewDelegate,UITableViewDataSource>
houweibin committed
16 17 18 19 20 21 22 23 24 25 26 27 28
@property (weak, nonatomic) IBOutlet UITableView *tbvCart;


@property (weak, nonatomic) IBOutlet UIView *vBackground;
@property (weak, nonatomic) IBOutlet KWMDeleteView *vDelete;
@property (weak, nonatomic) IBOutlet UIButton *btnRandom;//随意逛逛
@property (weak, nonatomic) IBOutlet UILabel *lbTotalPrice;

- (IBAction)onClickRandomBtn:(id)sender;

- (IBAction)onClickComplete:(id)sender;

@end