Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
pidan
/
FuSiLive
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
2ccafd33
authored
Mar 25, 2026
by
suolong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增9999 弹窗操作
parent
9c5a47f5
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
44 additions
and
0 deletions
Modules/FUSShowRoomModule/FUSShowRoomModule/Features/NewLive/Main/View/FunctionView/ChatInputView/FUSLiveChatInputHelper.m
Modules/FUSShowRoomModule/FUSShowRoomModule/Features/NewLive/Main/View/FunctionView/ChatInputView/FUSLiveChatInputHelper.m
View file @
2ccafd33
...
@@ -460,6 +460,50 @@
...
@@ -460,6 +460,50 @@
[
self
fus_destroyShowTimeFrostedIfNeeded
];
[
self
fus_destroyShowTimeFrostedIfNeeded
];
[
self
fus_resetShowTimeStateValues
];
[
self
fus_resetShowTimeStateValues
];
[
self
fus_restoreBottomToolButtonsAfterShowTimeIfNeeded
];
[
self
fus_restoreBottomToolButtonsAfterShowTimeIfNeeded
];
if
(
FUSLiveHelper
.
shareInstance
.
liveType
!=
FUSLiveTypeAnchor
)
{
return
;
}
NSInteger
endStatType
=
[
payload
[
@"endStatType"
]
integerValue
];
UIView
*
onView
=
[[
FUSLiveHelper
shareInstance
].
currentFunctionView
fus_viewWithLayer
:
FUSLiveFunctionLayerManualPopView
];
if
(
!
onView
)
{
onView
=
[
UIViewController
fus_topViewController
].
view
;
}
if
(
!
onView
)
{
return
;
}
FUSTicketShowCollectTicketToggleResultModel
*
model
=
[
FUSTicketShowCollectTicketToggleResultModel
fus_modelWithDict
:
payload
];
NSInteger
safeFinalTicketNum
=
MAX
(
0
,
model
.
finalTicketNum
);
switch
(
endStatType
)
{
case
0
:
{
FUSLiveShowTimeFrostCardPopView
*
pop
=
[
FUSLiveShowTimeFrostCardPopView
fus_showOnView
:
onView
];
[
pop
fus_updateFinalTicketNum
:
safeFinalTicketNum
];
return
;
}
case
1
:
{
FUSOnlineUserModel
*
mvpUser
=
model
.
mvpInfo
.
mvpUserInfo
;
NSString
*
mvpUserId
=
[
NSString
stringWithObject
:
model
.
mvpInfo
.
mvpUserId
];
NSString
*
avatarURL
=
(
mvpUser
.
face
.
length
>
0
?
mvpUser
.
face
:
nil
);
NSString
*
nickname
=
nil
;
if
(
mvpUser
.
nickname
.
length
>
0
)
{
nickname
=
mvpUser
.
nickname
;
}
else
if
(
mvpUser
.
uid
.
length
>
0
)
{
nickname
=
mvpUser
.
uid
;
}
else
if
(
!
[
NSString
isNull
:
mvpUserId
])
{
nickname
=
mvpUserId
;
}
FUSLiveShowTimeMVPConfirmPopView
*
popView
=
[
FUSLiveShowTimeMVPConfirmPopView
fus_showOnView
:
onView
];
[
popView
fus_updateTicketCount
:
safeFinalTicketNum
];
[
popView
fus_updateAvatarURL
:
avatarURL
nickname
:
nickname
tagText
:
@"MVP"
];
return
;
}
default
:
return
;
}
});
});
return
;
return
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment