修复抽盘无法上拍卖位

This commit is contained in:
启星
2025-10-12 15:56:48 +08:00
parent 0b855ca803
commit 9368211a3c
5 changed files with 41 additions and 5 deletions

View File

@@ -250,10 +250,40 @@
filePath = "QXLive/HomePage(声播)/Controlller/房间/QXRoomViewController.m"
startingColumnNumber = "9223372036854775807"
endingColumnNumber = "9223372036854775807"
startingLineNumber = "1947"
endingLineNumber = "1947"
startingLineNumber = "1950"
endingLineNumber = "1950"
landmarkName = "-redbagDrawView"
landmarkType = "7">
<Locations>
<Location
uuid = "7258F68E-83A5-4C7F-A873-9DFEB2A7C758 - adfda6eac512418b"
shouldBeEnabled = "Yes"
ignoreCount = "0"
continueAfterRunningActions = "No"
symbolName = "-[QXRoomViewController redbagDrawView]"
moduleName = "QXLiveDev.debug.dylib"
usesParentBreakpointCondition = "Yes"
urlString = "file:///Users/qixing/Desktop/%E9%A1%B9%E7%9B%AE/%E7%A7%98%E5%9C%B0/midi_ios/QXLive/HomePage(%E5%A3%B0%E6%92%AD)/Controlller/%E6%88%BF%E9%97%B4/QXRoomViewController.m"
startingColumnNumber = "9223372036854775807"
endingColumnNumber = "9223372036854775807"
startingLineNumber = "1950"
endingLineNumber = "1950">
</Location>
<Location
uuid = "7258F68E-83A5-4C7F-A873-9DFEB2A7C758 - d38c4dfab67376f8"
shouldBeEnabled = "Yes"
ignoreCount = "0"
continueAfterRunningActions = "No"
symbolName = "__38-[QXRoomViewController redbagDrawView]_block_invoke"
moduleName = "QXLiveDev.debug.dylib"
usesParentBreakpointCondition = "Yes"
urlString = "file:///Users/qixing/Desktop/%E9%A1%B9%E7%9B%AE/%E7%A7%98%E5%9C%B0/midi_ios/QXLive/HomePage(%E5%A3%B0%E6%92%AD)/Controlller/%E6%88%BF%E9%97%B4/QXRoomViewController.m"
startingColumnNumber = "9223372036854775807"
endingColumnNumber = "9223372036854775807"
startingLineNumber = "1950"
endingLineNumber = "1950">
</Location>
</Locations>
</BreakpointContent>
</BreakpointProxy>
<BreakpointProxy

View File

@@ -1676,6 +1676,7 @@ QXRoomUserInfoViewDelegate
weakSelf.skyView.roomId = weakSelf.roomId;
weakSelf.skyView.userIds = userIds;
weakSelf.skyView.heartId = weakSelf.sendGiftView.heartId;
weakSelf.skyView.auctionId = weakSelf.sendGiftView.auctionId;
if (weakSelf.sendGiftView.type == QXSendGiftViewTypeAuction) {
weakSelf.skyView.heartId = @"";
weakSelf.skyView.auctionId = weakSelf.sendGiftView.auctionId;
@@ -1687,6 +1688,7 @@ QXRoomUserInfoViewDelegate
weakSelf.ageView.roomId = weakSelf.roomId;
weakSelf.ageView.userIds = userIds;
weakSelf.ageView.heartId = weakSelf.sendGiftView.heartId;
weakSelf.ageView.auctionId = weakSelf.sendGiftView.auctionId;
if (weakSelf.sendGiftView.type == QXSendGiftViewTypeAuction) {
weakSelf.skyView.heartId = @"";
weakSelf.skyView.auctionId = weakSelf.sendGiftView.auctionId;
@@ -1698,6 +1700,7 @@ QXRoomUserInfoViewDelegate
weakSelf.timeView.roomId = weakSelf.roomId;
weakSelf.timeView.userIds = userIds;
weakSelf.timeView.heartId = weakSelf.sendGiftView.heartId;
weakSelf.timeView.auctionId = weakSelf.sendGiftView.auctionId;
if (weakSelf.sendGiftView.type == QXSendGiftViewTypeAuction) {
weakSelf.skyView.heartId = @"";
weakSelf.skyView.auctionId = weakSelf.sendGiftView.auctionId;

View File

@@ -400,7 +400,8 @@ static NSInteger toSlowCount = 4;
@"gift_user_ids":self.userIds,
@"room_id":self.roomId,
@"num":num,
@"heart_id":[self.heartId isExist]?self.heartId:@""
@"heart_id":[self.heartId isExist]?self.heartId:@"",
@"auction_id":[self.auctionId isExist]?self.auctionId:@""
};
self.isDrawing = YES;
MJWeakSelf

View File

@@ -432,7 +432,8 @@ static NSInteger toSlowCount = 4;
@"gift_user_ids":self.userIds,
@"room_id":self.roomId,
@"num":num,
@"heart_id":[self.heartId isExist]?self.heartId:@""
@"heart_id":[self.heartId isExist]?self.heartId:@"",
@"auction_id":[self.auctionId isExist]?self.auctionId:@""
};
self.isDrawing = YES;
MJWeakSelf

View File

@@ -433,7 +433,8 @@ static NSInteger toSlowCount = 4;
@"gift_user_ids":self.userIds,
@"room_id":self.roomId,
@"num":num,
@"heart_id":[self.heartId isExist]?self.heartId:@""
@"heart_id":[self.heartId isExist]?self.heartId:@"",
@"auction_id":[self.auctionId isExist]?self.auctionId:@""
};
self.isDrawing = YES;
MJWeakSelf