This commit is contained in:
启星
2025-10-17 12:19:53 +08:00
parent 284ef1025a
commit 604b2a3275
5 changed files with 11 additions and 6 deletions

View File

@@ -82,7 +82,7 @@
self.messageLabel = [[UILabel alloc] init];
self.messageLabel.font = [UIFont systemFontOfSize:12];
self.messageLabel.numberOfLines = 0;
self.messageLabel.text = QXText(@"充值6元即可获得总价值888金币的道具或装扮");
self.messageLabel.text = QXText(@"");
self.messageLabel.textColor = QXConfig.textColor;
[self.giftBgView addSubview:self.messageLabel];
[self.messageLabel mas_makeConstraints:^(MASConstraintMaker *make) {
@@ -126,6 +126,7 @@
QXFirstRechargeModel *md = list.firstObject;
if (md) {
weakSelf.model = md;
weakSelf.messageLabel.text = [NSString stringWithFormat:@"充值%@即可获得%@金币",md.name,md.title2];
[weakSelf.collectionView reloadData];
}
} failBlock:^(NSError * _Nonnull error, NSString * _Nonnull msg) {