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
f1fd1220
Commit
f1fd1220
authored
Aug 22, 2024
by
Steven杜宇
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
// 去预约
parent
ee39ccb9
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
38 additions
and
1 deletion
+38
-1
YHCertificateAppointViewController.swift
...cate(3 赴港办证预约)/C/YHCertificateAppointViewController.swift
+2
-0
YHReAppointViewController.swift
...ntCertificate(3 赴港办证预约)/C/YHReAppointViewController.swift
+1
-0
YHSelectApplicantGroupCell.swift
...tCertificate(3 赴港办证预约)/V/YHSelectApplicantGroupCell.swift
+35
-1
No files found.
galaxy/galaxy/Classes/Modules/IntelligentService(服务中心)/CustomerService/Certificate(办证段)/AppointCertificate(3 赴港办证预约)/C/YHCertificateAppointViewController.swift
View file @
f1fd1220
...
@@ -257,6 +257,7 @@ extension YHCertificateAppointViewController: UITableViewDelegate, UITableViewDa
...
@@ -257,6 +257,7 @@ extension YHCertificateAppointViewController: UITableViewDelegate, UITableViewDa
// 待预约赴港成员
// 待预约赴港成员
let
cell
=
tableView
.
dequeueReusableCell
(
withIdentifier
:
YHWaitAppointMembersCell
.
cellReuseIdentifier
,
for
:
indexPath
)
as!
YHWaitAppointMembersCell
let
cell
=
tableView
.
dequeueReusableCell
(
withIdentifier
:
YHWaitAppointMembersCell
.
cellReuseIdentifier
,
for
:
indexPath
)
as!
YHWaitAppointMembersCell
cell
.
members
=
waitAppointMembers
cell
.
members
=
waitAppointMembers
cell
.
clickBlock
=
{
cell
.
clickBlock
=
{
[
weak
self
]
in
[
weak
self
]
in
guard
let
self
=
self
else
{
return
}
guard
let
self
=
self
else
{
return
}
...
@@ -270,6 +271,7 @@ extension YHCertificateAppointViewController: UITableViewDelegate, UITableViewDa
...
@@ -270,6 +271,7 @@ extension YHCertificateAppointViewController: UITableViewDelegate, UITableViewDa
if
item
.
type
==
.
confirmGoHKInfo
{
if
item
.
type
==
.
confirmGoHKInfo
{
// 请您确认第X批赴港信息
// 请您确认第X批赴港信息
let
cell
=
tableView
.
dequeueReusableCell
(
withIdentifier
:
YHSelectApplicantGroupCell
.
cellReuseIdentifier
,
for
:
indexPath
)
as!
YHSelectApplicantGroupCell
let
cell
=
tableView
.
dequeueReusableCell
(
withIdentifier
:
YHSelectApplicantGroupCell
.
cellReuseIdentifier
,
for
:
indexPath
)
as!
YHSelectApplicantGroupCell
cell
.
isShowSelectUserView
=
!
self
.
isAllMembersGo
return
cell
return
cell
}
}
...
...
galaxy/galaxy/Classes/Modules/IntelligentService(服务中心)/CustomerService/Certificate(办证段)/AppointCertificate(3 赴港办证预约)/C/YHReAppointViewController.swift
View file @
f1fd1220
...
@@ -92,6 +92,7 @@ extension YHReAppointViewController: UITableViewDelegate, UITableViewDataSource
...
@@ -92,6 +92,7 @@ extension YHReAppointViewController: UITableViewDelegate, UITableViewDataSource
if
item
.
type
==
.
confirmGoHKInfo
{
if
item
.
type
==
.
confirmGoHKInfo
{
// 请您确认第X批赴港信息
// 请您确认第X批赴港信息
let
cell
=
tableView
.
dequeueReusableCell
(
withIdentifier
:
YHSelectApplicantGroupCell
.
cellReuseIdentifier
,
for
:
indexPath
)
as!
YHSelectApplicantGroupCell
let
cell
=
tableView
.
dequeueReusableCell
(
withIdentifier
:
YHSelectApplicantGroupCell
.
cellReuseIdentifier
,
for
:
indexPath
)
as!
YHSelectApplicantGroupCell
cell
.
isShowSelectUserView
=
false
return
cell
return
cell
}
}
}
}
...
...
galaxy/galaxy/Classes/Modules/IntelligentService(服务中心)/CustomerService/Certificate(办证段)/AppointCertificate(3 赴港办证预约)/V/YHSelectApplicantGroupCell.swift
View file @
f1fd1220
...
@@ -22,6 +22,40 @@ class YHSelectApplicantInfo {
...
@@ -22,6 +22,40 @@ class YHSelectApplicantInfo {
class
YHSelectApplicantGroupCell
:
UITableViewCell
{
class
YHSelectApplicantGroupCell
:
UITableViewCell
{
static
let
cellReuseIdentifier
=
"YHSelectApplicantGroupCell"
static
let
cellReuseIdentifier
=
"YHSelectApplicantGroupCell"
let
detailText
=
"选择第一批赴港激活签证的申请人"
var
isShowSelectUserView
:
Bool
=
true
{
didSet
{
detailLabel
.
isHidden
=
!
isShowSelectUserView
selectGroupView
.
isHidden
=
!
isShowSelectUserView
collectionView
.
isHidden
=
!
isShowSelectUserView
lineView
.
isHidden
=
!
isShowSelectUserView
detailLabel
.
text
=
isShowSelectUserView
?
self
.
detailText
:
""
detailLabel
.
snp
.
updateConstraints
{
make
in
make
.
top
.
equalTo
(
lineView
.
snp
.
bottom
)
.
offset
(
isShowSelectUserView
?
16
:
0
)
}
selectGroupView
.
snp
.
updateConstraints
{
make
in
make
.
top
.
equalTo
(
detailLabel
.
snp
.
bottom
)
.
offset
(
isShowSelectUserView
?
12
:
0
)
}
collectionView
.
snp
.
updateConstraints
{
make
in
make
.
top
.
equalTo
(
isShowSelectUserView
?
14
:
0
)
make
.
bottom
.
equalTo
(
isShowSelectUserView
?
-
14
:
0
)
make
.
height
.
equalTo
(
isShowSelectUserView
?
56
:
0
)
}
optionsView
.
snp
.
makeConstraints
{
make
in
make
.
top
.
equalTo
(
selectGroupView
.
snp
.
bottom
)
.
offset
(
isShowSelectUserView
?
16
:
0
)
}
self
.
setNeedsLayout
()
self
.
layoutIfNeeded
()
}
}
lazy
var
selecters
:[
YHSelectApplicantInfo
]
=
{
lazy
var
selecters
:[
YHSelectApplicantInfo
]
=
{
return
[
YHSelectApplicantInfo
(
name
:
"李小龙"
,
isSelect
:
true
),
return
[
YHSelectApplicantInfo
(
name
:
"李小龙"
,
isSelect
:
true
),
...
@@ -57,7 +91,7 @@ class YHSelectApplicantGroupCell: UITableViewCell {
...
@@ -57,7 +91,7 @@ class YHSelectApplicantGroupCell: UITableViewCell {
label
.
numberOfLines
=
0
label
.
numberOfLines
=
0
label
.
font
=
UIFont
.
PFSC_R
(
ofSize
:
14
)
label
.
font
=
UIFont
.
PFSC_R
(
ofSize
:
14
)
label
.
textColor
=
.
mainTextColor
label
.
textColor
=
.
mainTextColor
label
.
text
=
"选择第一批赴港激活签证的申请人"
label
.
text
=
self
.
detailText
return
label
return
label
}()
}()
...
...
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