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
41427814
Commit
41427814
authored
Dec 27, 2024
by
pete谢兆麟
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'develop' of
http://gitlab.galaxy-immi.com/mobile-group/galaxy-iOS
into develop
parents
bf20f7d1
0396ff70
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
7 deletions
+27
-7
YHGCChildPrimaryInfoVC.swift
...milyMember(家庭成员)/C/Child(子女)/YHGCChildPrimaryInfoVC.swift
+15
-3
YHGCSpousePrimaryInfoVC.swift
...lyMember(家庭成员)/C/Spouse(配偶)/YHGCSpousePrimaryInfoVC.swift
+12
-4
No files found.
galaxy/galaxy/Classes/Modules/IntelligentService(服务中心)/TTPS(高才)/ServiceProcess(我的信息流程)/FamilyMember(家庭成员)/C/Child(子女)/YHGCChildPrimaryInfoVC.swift
View file @
41427814
...
...
@@ -75,9 +75,13 @@ class YHGCChildPrimaryInfoVC: YHBaseViewController, YHFamilyMemberProtol {
// 居住信息
let
title2
=
YHFormTitleItem
(
type
:
.
liveInfo
)
let
item20
=
YHFormDetailItem
(
type
:
.
isLiveTother
,
value
:
String
(
child
.
isLiveTother
()))
let
item21
=
YHFormDetailItem
(
type
:
.
permanentResidenceStatus
,
value
:
String
(
child
.
havePermanentResidency
))
item21
.
tips
=
"请选择"
var
arr2
:
[
YHFormItemProtocol
]
=
[
title2
,
item20
,
item21
]
var
arr2
:
[
YHFormItemProtocol
]
=
[
title2
,
item20
]
let
addResidenceBlock
=
{
let
item21
=
YHFormDetailItem
(
type
:
.
permanentResidenceStatus
,
value
:
String
(
child
.
havePermanentResidency
))
item21
.
tips
=
"请选择"
arr2
.
append
(
item21
)
}
if
!
child
.
isLiveTother
()
{
// 不同住 才需填写国家/地区
let
item21
=
YHFormDetailItem
(
type
:
.
nationOrArea
,
value
:
child
.
address
.
country
,
tips
:
"请选择国家/地区"
.
local
)
...
...
@@ -102,12 +106,20 @@ class YHGCChildPrimaryInfoVC: YHBaseViewController, YHFamilyMemberProtol {
let
item23
=
YHFormDetailItem
(
type
:
.
detailAddress
,
value
:
detailAddress
,
placeHolder
:
placeHolder
,
tips
:
placeHolder
)
arr2
.
append
(
item23
)
addResidenceBlock
()
if
!
isLiveInChina
{
// 在国外
// 是否在海外居住满1年及以上
let
item24
=
YHFormDetailItem
(
type
:
.
isLiveOverSeasMore1Year
,
value
:
String
(
child
.
isOverSeasOver1Year
()))
arr2
.
append
(
item24
)
}
}
else
{
addResidenceBlock
()
}
}
else
{
addResidenceBlock
()
}
items
.
append
(
contentsOf
:[
arr1
,
arr2
])
...
...
galaxy/galaxy/Classes/Modules/IntelligentService(服务中心)/TTPS(高才)/ServiceProcess(我的信息流程)/FamilyMember(家庭成员)/C/Spouse(配偶)/YHGCSpousePrimaryInfoVC.swift
View file @
41427814
...
...
@@ -80,11 +80,12 @@ class YHGCSpousePrimaryInfoVC: YHBaseViewController, YHFamilyMemberProtol {
let
item20
=
YHFormDetailItem
(
type
:
.
isLiveTother
,
value
:
String
(
spouse
.
isLiveTother
()))
arr2
.
append
(
item20
)
let
item21
=
YHFormDetailItem
(
type
:
.
permanentResidenceStatus
,
value
:
String
(
spouse
.
havePermanentResidency
))
item21
.
tips
=
"请选择"
arr2
.
append
(
item21
)
let
addResidenceBlock
=
{
let
item21
=
YHFormDetailItem
(
type
:
.
permanentResidenceStatus
,
value
:
String
(
spouse
.
havePermanentResidency
))
item21
.
tips
=
"请选择"
arr2
.
append
(
item21
)
}
if
!
spouse
.
isLiveTother
()
{
// 不同住 才需填写国家/地区
let
item21
=
YHFormDetailItem
(
type
:
.
nationOrArea
,
value
:
spouse
.
address
.
country
,
placeHolder
:
"请选择"
.
local
,
tips
:
"请选择国家/地区"
.
local
)
...
...
@@ -111,13 +112,20 @@ class YHGCSpousePrimaryInfoVC: YHBaseViewController, YHFamilyMemberProtol {
let
item23
=
YHFormDetailItem
(
type
:
.
detailAddress
,
value
:
detailAddress
,
placeHolder
:
placeHolder
,
tips
:
tips
)
arr2
.
append
(
item23
)
addResidenceBlock
()
if
!
isLiveInChina
{
// 在国外
// 是否在海外居住满1年及以上
let
item24
=
YHFormDetailItem
(
type
:
.
isLiveOverSeasMore1Year
)
item24
.
value
=
String
(
spouse
.
isOverSeasOver1Year
())
arr2
.
append
(
item24
)
}
}
else
{
addResidenceBlock
()
}
}
else
{
addResidenceBlock
()
}
items
.
append
(
contentsOf
:[
arr1
,
arr2
])
...
...
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