Nenhuma Descrição

FKSelectSpecInfoView.h 876B

1234567891011121314151617181920212223242526272829
  1. //
  2. // FKSelectSpecInfoView.h
  3. // FirstLink
  4. //
  5. // Created by jack on 16/1/15.
  6. // Copyright © 2016年 FirstLink. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "FKProductSpecDataCenter.h"
  10. #import "FKProductImgBoxView.h"
  11. @interface FKSelectSpecInfoView : UIView
  12. @property (nonatomic, strong) UILabel *priceLabel;
  13. @property (nonatomic, strong) UILabel *specLabel;
  14. @property (nonatomic, strong) UILabel *stockLabel;
  15. @property (nonatomic, strong) UILabel *productTagLabel; // 商品标记
  16. @property (nonatomic, strong) UILabel *weightLabel; // 重量标记
  17. @property (nonatomic, strong) UIButton *cancelBtn;
  18. @property (nonatomic, strong) FKProductImgBoxView *imageBoxView;
  19. - (void)configWithSpecDataCenter:(FKProductSpecDataCenter *)dataCenter;
  20. + (NSString *)cdnImgUrlStringWithString:(NSString *)imgUrl ;
  21. @end