12345678910111213141516171819202122232425262728293031 |
- //
- // KBGoodListCidViewController.h
- // YouHuiProject
- //
- // Created by xiaoxi on 2018/2/2.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import "KBBaseViewController.h"
- @protocol YHGoodListBottomViewDelegate;
- @interface YHGoodListBottomView : UICollectionReusableView
- @property (nonatomic, weak) id<YHGoodListBottomViewDelegate> delegate;
- @property (nonatomic, strong) NSMutableArray *goodsArr;
- @end
- @protocol YHGoodListBottomViewDelegate <NSObject>
- @optional
- - (void)yh_GoodListBottomViewDidSelectItemAt:(NSIndexPath *)indexPath;
- @end
- @interface KBGoodListCidViewController : KBBaseViewController
- @property (nonatomic, copy) NSString *goods_id;
- @property (nonatomic, copy) NSString *cid;
- /*
- * topRequest 1 similar 2 gid
- */
- @property (nonatomic, assign) NSInteger topRequest;
- @end
|