From 604b2a3275236957d34a9ceab5415b5b000ec28d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=90=AF=E6=98=9F?= Date: Fri, 17 Oct 2025 12:19:53 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- QXLive.xcodeproj/project.pbxproj | 4 ++-- .../qixing.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist | 4 ++-- QXLive/HomePage(声播)/Controlller/QXHomeViewController.m | 4 ++++ QXLive/Tabbar/弹窗/QXFirstRechargeView.m | 3 ++- QXLive/Tabbar/弹窗/QXNiceGiftPopView.m | 2 +- 5 files changed, 11 insertions(+), 6 deletions(-) diff --git a/QXLive.xcodeproj/project.pbxproj b/QXLive.xcodeproj/project.pbxproj index ee765d2..6a84c20 100644 --- a/QXLive.xcodeproj/project.pbxproj +++ b/QXLive.xcodeproj/project.pbxproj @@ -787,7 +787,7 @@ "$(inherited)", "$(SDKROOT)/usr/lib/swift", ); - MARKETING_VERSION = 1.0.9; + MARKETING_VERSION = 1.0.10; PRODUCT_BUNDLE_IDENTIFIER = com.xscm.midi; PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = ""; @@ -853,7 +853,7 @@ "$(inherited)", "$(SDKROOT)/usr/lib/swift", ); - MARKETING_VERSION = 1.0.9; + MARKETING_VERSION = 1.0.10; PRODUCT_BUNDLE_IDENTIFIER = com.xscm.midi; PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = ""; diff --git a/QXLive.xcworkspace/xcuserdata/qixing.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist b/QXLive.xcworkspace/xcuserdata/qixing.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist index 6dc2ea4..71b8a8a 100644 --- a/QXLive.xcworkspace/xcuserdata/qixing.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist +++ b/QXLive.xcworkspace/xcuserdata/qixing.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist @@ -218,8 +218,8 @@ filePath = "QXLive/HomePage(声播)/Controlller/QXHomeViewController.m" startingColumnNumber = "9223372036854775807" endingColumnNumber = "9223372036854775807" - startingLineNumber = "268" - endingLineNumber = "268" + startingLineNumber = "272" + endingLineNumber = "272" landmarkName = "-popNiceGiftView" landmarkType = "7"> diff --git a/QXLive/HomePage(声播)/Controlller/QXHomeViewController.m b/QXLive/HomePage(声播)/Controlller/QXHomeViewController.m index f70dd7d..0f69343 100644 --- a/QXLive/HomePage(声播)/Controlller/QXHomeViewController.m +++ b/QXLive/HomePage(声播)/Controlller/QXHomeViewController.m @@ -62,6 +62,7 @@ [super viewDidLoad]; // Do any additional setup after loading the view. [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(loginSuccess) name:noticeUserLogin object:nil]; + [[NSNotificationCenter defaultCenter]addObserver:self selector:@selector(rechargeSuccess) name:noticeAlipayResult object:nil]; } -(void)viewWillAppear:(BOOL)animated{ [super viewWillAppear:animated]; @@ -155,6 +156,9 @@ [self getTopRoomList]; [self getBanner]; } +-(void)rechargeSuccess{ + [self getRechargePermission]; +} - (void)requestSlideToolData { @weakify(self) [QXHomePageNetwork homeRoomLabelListsuccessBlock:^(NSArray * _Nonnull list) { diff --git a/QXLive/Tabbar/弹窗/QXFirstRechargeView.m b/QXLive/Tabbar/弹窗/QXFirstRechargeView.m index 5dea847..3244570 100644 --- a/QXLive/Tabbar/弹窗/QXFirstRechargeView.m +++ b/QXLive/Tabbar/弹窗/QXFirstRechargeView.m @@ -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) { diff --git a/QXLive/Tabbar/弹窗/QXNiceGiftPopView.m b/QXLive/Tabbar/弹窗/QXNiceGiftPopView.m index 6a78b9f..cfee997 100644 --- a/QXLive/Tabbar/弹窗/QXNiceGiftPopView.m +++ b/QXLive/Tabbar/弹窗/QXNiceGiftPopView.m @@ -132,7 +132,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 = @""; self.messageLabel.textColor = QXConfig.textColor; [self.giftBgView addSubview:self.messageLabel]; [self.messageLabel mas_makeConstraints:^(MASConstraintMaker *make) {