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
0273fe03
Commit
0273fe03
authored
Aug 26, 2024
by
Steven杜宇
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
// UI
parent
d81a27e8
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
14 additions
and
5 deletions
+14
-5
YHCertificateAppointViewController.swift
...cate(3 赴港办证预约)/C/YHCertificateAppointViewController.swift
+4
-0
YHGrabNumberInfoView.swift
...AppointCertificate(3 赴港办证预约)/V/YHGrabNumberInfoView.swift
+5
-0
YHGrabingNumberListView.swift
...ointCertificate(3 赴港办证预约)/V/YHGrabingNumberListView.swift
+1
-1
YHHaveGrabbedNumberInfoView.swift
...Certificate(3 赴港办证预约)/V/YHHaveGrabbedNumberInfoView.swift
+4
-4
No files found.
galaxy/galaxy/Classes/Modules/IntelligentService(服务中心)/CustomerService/Certificate(办证段)/AppointCertificate(3 赴港办证预约)/C/YHCertificateAppointViewController.swift
View file @
0273fe03
...
...
@@ -291,6 +291,10 @@ class YHCertificateAppointViewController: YHBaseViewController {
}
else
{
// 还有未预约人员
// 不显示底部按钮
self
.
bottomStatus
=
.
hidden
if
self
.
successList
.
count
>
0
{
// 有不分成功预约人员
// 底部按钮显示下一步去缴费
self
.
bottomStatus
=
.
nextStepToPay
}
}
}
...
...
galaxy/galaxy/Classes/Modules/IntelligentService(服务中心)/CustomerService/Certificate(办证段)/AppointCertificate(3 赴港办证预约)/V/YHGrabNumberInfoView.swift
View file @
0273fe03
...
...
@@ -86,6 +86,11 @@ class YHGrabNumberInfoItemView: UIView {
detailLabel
.
textColor
=
infoColor
}
detailLabel
.
snp
.
updateConstraints
{
make
in
make
.
left
.
greaterThanOrEqualTo
(
titleLabel
.
snp
.
right
)
.
offset
(
item
.
isSingleLine
?
-
20
:
0
)
}
dotView
.
isHidden
=
(
item
.
type
!=
.
grab
)
collectionView
.
isHidden
=
item
.
type
!=
.
files
collectionView
.
reloadData
()
...
...
galaxy/galaxy/Classes/Modules/IntelligentService(服务中心)/CustomerService/Certificate(办证段)/AppointCertificate(3 赴港办证预约)/V/YHGrabingNumberListView.swift
View file @
0273fe03
...
...
@@ -68,7 +68,7 @@ class YHGrabingNumberListView: UIView {
view
.
titleLabel
.
text
=
"意向信息"
let
items
=
[
YHGrabItem
(
type
:
.
info
,
title
:
"期望赴港时间:"
,
detail
:
""
,
isSingleLine
:
true
),
YHGrabItem
(
type
:
.
info
,
title
:
"期望香港办证点:"
,
detail
:
""
,
isSingleLine
:
false
),
YHGrabItem
(
type
:
.
files
,
title
:
"抢号反馈回执:"
,
detail
:
""
),]
YHGrabItem
(
type
:
.
files
,
title
:
"抢号反馈回执:"
,
detail
:
""
,
isSingleLine
:
true
),]
view
.
updateItems
(
items
)
return
view
}()
...
...
galaxy/galaxy/Classes/Modules/IntelligentService(服务中心)/CustomerService/Certificate(办证段)/AppointCertificate(3 赴港办证预约)/V/YHHaveGrabbedNumberInfoView.swift
View file @
0273fe03
...
...
@@ -41,8 +41,8 @@ class YHHaveGrabbedNumberInfoView: UIView {
lazy
var
grabInfoView
:
YHGrabNumberInfoView
=
{
let
view
=
YHGrabNumberInfoView
(
frame
:
.
zero
)
view
.
titleLabel
.
text
=
"抢号信息"
let
items
=
[
YHGrabItem
(
type
:
.
info
,
title
:
"赴港时间:"
,
detail
:
""
),
YHGrabItem
(
type
:
.
info
,
title
:
"香港办证点:"
,
detail
:
""
),
let
items
=
[
YHGrabItem
(
type
:
.
info
,
title
:
"赴港时间:"
,
detail
:
""
,
isSingleLine
:
true
),
YHGrabItem
(
type
:
.
info
,
title
:
"香港办证点:"
,
detail
:
""
,
isSingleLine
:
false
),
YHGrabItem
(
type
:
.
files
,
title
:
"抢号反馈回执:"
,
detail
:
""
,
files
:
[]),]
view
.
updateItems
(
items
)
return
view
...
...
@@ -51,8 +51,8 @@ class YHHaveGrabbedNumberInfoView: UIView {
lazy
var
intentionInfoView
:
YHGrabNumberInfoView
=
{
let
view
=
YHGrabNumberInfoView
(
frame
:
.
zero
)
view
.
titleLabel
.
text
=
"意向信息"
let
items
=
[
YHGrabItem
(
type
:
.
info
,
title
:
"期望赴港时间:"
,
detail
:
""
),
YHGrabItem
(
type
:
.
info
,
title
:
"期望香港办证点:"
,
detail
:
""
)]
let
items
=
[
YHGrabItem
(
type
:
.
info
,
title
:
"期望赴港时间:"
,
detail
:
""
,
isSingleLine
:
true
),
YHGrabItem
(
type
:
.
info
,
title
:
"期望香港办证点:"
,
detail
:
""
,
isSingleLine
:
false
)]
view
.
updateItems
(
items
)
return
view
}()
...
...
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