Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
galaxy-iOS
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
mobile-group
galaxy-iOS
Commits
1dbc22ef
Commit
1dbc22ef
authored
Mar 14, 2025
by
Alex朱枝文
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
格式修改
parent
0ccefffa
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
5 deletions
+6
-5
YHTalentProgramEvaluationView.swift
...es/Modules/Home(首页)/V/YHTalentProgramEvaluationView.swift
+2
-2
YHVideoProgressControl.swift
...ules/LivestreamSales(直播销售)/V/YHVideoProgressControl.swift
+3
-1
YHMemberCenterViewModel.swift
.../Modules/Mine(我的)/ViewModel/YHMemberCenterViewModel.swift
+1
-2
No files found.
galaxy/galaxy/Classes/Modules/Home(首页)/V/YHTalentProgramEvaluationView.swift
View file @
1dbc22ef
...
...
@@ -61,9 +61,9 @@ class YHTalentProgramEvaluationView: UIView {
}
if
!
retUrl
.
contains
(
"navigationH="
)
{
if
retUrl
.
contains
(
"?"
)
{
retUrl
=
retUrl
+
"&navigationH=
\(
k_Height_NavigationtBarAndStatuBar
)
"
retUrl
+=
"&navigationH=
\(
k_Height_NavigationtBarAndStatuBar
)
"
}
else
{
retUrl
=
retUrl
+
"?navigationH=
\(
k_Height_NavigationtBarAndStatuBar
)
"
retUrl
+=
"?navigationH=
\(
k_Height_NavigationtBarAndStatuBar
)
"
}
}
vc
.
url
=
retUrl
...
...
galaxy/galaxy/Classes/Modules/LivestreamSales(直播销售)/V/YHVideoProgressControl.swift
View file @
1dbc22ef
...
...
@@ -299,7 +299,9 @@ extension YHVideoProgressControl: UICollectionViewDataSource, UICollectionViewDe
}
func
collectionView
(
_
collectionView
:
UICollectionView
,
cellForItemAt
indexPath
:
IndexPath
)
->
UICollectionViewCell
{
let
cell
=
collectionView
.
dequeueReusableCell
(
withReuseIdentifier
:
"SegmentCell"
,
for
:
indexPath
)
as!
SegmentCell
guard
segments
.
count
>
indexPath
.
item
,
let
cell
=
collectionView
.
dequeueReusableCell
(
withReuseIdentifier
:
"SegmentCell"
,
for
:
indexPath
)
as?
SegmentCell
else
{
return
UICollectionViewCell
()
}
cell
.
configure
(
with
:
segments
[
indexPath
.
item
],
isSelected
:
indexPath
.
item
==
currentSegmentIndex
)
return
cell
}
...
...
galaxy/galaxy/Classes/Modules/Mine(我的)/ViewModel/YHMemberCenterViewModel.swift
View file @
1dbc22ef
...
...
@@ -14,8 +14,7 @@ class YHMemberCenterViewModel: YHBaseViewModel {
func
getMemberInfo
(
_
callBack
:
@escaping
(
_
success
:
Bool
,
_
error
:
YHErrorModel
?)
->
Void
)
{
let
strUrl
=
YHBaseUrlManager
.
shared
.
curURL
()
+
YHAllApiName
.
Member
.
memberBenefits
_
=
YHNetRequest
.
getRequest
(
url
:
strUrl
)
{
[
weak
self
]
json
,
_
in
_
=
YHNetRequest
.
getRequest
(
url
:
strUrl
)
{
[
weak
self
]
json
,
_
in
// 1. json字符串 转 对象
guard
let
self
=
self
else
{
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