This commit is contained in:
启星
2025-12-10 10:48:52 +08:00
parent aedc48c098
commit ff11e9715e
5 changed files with 6 additions and 3 deletions

View File

@@ -787,7 +787,7 @@
"$(inherited)", "$(inherited)",
"$(SDKROOT)/usr/lib/swift", "$(SDKROOT)/usr/lib/swift",
); );
MARKETING_VERSION = 1.1.6; MARKETING_VERSION = 1.1.7;
PRODUCT_BUNDLE_IDENTIFIER = com.qxcm.qxlive; PRODUCT_BUNDLE_IDENTIFIER = com.qxcm.qxlive;
PRODUCT_NAME = "$(TARGET_NAME)"; PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = ""; PROVISIONING_PROFILE_SPECIFIER = "";
@@ -853,7 +853,7 @@
"$(inherited)", "$(inherited)",
"$(SDKROOT)/usr/lib/swift", "$(SDKROOT)/usr/lib/swift",
); );
MARKETING_VERSION = 1.1.6; MARKETING_VERSION = 1.1.7;
PRODUCT_BUNDLE_IDENTIFIER = com.qxcm.qxlive; PRODUCT_BUNDLE_IDENTIFIER = com.qxcm.qxlive;
PRODUCT_NAME = "$(TARGET_NAME)"; PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = ""; PROVISIONING_PROFILE_SPECIFIER = "";

View File

@@ -536,6 +536,7 @@
[weakSelf.codeTextField startTimeDown]; [weakSelf.codeTextField startTimeDown];
} failBlock:^(NSError * _Nonnull error, NSString * _Nonnull msg) { } failBlock:^(NSError * _Nonnull error, NSString * _Nonnull msg) {
sender.userInteractionEnabled = YES; sender.userInteractionEnabled = YES;
showToast(msg);
}]; }];
} }

View File

@@ -83,6 +83,7 @@
// [self addChildViewController:self.vc]; // [self addChildViewController:self.vc];
// [self.view addSubview:self.vc.view]; // [self.view addSubview:self.vc.view];
[self.vc reloadConversationList]; [self.vc reloadConversationList];
self.vc.tableViewForAll.tableHeaderView = self.topView;
} }
- (void)conversationListController:(UIViewController *)conversationController - (void)conversationListController:(UIViewController *)conversationController

View File

@@ -361,6 +361,7 @@
vc.logOutBlock = ^(BOOL isCancel, NSString * _Nonnull code) { vc.logOutBlock = ^(BOOL isCancel, NSString * _Nonnull code) {
weakSelf.cancelCode = code; weakSelf.cancelCode = code;
if (isCancel) { if (isCancel) {
showToast(@"注销成功");
[weakSelf performSelector:@selector(cancelAccount) afterDelay:0.5]; [weakSelf performSelector:@selector(cancelAccount) afterDelay:0.5];
}else{ }else{
[weakSelf performSelector:@selector(logout) afterDelay:0.5]; [weakSelf performSelector:@selector(logout) afterDelay:0.5];

View File

@@ -139,7 +139,7 @@
[QXLoginNetwork getSmscodeWithMobile:[QXGlobal shareGlobal].loginModel.mobile type:type successBlock:^(id _Nonnull responseObject) { [QXLoginNetwork getSmscodeWithMobile:[QXGlobal shareGlobal].loginModel.mobile type:type successBlock:^(id _Nonnull responseObject) {
[weakSelf.codeTextField startTimeDown]; [weakSelf.codeTextField startTimeDown];
} failBlock:^(NSError * _Nonnull error, NSString * _Nonnull msg) { } failBlock:^(NSError * _Nonnull error, NSString * _Nonnull msg) {
showToast(msg);
}]; }];
} }
@end @end