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
89b810f9
Commit
89b810f9
authored
Mar 13, 2024
by
David黄金龙
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1、处理一处编译不过的问题
2、修改2处UIbug
parent
84d18294
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
YHInformationPerfectListVC.swift
...telligentService(服务中心)/C/YHInformationPerfectListVC.swift
+5
-1
YHCertificateFilterView.swift
...务中心)/MyCertificates(我的证书)/V/YHCertificateFilterView.swift
+3
-1
No files found.
galaxy/galaxy/Classes/Modules/IntelligentService(服务中心)/C/YHInformationPerfectListVC.swift
View file @
89b810f9
...
...
@@ -23,7 +23,11 @@ class YHInformationPerfectListVC: YHBaseViewController {
if
hasSubmitFlag
==
true
{
headerTitleDesLable
.
text
=
"您已提交信息表"
}
else
{
headerTitleDesLable
.
text
=
"您好,"
+
(
serviceCenterMainReqVM
.
informationFillStepModel
?
.
applicantName
??
"-"
)
var
name
=
""
if
let
applicant
=
serviceCenterMainReqVM
.
informationFillStepModel
{
name
=
applicant
.
applicantName
.
defaultStringIfEmpty
(
detaultValue
:
"尊敬的客户"
)
}
headerTitleDesLable
.
text
=
"您好,"
+
name
}
}
}
...
...
galaxy/galaxy/Classes/Modules/IntelligentService(服务中心)/MyCertificates(我的证书)/V/YHCertificateFilterView.swift
View file @
89b810f9
...
...
@@ -281,7 +281,9 @@ extension YHCertificateFilterView:UICollectionViewDataSource, UICollectionViewDe
}
func
collectionView
(
_
collectionView
:
UICollectionView
,
layout
collectionViewLayout
:
UICollectionViewLayout
,
sizeForItemAt
indexPath
:
IndexPath
)
->
CGSize
{
return
CGSize
(
width
:
floorl
((
KScreenWidth
-
Self
.
margin
*
2
-
Self
.
gap
*
3
)
/
4.0
),
height
:
Self
.
itemHeight
)
var
width
=
Double
(
KScreenWidth
-
Self
.
margin
*
2.0
-
Self
.
gap
*
3.0
)
width
=
floor
(
width
/
4.0
)
return
CGSize
(
width
:
width
,
height
:
Self
.
itemHeight
)
}
func
collectionView
(
_
collectionView
:
UICollectionView
,
layout
collectionViewLayout
:
UICollectionViewLayout
,
referenceSizeForHeaderInSection
:
Int
)
->
CGSize
{
...
...
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