123456789101112131415161718192021222324252627282930 |
- //
- // KDPDetailGoodInformationView.h
- // KuDianProject
- //
- // Created by 学丽 on 2019/7/9.
- // Copyright © 2019 KDP. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "KDPGoodsModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface KDPDetailGoodInformationView : UIView<SDCycleScrollViewDelegate>
- @property(nonatomic,strong)SDCycleScrollView *imgView;
- @property(nonatomic,strong)UIImageView *shopImgV;
- @property(nonatomic,strong)UILabel *detailTitleL;
- @property(nonatomic,strong)UILabel *priceL;
- @property(nonatomic,strong)UIButton *collectButton;
- @property(nonatomic,strong)UILabel *volumeL;
- @property(nonatomic,strong)UILabel *originalLabel;
- @property(nonatomic,copy)void(^returnBlock)(void);
- @property(nonatomic,strong)KDPGoodsModel *model;
- @property(nonatomic,strong)UILabel *profitsLabel;
- @property(nonatomic,strong)UIImageView *couponImgV;
- @property(nonatomic,strong)UILabel *couponPriceL;
- @end
- NS_ASSUME_NONNULL_END
|