| 12345678910111213141516171819202122 |
- //
- // ShopCartViewController.h
- // IBOSSmini
- //
- // Created by guan hong hou on 2017/5/18.
- // Copyright © 2017年 elongtian. All rights reserved.
- //
- #import "BaseViewController.h"
- #import "ShopCartCellDelegate.h"
- #import "RefreshDataDelegate.h"
- @class ShopCartModel;
- @interface ShopCartViewController : BaseViewController <UITableViewDelegate,UITableViewDataSource,ShopCartCellDelegate,RefreshDataDelegate>
- @property(nonatomic,strong) ASIDownManager *mDownManager;//下载工具类
- @property(nonatomic,strong) NSMutableArray *detailArr;//购物车明细数组
- @property(strong) ShopCartModel *cartM;//购物车类
- @property(strong) UITableView* vCustomTableView;//购物车tableview
- @property(strong) UIView *bottomView;//底部视图
- @property(strong) UIButton * btnCheckAll;//选中所有按钮
- @property(nonatomic,strong) UIButton *btnBalance;//结算按钮
- -(void)gotoOrder;//去结算函数
- @end
|