// // FKSelectSpecInfoView.h // FirstLink // // Created by jack on 16/1/15. // Copyright © 2016年 FirstLink. All rights reserved. // #import #import "FKProductSpecDataCenter.h" #import "FKProductImgBoxView.h" @interface FKSelectSpecInfoView : UIView @property (nonatomic, strong) UILabel *priceLabel; @property (nonatomic, strong) UILabel *specLabel; @property (nonatomic, strong) UILabel *stockLabel; @property (nonatomic, strong) UILabel *productTagLabel; // 商品标记 @property (nonatomic, strong) UILabel *weightLabel; // 重量标记 @property (nonatomic, strong) UIButton *cancelBtn; @property (nonatomic, strong) FKProductImgBoxView *imageBoxView; - (void)configWithSpecDataCenter:(FKProductSpecDataCenter *)dataCenter; + (NSString *)cdnImgUrlStringWithString:(NSString *)imgUrl ; @end