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
53e9ee36
Commit
53e9ee36
authored
Mar 17, 2025
by
Steven杜宇
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
// lint
parent
3878f029
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
23 additions
and
9 deletions
+23
-9
YHCertificateAppointViewController.swift
...cate(3 赴港办证预约)/C/YHCertificateAppointViewController.swift
+1
-1
YHQualificationDetailVC.swift
...n&Qualification(学历专业资格填写)/C/YHQualificationDetailVC.swift
+3
-1
YHSpouseBasicInfoVC.swift
...ilyMember(家庭成员信息表)/C/Spouse(配偶)/YHSpouseBasicInfoVC.swift
+19
-7
No files found.
galaxy/galaxy/Classes/Modules/IntelligentService(服务中心)/QMAS(优才)/CustomerService(客服段)/Certificate(办证段)/AppointCertificate(3 赴港办证预约)/C/YHCertificateAppointViewController.swift
View file @
53e9ee36
...
@@ -816,7 +816,7 @@ extension YHCertificateAppointViewController {
...
@@ -816,7 +816,7 @@ extension YHCertificateAppointViewController {
return
$0
.
isSelected
==
true
return
$0
.
isSelected
==
true
}
}
let
users
=
selectUsers
.
map
{
let
users
=
selectUsers
.
map
{
let
dict
:[
String
:
Any
]
=
[
"id"
:
$0
.
id
,
let
dict
:
[
String
:
Any
]
=
[
"id"
:
$0
.
id
,
"type"
:
$0
.
type
,
"type"
:
$0
.
type
,
"name"
:
$0
.
name
]
"name"
:
$0
.
name
]
return
dict
return
dict
...
...
galaxy/galaxy/Classes/Modules/IntelligentService(服务中心)/QMAS(优才)/ServiceProcess(我的信息流程)/Education&Qualification(学历专业资格填写)/C/YHQualificationDetailVC.swift
View file @
53e9ee36
...
@@ -376,7 +376,9 @@ extension YHQualificationDetailVC: UITableViewDelegate, UITableViewDataSource {
...
@@ -376,7 +376,9 @@ extension YHQualificationDetailVC: UITableViewDelegate, UITableViewDataSource {
}
}
if
item
is
YHFormDetailItem
{
if
item
is
YHFormDetailItem
{
let
detailItem
=
item
as!
YHFormDetailItem
guard
let
detailItem
=
item
as?
YHFormDetailItem
else
{
return
.
defaultType
}
if
detailItem
.
type
==
.
conferCity
{
if
detailItem
.
type
==
.
conferCity
{
if
detailInfo
.
isCollegeInAboard
()
{
if
detailInfo
.
isCollegeInAboard
()
{
...
...
galaxy/galaxy/Classes/Modules/IntelligentService(服务中心)/QMAS(优才)/ServiceProcess(我的信息流程)/FamilyMember(家庭成员信息表)/C/Spouse(配偶)/YHSpouseBasicInfoVC.swift
View file @
53e9ee36
...
@@ -371,13 +371,15 @@ extension YHSpouseBasicInfoVC: UITableViewDelegate, UITableViewDataSource {
...
@@ -371,13 +371,15 @@ extension YHSpouseBasicInfoVC: UITableViewDelegate, UITableViewDataSource {
let
cellType
=
getCellType
(
item
)
let
cellType
=
getCellType
(
item
)
if
cellType
==
.
title
{
// 标题
if
cellType
==
.
title
{
// 标题
let
cell
=
tableView
.
dequeueReusableCell
(
withIdentifier
:
YHFormItemTitleCell
.
cellReuseIdentifier
,
for
:
indexPath
)
as!
YHFormItemTitleCell
guard
let
cell
=
tableView
.
dequeueReusableCell
(
withIdentifier
:
YHFormItemTitleCell
.
cellReuseIdentifier
,
for
:
indexPath
)
as?
YHFormItemTitleCell
else
{
return
UITableViewCell
()
}
cell
.
setTitleAndSubTitle
(
title
:
item
.
getTitle
())
cell
.
setTitleAndSubTitle
(
title
:
item
.
getTitle
())
return
cell
return
cell
}
}
if
cellType
==
.
addItem
{
// 新增item cell
if
cellType
==
.
addItem
{
// 新增item cell
let
cell
=
tableView
.
dequeueReusableCell
(
withIdentifier
:
YHFormItemAddCell
.
cellReuseIdentifier
,
for
:
indexPath
)
as!
YHFormItemAddCell
guard
let
cell
=
tableView
.
dequeueReusableCell
(
withIdentifier
:
YHFormItemAddCell
.
cellReuseIdentifier
,
for
:
indexPath
)
as?
YHFormItemAddCell
else
{
return
UITableViewCell
()
}
cell
.
title
=
item
.
getTitle
()
cell
.
title
=
item
.
getTitle
()
cell
.
clickBlock
=
{
cell
.
clickBlock
=
{
[
weak
self
]
in
[
weak
self
]
in
...
@@ -390,10 +392,14 @@ extension YHSpouseBasicInfoVC: UITableViewDelegate, UITableViewDataSource {
...
@@ -390,10 +392,14 @@ extension YHSpouseBasicInfoVC: UITableViewDelegate, UITableViewDataSource {
}
}
if
item
is
YHFormDetailItem
{
if
item
is
YHFormDetailItem
{
let
detailItem
=
item
as!
YHFormDetailItem
guard
let
detailItem
=
item
as?
YHFormDetailItem
else
{
return
UITableViewCell
()
}
if
cellType
==
.
inputText
{
// 输入文字cell
if
cellType
==
.
inputText
{
// 输入文字cell
let
cell
=
tableView
.
dequeueReusableCell
(
withIdentifier
:
YHFormItemInputTextCell
.
cellReuseIdentifier
,
for
:
indexPath
)
as!
YHFormItemInputTextCell
guard
let
cell
=
tableView
.
dequeueReusableCell
(
withIdentifier
:
YHFormItemInputTextCell
.
cellReuseIdentifier
,
for
:
indexPath
)
as?
YHFormItemInputTextCell
else
{
return
UITableViewCell
()
}
cell
.
isMust
=
detailItem
.
isNeed
cell
.
isMust
=
detailItem
.
isNeed
cell
.
placeHolder
=
detailItem
.
placeHolder
cell
.
placeHolder
=
detailItem
.
placeHolder
cell
.
title
=
detailItem
.
getTitle
()
cell
.
title
=
detailItem
.
getTitle
()
...
@@ -484,7 +490,9 @@ extension YHSpouseBasicInfoVC: UITableViewDelegate, UITableViewDataSource {
...
@@ -484,7 +490,9 @@ extension YHSpouseBasicInfoVC: UITableViewDelegate, UITableViewDataSource {
}
}
if
cellType
==
.
selectSheet
{
// 点击选择列表cell
if
cellType
==
.
selectSheet
{
// 点击选择列表cell
let
cell
=
tableView
.
dequeueReusableCell
(
withIdentifier
:
YHFormItemSelectSheetCell
.
cellReuseIdentifier
,
for
:
indexPath
)
as!
YHFormItemSelectSheetCell
guard
let
cell
=
tableView
.
dequeueReusableCell
(
withIdentifier
:
YHFormItemSelectSheetCell
.
cellReuseIdentifier
,
for
:
indexPath
)
as?
YHFormItemSelectSheetCell
else
{
return
UITableViewCell
()
}
cell
.
isMust
=
detailItem
.
isNeed
cell
.
isMust
=
detailItem
.
isNeed
cell
.
placeHolder
=
detailItem
.
placeHolder
cell
.
placeHolder
=
detailItem
.
placeHolder
cell
.
title
=
detailItem
.
getTitle
()
cell
.
title
=
detailItem
.
getTitle
()
...
@@ -496,7 +504,9 @@ extension YHSpouseBasicInfoVC: UITableViewDelegate, UITableViewDataSource {
...
@@ -496,7 +504,9 @@ extension YHSpouseBasicInfoVC: UITableViewDelegate, UITableViewDataSource {
if
cellType
==
.
twoChoice
{
// 双项选择cell
if
cellType
==
.
twoChoice
{
// 双项选择cell
let
cell
=
tableView
.
dequeueReusableCell
(
withIdentifier
:
YHFormItemDoubleChoiceCell
.
cellReuseIdentifier
,
for
:
indexPath
)
as!
YHFormItemDoubleChoiceCell
guard
let
cell
=
tableView
.
dequeueReusableCell
(
withIdentifier
:
YHFormItemDoubleChoiceCell
.
cellReuseIdentifier
,
for
:
indexPath
)
as?
YHFormItemDoubleChoiceCell
else
{
return
UITableViewCell
()
}
cell
.
isMust
=
detailItem
.
isNeed
cell
.
isMust
=
detailItem
.
isNeed
cell
.
title
=
item
.
getTitle
()
cell
.
title
=
item
.
getTitle
()
...
@@ -550,7 +560,9 @@ extension YHSpouseBasicInfoVC: UITableViewDelegate, UITableViewDataSource {
...
@@ -550,7 +560,9 @@ extension YHSpouseBasicInfoVC: UITableViewDelegate, UITableViewDataSource {
if
cellType
==
.
degreeDetailInfo
{
// 学位cell
if
cellType
==
.
degreeDetailInfo
{
// 学位cell
let
cell
=
tableView
.
dequeueReusableCell
(
withIdentifier
:
YHFormItemDegreeInfoCell
.
cellReuseIdentifier
,
for
:
indexPath
)
as!
YHFormItemDegreeInfoCell
guard
let
cell
=
tableView
.
dequeueReusableCell
(
withIdentifier
:
YHFormItemDegreeInfoCell
.
cellReuseIdentifier
,
for
:
indexPath
)
as?
YHFormItemDegreeInfoCell
else
{
return
UITableViewCell
()
}
if
let
degreeArr
=
self
.
spouse
?
.
hasDegreeJson
{
if
let
degreeArr
=
self
.
spouse
?
.
hasDegreeJson
{
if
indexPath
.
row
-
2
<
degreeArr
.
count
{
if
indexPath
.
row
-
2
<
degreeArr
.
count
{
...
...
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