| 12345678910111213141516171819202122232425262728293031 |
- //
- // SalesOrderOptionCombinationPromotionDetailVC.h
- // IBOSS
- //
- // Created by 关宏厚 on 2020/9/14.
- // Copyright © 2020 elongtian. All rights reserved.
- //
- #import "BaseViewController.h"
- #import "OrderGoodsSinglePromotionDetailCell.h"
- @interface SalesOrderOptionCombinationPromotionDetailVC : BaseViewController<UITableViewDataSource,UITableViewDelegate,OrderListDelegate,SalesOrderDelegate>
- @property(nonatomic,strong) NSMutableArray *promotionGoodsDetailList;
- @property(nonatomic,strong) NSMutableArray *combinationGoodsList;
- @property(nonatomic,strong) UITableView *vTableView;
- @property (strong,nonatomic) NSMutableDictionary *heights;
- @property(weak,nonatomic) id<OrderListDelegate> goodsDelegate;
- -(void)loadData:(NSMutableArray*)promotionGoodsList combinationGoodsList:(NSMutableArray*)combinationGoodsList;
- @end
|