SalesAnalysisCell.m 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. //
  2. // SalesAnalysisCell
  3. // IBOSS
  4. //
  5. // Created by apple on 2017/5/15.
  6. // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
  7. //
  8. // 功能描述:商品畅滞销分析Cell
  9. #import "SalesAnalysisCell.h"
  10. #import "NSString+Tools.h"
  11. #define kTextFont [UIFont systemFontOfSize:LabelAndTextFontOfSize]
  12. #define kTitleFont [UIFont systemFontOfSize:14]
  13. @implementation SalesAnalysisCell
  14. /**
  15. 点击效果
  16. @param selected
  17. @param animated
  18. */
  19. - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
  20. }
  21. /**
  22. 刷新页面
  23. */
  24. - (void) loadView{
  25. _lblName.text = _model.commodityName;
  26. _lblOnlyCode.text = _model.onlyCode;
  27. _lblSalesNumber.text = _model.number;
  28. _lblGrade.text = _model.commodityGrade;
  29. _lblKindName.text = _model.CommodityCategory;
  30. _lblColorNumber.text = _model.colorNumber;
  31. _lblSalesTimes.text = _model.salesTimes;
  32. _lblSalesAmount.text = _model.salesAmount;
  33. _lblSpecifications.text = _model.specifications;
  34. _lblBrandName.text = _model.commodityBrand;
  35. _lblRank.text = _model.ranking;
  36. }
  37. @end