最后提交

This commit is contained in:
启星
2026-01-30 15:05:25 +08:00
parent e70f1b4d16
commit 362df44bb3
28 changed files with 193 additions and 59 deletions

View File

@@ -237,7 +237,11 @@
self.walletBgView = [[UIView alloc] initWithFrame:CGRectMake(self.topBgView.left, self.cycleScrollView.bottom+12, self.topBgView.width, 108)];
self.walletBgView.backgroundColor = RGB16(0x231F2C);
if (QXConfig.shared.model) {
self.walletBgView.backgroundColor = RGB16(0x600D00);
}else{
self.walletBgView.backgroundColor = RGB16(0x231F2C);
}
[self.walletBgView addRoundedCornersWithRadius:8];
[self addSubview:self.walletBgView];

View File

@@ -39,7 +39,11 @@
}
-(void)createViews{
self.bgView = [[UIView alloc] init];
self.bgView.backgroundColor = RGB16(0x231F2C);
if (QXConfig.shared.model) {
self.bgView.backgroundColor = RGB16(0x600D00);
}else{
self.bgView.backgroundColor = RGB16(0x231F2C);
}
[self.bgView addRoundedCornersWithRadius:10];
[self.contentView addSubview:self.bgView];
[self.bgView mas_makeConstraints:^(MASConstraintMaker *make) {