From 6f336e8368f9c61b2ca0a05ab04895f4608abd15 Mon Sep 17 00:00:00 2001 From: CodeST <694468528@qq.com> Date: Mon, 22 Dec 2025 20:53:24 +0800 Subject: [PATCH] =?UTF-8?q?=E5=9B=BD=E9=99=85=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Shared/Localization/en.lproj/Localizable.strings | 3 +++ Shared/Localization/zh-Hans.lproj/Localizable.strings | 3 +++ keyBoard/Class/Me/VC/KBConsumptionRecordVC.m | 6 +++--- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/Shared/Localization/en.lproj/Localizable.strings b/Shared/Localization/en.lproj/Localizable.strings index 2055264..9b16799 100644 --- a/Shared/Localization/en.lproj/Localizable.strings +++ b/Shared/Localization/en.lproj/Localizable.strings @@ -195,7 +195,10 @@ "Purchase: %@ Coins %@" = "Purchase: %@ Coins %@"; "Pay clicked" = "Pay clicked"; "Points Recharge" = "Points Recharge"; +"Recharge" = "Recharge"; +"Consumption Record" = "Consumption Record"; "My Points" = "My Points"; +"Consumption Details" = "Consumption Details"; "No data" = "No data"; // Example categories/items diff --git a/Shared/Localization/zh-Hans.lproj/Localizable.strings b/Shared/Localization/zh-Hans.lproj/Localizable.strings index 57aca51..0f88bbe 100644 --- a/Shared/Localization/zh-Hans.lproj/Localizable.strings +++ b/Shared/Localization/zh-Hans.lproj/Localizable.strings @@ -193,7 +193,10 @@ "Purchase: %@ Coins %@" = "购买:%@ Coins %@"; "Pay clicked" = "点击支付"; "Points Recharge" = "积分充值"; +"Recharge" = "充值"; +"Consumption Record" = "消费记录"; "My Points" = "我的积分"; +"Consumption Details" = "消费明细"; "No data" = "暂无数据"; // 示例商品/分类 diff --git a/keyBoard/Class/Me/VC/KBConsumptionRecordVC.m b/keyBoard/Class/Me/VC/KBConsumptionRecordVC.m index 403290b..3267360 100644 --- a/keyBoard/Class/Me/VC/KBConsumptionRecordVC.m +++ b/keyBoard/Class/Me/VC/KBConsumptionRecordVC.m @@ -225,11 +225,11 @@ [self.pointsLabel mas_makeConstraints:^(MASConstraintMaker *make) { make.left.equalTo(self.pointsIconView.mas_right).offset(8); - make.centerY.equalTo(self.pointsIconView).offset(5); + make.centerY.equalTo(self.pointsIconView).offset(0); }]; [self.rechargeButton mas_makeConstraints:^(MASConstraintMaker *make) { - make.right.equalTo(self.cardView).offset(-16); + make.right.equalTo(self.cardView).offset(-10); make.centerY.equalTo(self.pointsIconView); make.width.mas_equalTo(114); make.height.mas_equalTo(42); @@ -264,7 +264,7 @@ _pointsTitleLabel = [UILabel new]; _pointsTitleLabel.text = KBLocalized(@"My Points"); _pointsTitleLabel.font = [KBFont medium:14]; - _pointsTitleLabel.textColor = [UIColor colorWithHex:0x6B7A7A]; + _pointsTitleLabel.textColor = [UIColor colorWithHex:KBBlackValue]; } return _pointsTitleLabel; }