| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- //
- // SalesAnalysisCell
- // IBOSS
- //
- // Created by apple on 2017/5/15.
- // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
- //
- // 功能描述:商品畅滞销分析Cell
- #import "SalesAnalysisCell.h"
- #import "NSString+Tools.h"
- #define kTextFont [UIFont systemFontOfSize:LabelAndTextFontOfSize]
- #define kTitleFont [UIFont systemFontOfSize:14]
- @implementation SalesAnalysisCell
- /**
- 点击效果
- @param selected
- @param animated
- */
- - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
- }
- /**
- 刷新页面
- */
- - (void) loadView{
- _lblName.text = _model.commodityName;
- _lblOnlyCode.text = _model.onlyCode;
- _lblSalesNumber.text = _model.number;
- _lblGrade.text = _model.commodityGrade;
- _lblKindName.text = _model.CommodityCategory;
- _lblColorNumber.text = _model.colorNumber;
- _lblSalesTimes.text = _model.salesTimes;
- _lblSalesAmount.text = _model.salesAmount;
- _lblSpecifications.text = _model.specifications;
- _lblBrandName.text = _model.commodityBrand;
- _lblRank.text = _model.ranking;
- }
- @end
|