ShopCartViewController.h 906 B

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