NSAttributedString *fenString = [[NSAttributedString alloc] initWithString:@" 積分" attributes:@{ NSFontAttributeName: App_font(12),NSForegroundColorAttributeName:kColor_333333 }];
NSAttributedString *pointBonusString = [[NSAttributedString alloc] initWithString:[NSString stringWithFormat:@"%@",[[result objectForKey:@"data"] objectForKey:@"pointPrice"]] attributes:@{ NSFontAttributeName: PBDinotFont(20),NSForegroundColorAttributeName:kColor_ff8240 }];
NSMutableAttributedString *goodsPriceString = [[NSMutableAttributedString alloc] init];
[goodsPriceString appendAttributedString: pointBonusString];
[goodsPriceString appendAttributedString: fenString];
wself.goodsPointPriceLabel.attributedText = goodsPriceString;