酷店

KDPDetailGoodInformationView.h 874B

12345678910111213141516171819202122232425262728
  1. //
  2. // KDPDetailGoodInformationView.h
  3. // KuDianProject
  4. //
  5. // Created by 学丽 on 2019/7/9.
  6. // Copyright © 2019 KDP. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "KDPGoodsModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface KDPDetailGoodInformationView : UIView<SDCycleScrollViewDelegate>
  12. @property(nonatomic,strong)SDCycleScrollView *imgView;
  13. @property(nonatomic,strong)UIImageView *shopImgV;
  14. @property(nonatomic,strong)UILabel *detailTitleL;
  15. @property(nonatomic,strong)UILabel *priceL;
  16. @property(nonatomic,strong)UIButton *collectButton;
  17. @property(nonatomic,strong)UILabel *volumeL;
  18. @property(nonatomic,strong)UILabel *originalLabel;
  19. @property(nonatomic,copy)void(^returnBlock)(void);
  20. @property(nonatomic,strong)KDPGoodsModel *model;
  21. @property(nonatomic,strong)UIImageView *couponImgV;
  22. @property(nonatomic,strong)UILabel *couponPriceL;
  23. @end
  24. NS_ASSUME_NONNULL_END