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
e3932b36
authored
Jan 17, 2025
by
ludi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
SH模式下没有直播奖励和私房设置,修复宝箱记录的背景
parent
ca62e7a5
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
19 additions
and
9 deletions
Modules/FUSChatCenterModule/FUSChatCenterModule.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/xcschememanagement.plist
Modules/FUSShowRoomModule/FUSShowRoomModule.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/xcschememanagement.plist
Modules/FUSShowRoomModule/FUSShowRoomModule/Features/NewLive/Main/View/FunctionView/TreasureBox/View/FUSLiveTreasureBoxRecordDetailView.m
Modules/FUSUserCenterModule/FUSUserCenterModule.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/xcschememanagement.plist
Modules/FUSUserCenterModule/FUSUserCenterModule/Features/ImAnchor/FUSImAnchorViewController.m
Pods/Pods.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/xcschememanagement.plist
Modules/FUSChatCenterModule/FUSChatCenterModule.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/xcschememanagement.plist
View file @
e3932b36
...
@@ -7,12 +7,12 @@
...
@@ -7,12 +7,12 @@
<
k
e
y
>
FUSChatCenterBundle.xcscheme_
^#
shared
#^
_
<
/k
e
y
>
<
k
e
y
>
FUSChatCenterBundle.xcscheme_
^#
shared
#^
_
<
/k
e
y
>
<
d
i
c
t
>
<
d
i
c
t
>
<
k
e
y
>
orderHint
<
/k
e
y
>
<
k
e
y
>
orderHint
<
/k
e
y
>
<
int
e
g
e
r
>
7
5
<
/int
e
g
e
r
>
<
int
e
g
e
r
>
7
8
<
/int
e
g
e
r
>
<
/
d
i
c
t
>
<
/
d
i
c
t
>
<
k
e
y
>
FUSChatCenterModule.xcscheme_
^#
shared
#^
_
<
/k
e
y
>
<
k
e
y
>
FUSChatCenterModule.xcscheme_
^#
shared
#^
_
<
/k
e
y
>
<
d
i
c
t
>
<
d
i
c
t
>
<
k
e
y
>
orderHint
<
/k
e
y
>
<
k
e
y
>
orderHint
<
/k
e
y
>
<
int
e
g
e
r
>
7
4
<
/int
e
g
e
r
>
<
int
e
g
e
r
>
7
2
<
/int
e
g
e
r
>
<
/
d
i
c
t
>
<
/
d
i
c
t
>
<
/
d
i
c
t
>
<
/
d
i
c
t
>
<
/
d
i
c
t
>
<
/
d
i
c
t
>
...
...
Modules/FUSShowRoomModule/FUSShowRoomModule.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/xcschememanagement.plist
View file @
e3932b36
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
<
k
e
y
>
FUSShowRoomBundle.xcscheme_
^#
shared
#^
_
<
/k
e
y
>
<
k
e
y
>
FUSShowRoomBundle.xcscheme_
^#
shared
#^
_
<
/k
e
y
>
<
d
i
c
t
>
<
d
i
c
t
>
<
k
e
y
>
orderHint
<
/k
e
y
>
<
k
e
y
>
orderHint
<
/k
e
y
>
<
int
e
g
e
r
>
7
3
<
/int
e
g
e
r
>
<
int
e
g
e
r
>
7
4
<
/int
e
g
e
r
>
<
/
d
i
c
t
>
<
/
d
i
c
t
>
<
k
e
y
>
FUSShowRoomModule.xcscheme_
^#
shared
#^
_
<
/k
e
y
>
<
k
e
y
>
FUSShowRoomModule.xcscheme_
^#
shared
#^
_
<
/k
e
y
>
<
d
i
c
t
>
<
d
i
c
t
>
...
...
Modules/FUSShowRoomModule/FUSShowRoomModule/Features/NewLive/Main/View/FunctionView/TreasureBox/View/FUSLiveTreasureBoxRecordDetailView.m
View file @
e3932b36
...
@@ -34,13 +34,14 @@
...
@@ -34,13 +34,14 @@
UIImageView
*
bgImgView
=
[[
UIImageView
alloc
]
initWithFrame
:
self
.
bounds
];
UIImageView
*
bgImgView
=
[[
UIImageView
alloc
]
initWithFrame
:
self
.
bounds
];
bgImgView
.
contentMode
=
UIViewContentModeScaleAspectFill
;
bgImgView
.
contentMode
=
UIViewContentModeScaleAspectFill
;
bgImgView
.
backgroundColor
=
[[
UIColor
blackColor
]
colorWithAlphaComponent
:
0
.
8
];
// bgImgView.backgroundColor = [[UIColor blackColor] colorWithAlphaComponent:0.8];
bgImgView
.
backgroundColor
=
[
UIColor
whiteColor
];
bgImgView
.
clipsToBounds
=
YES
;
bgImgView
.
clipsToBounds
=
YES
;
[
self
addSubview
:
bgImgView
];
[
self
addSubview
:
bgImgView
];
UIButton
*
backBtn
=
[
UIButton
buttonWithType
:
UIButtonTypeCustom
];
UIButton
*
backBtn
=
[
UIButton
buttonWithType
:
UIButtonTypeCustom
];
backBtn
.
frame
=
CGRectMake
(
0
,
0
,
HEADERVIEW_H
,
HEADERVIEW_H
);
backBtn
.
frame
=
CGRectMake
(
0
,
0
,
HEADERVIEW_H
,
HEADERVIEW_H
);
[
backBtn
setImage
:
UIImage
.
fus_back
White
Image
forState
:
UIControlStateNormal
];
[
backBtn
setImage
:
UIImage
.
fus_backImage
forState
:
UIControlStateNormal
];
[
backBtn
addTarget
:
self
action
:
@selector
(
fus_backToBoxDetail
)
forControlEvents
:
UIControlEventTouchUpInside
];
[
backBtn
addTarget
:
self
action
:
@selector
(
fus_backToBoxDetail
)
forControlEvents
:
UIControlEventTouchUpInside
];
[
self
addSubview
:
backBtn
];
[
self
addSubview
:
backBtn
];
...
@@ -49,7 +50,8 @@
...
@@ -49,7 +50,8 @@
[
_titleLabel
sizeToFit
];
[
_titleLabel
sizeToFit
];
_titleLabel
.
centerY
=
backBtn
.
centerY
;
_titleLabel
.
centerY
=
backBtn
.
centerY
;
_titleLabel
.
centerX
=
self
.
width
/
2
.
0
;
_titleLabel
.
centerX
=
self
.
width
/
2
.
0
;
_titleLabel
.
textColor
=
[
UIColor
whiteColor
];
// _titleLabel.textColor = [UIColor whiteColor];
_titleLabel
.
textColor
=
[
UIColor
fus_textColorRich
];
[
self
addSubview
:
_titleLabel
];
[
self
addSubview
:
_titleLabel
];
_detailWebView
=
[[
FUSWKWebView
alloc
]
initWithFrame
:
CGRectMake
(
0
,
backBtn
.
height
,
self
.
width
,
self
.
height
-
backBtn
.
height
)];
_detailWebView
=
[[
FUSWKWebView
alloc
]
initWithFrame
:
CGRectMake
(
0
,
backBtn
.
height
,
self
.
width
,
self
.
height
-
backBtn
.
height
)];
...
...
Modules/FUSUserCenterModule/FUSUserCenterModule.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/xcschememanagement.plist
View file @
e3932b36
...
@@ -7,12 +7,12 @@
...
@@ -7,12 +7,12 @@
<
k
e
y
>
FUSUserCenterModule.xcscheme_
^#
shared
#^
_
<
/k
e
y
>
<
k
e
y
>
FUSUserCenterModule.xcscheme_
^#
shared
#^
_
<
/k
e
y
>
<
d
i
c
t
>
<
d
i
c
t
>
<
k
e
y
>
orderHint
<
/k
e
y
>
<
k
e
y
>
orderHint
<
/k
e
y
>
<
int
e
g
e
r
>
7
8
<
/int
e
g
e
r
>
<
int
e
g
e
r
>
7
5
<
/int
e
g
e
r
>
<
/
d
i
c
t
>
<
/
d
i
c
t
>
<
k
e
y
>
FUSUserCenterModuleBundle.xcscheme_
^#
shared
#^
_
<
/k
e
y
>
<
k
e
y
>
FUSUserCenterModuleBundle.xcscheme_
^#
shared
#^
_
<
/k
e
y
>
<
d
i
c
t
>
<
d
i
c
t
>
<
k
e
y
>
orderHint
<
/k
e
y
>
<
k
e
y
>
orderHint
<
/k
e
y
>
<
int
e
g
e
r
>
7
6
<
/int
e
g
e
r
>
<
int
e
g
e
r
>
7
3
<
/int
e
g
e
r
>
<
/
d
i
c
t
>
<
/
d
i
c
t
>
<
/
d
i
c
t
>
<
/
d
i
c
t
>
<
/
d
i
c
t
>
<
/
d
i
c
t
>
...
...
Modules/FUSUserCenterModule/FUSUserCenterModule/Features/ImAnchor/FUSImAnchorViewController.m
View file @
e3932b36
...
@@ -144,6 +144,10 @@ typedef NS_ENUM(NSInteger, FUSImAnchorItemType){
...
@@ -144,6 +144,10 @@ typedef NS_ENUM(NSInteger, FUSImAnchorItemType){
-
(
void
)
fus_createItems
{
-
(
void
)
fus_createItems
{
// NSArray *section1 = @[@(FUSImAnchorItemTypeLiveTask), @(FUSImAnchorItemTypePopular)];
// NSArray *section1 = @[@(FUSImAnchorItemTypeLiveTask), @(FUSImAnchorItemTypePopular)];
NSArray
*
section1
=
@[
@
(
FUSImAnchorItemTypeLiveReward
),
@
(
FUSImAnchorItemTypeLiveRecord
)];
NSArray
*
section1
=
@[
@
(
FUSImAnchorItemTypeLiveReward
),
@
(
FUSImAnchorItemTypeLiveRecord
)];
if
([
FUSConfig
sharedInstanced
].
devConfigs
.
appStatus
==
YES
)
{
// sh模式没有直播奖励
section1
=
@[
@
(
FUSImAnchorItemTypeLiveRecord
)];
}
NSArray
*
section2
=
@[
@
(
FUSImAnchorItemTypeLiveTime
),
@
(
FUSImAnchorItemTypeTotalFire
)];
NSArray
*
section2
=
@[
@
(
FUSImAnchorItemTypeLiveTime
),
@
(
FUSImAnchorItemTypeTotalFire
)];
if
(
FUSConfig
.
sharedInstanced
.
devConfigs
.
appStatus
)
{
if
(
FUSConfig
.
sharedInstanced
.
devConfigs
.
appStatus
)
{
section2
=
@[
@
(
FUSImAnchorItemTypeLiveTime
)];
section2
=
@[
@
(
FUSImAnchorItemTypeLiveTime
)];
...
@@ -156,6 +160,10 @@ typedef NS_ENUM(NSInteger, FUSImAnchorItemType){
...
@@ -156,6 +160,10 @@ typedef NS_ENUM(NSInteger, FUSImAnchorItemType){
section4
=
@[
@
(
FUSImAnchorItemTypeBroadcastBuild
)];
section4
=
@[
@
(
FUSImAnchorItemTypeBroadcastBuild
)];
}
}
NSArray
*
itemTypeSectionList
=
@[
section1
,
section2
,
section3
,
section4
];
NSArray
*
itemTypeSectionList
=
@[
section1
,
section2
,
section3
,
section4
];
if
([
FUSConfig
sharedInstanced
].
devConfigs
.
appStatus
==
YES
)
{
// sh模式没有私房设置
itemTypeSectionList
=
@[
section1
,
section2
,
section4
];
}
[
self
.
allGroups
removeAllObjects
];
[
self
.
allGroups
removeAllObjects
];
for
(
NSArray
*
evSection
in
itemTypeSectionList
)
{
for
(
NSArray
*
evSection
in
itemTypeSectionList
)
{
...
...
Pods/Pods.xcodeproj/xcuserdata/aaa.xcuserdatad/xcschemes/xcschememanagement.plist
View file @
e3932b36
...
@@ -392,7 +392,7 @@
...
@@ -392,7 +392,7 @@
<
k
e
y
>
SSZipArchive.xcscheme_
^#
shared
#^
_
<
/k
e
y
>
<
k
e
y
>
SSZipArchive.xcscheme_
^#
shared
#^
_
<
/k
e
y
>
<
d
i
c
t
>
<
d
i
c
t
>
<
k
e
y
>
orderHint
<
/k
e
y
>
<
k
e
y
>
orderHint
<
/k
e
y
>
<
int
e
g
e
r
>
7
2
<
/int
e
g
e
r
>
<
int
e
g
e
r
>
7
6
<
/int
e
g
e
r
>
<
/
d
i
c
t
>
<
/
d
i
c
t
>
<
k
e
y
>
SnapKit-SnapKit_Privacy.xcscheme
<
/k
e
y
>
<
k
e
y
>
SnapKit-SnapKit_Privacy.xcscheme
<
/k
e
y
>
<
d
i
c
t
>
<
d
i
c
t
>
...
...
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