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
727e9b0f
Commit
727e9b0f
authored
Oct 11, 2024
by
Steven杜宇
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'develop' of
http://gitlab.galaxy-immi.com/mobile-group/galaxy-iOS
into develop
parents
fafa7c66
a064fc53
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
101 additions
and
6 deletions
+101
-6
YHHKImmigrationRecordsVC.swift
...migrationRecords(在港记录管理)/C/YHHKImmigrationRecordsVC.swift
+0
-1
YHHKRecordsEditContentVC.swift
...migrationRecords(在港记录管理)/C/YHHKRecordsEditContentVC.swift
+0
-1
YHHKVisaRenewalPaymentVC.swift
...saRenewalPayment(续签在港缴费)/C/YHHKVisaRenewalPaymentVC.swift
+79
-2
YHVisaRenewalGuideVC.swift
...ngVisaRenewalPayment(续签在港缴费)/C/YHVisaRenewalGuideVC.swift
+0
-1
YHVisaRenewalTroubleshootingGuideVC.swift
...yment(续签在港缴费)/C/YHVisaRenewalTroubleshootingGuideVC.swift
+0
-1
Contents.json
...er/续签/续签在港缴费/resign_visa_pay_guide.imageset/Contents.json
+22
-0
resign_visa_pay_guide@2x.png
...sign_visa_pay_guide.imageset/resign_visa_pay_guide@2x.png
+0
-0
resign_visa_pay_guide@3x.png
...sign_visa_pay_guide.imageset/resign_visa_pay_guide@3x.png
+0
-0
No files found.
galaxy/galaxy/Classes/Modules/IntelligentService(服务中心)/Resign(续签)/HongKongImmigrationRecords(在港记录管理)/C/YHHKImmigrationRecordsVC.swift
View file @
727e9b0f
...
@@ -118,7 +118,6 @@ extension YHHKImmigrationRecordsVC {
...
@@ -118,7 +118,6 @@ extension YHHKImmigrationRecordsVC {
bottomView
.
snp
.
makeConstraints
{
make
in
bottomView
.
snp
.
makeConstraints
{
make
in
make
.
left
.
right
.
equalToSuperview
()
make
.
left
.
right
.
equalToSuperview
()
make
.
right
.
equalToSuperview
()
make
.
bottom
.
equalTo
(
view
.
safeAreaLayoutGuide
.
snp
.
bottom
)
make
.
bottom
.
equalTo
(
view
.
safeAreaLayoutGuide
.
snp
.
bottom
)
make
.
height
.
equalTo
(
64
)
make
.
height
.
equalTo
(
64
)
}
}
...
...
galaxy/galaxy/Classes/Modules/IntelligentService(服务中心)/Resign(续签)/HongKongImmigrationRecords(在港记录管理)/C/YHHKRecordsEditContentVC.swift
View file @
727e9b0f
...
@@ -135,7 +135,6 @@ extension YHHKRecordsEditContentVC {
...
@@ -135,7 +135,6 @@ extension YHHKRecordsEditContentVC {
bottomView
.
snp
.
makeConstraints
{
make
in
bottomView
.
snp
.
makeConstraints
{
make
in
make
.
left
.
right
.
equalToSuperview
()
make
.
left
.
right
.
equalToSuperview
()
make
.
right
.
equalToSuperview
()
make
.
bottom
.
equalTo
(
view
.
safeAreaLayoutGuide
.
snp
.
bottom
)
make
.
bottom
.
equalTo
(
view
.
safeAreaLayoutGuide
.
snp
.
bottom
)
make
.
height
.
equalTo
(
64
)
make
.
height
.
equalTo
(
64
)
}
}
...
...
galaxy/galaxy/Classes/Modules/IntelligentService(服务中心)/Resign(续签)/HongKongVisaRenewalPayment(续签在港缴费)/C/YHHKVisaRenewalPaymentVC.swift
View file @
727e9b0f
...
@@ -16,7 +16,7 @@ class YHHKVisaRenewalPaymentVC: YHBaseViewController {
...
@@ -16,7 +16,7 @@ class YHHKVisaRenewalPaymentVC: YHBaseViewController {
}()
}()
private
lazy
var
tableView
:
UITableView
=
{
private
lazy
var
tableView
:
UITableView
=
{
let
view
=
UITableView
(
frame
:
.
zero
,
style
:
.
plain
)
let
view
=
UITableView
(
frame
:
.
zero
,
style
:
.
grouped
)
view
.
backgroundColor
=
.
clear
view
.
backgroundColor
=
.
clear
view
.
separatorStyle
=
.
none
view
.
separatorStyle
=
.
none
view
.
rowHeight
=
UITableView
.
automaticDimension
view
.
rowHeight
=
UITableView
.
automaticDimension
...
@@ -28,6 +28,53 @@ class YHHKVisaRenewalPaymentVC: YHBaseViewController {
...
@@ -28,6 +28,53 @@ class YHHKVisaRenewalPaymentVC: YHBaseViewController {
return
view
return
view
}()
}()
private
lazy
var
guideButton
:
UIControl
=
{
let
button
=
UIControl
()
let
titleLabel
=
UILabel
()
titleLabel
.
text
=
"领取续签指引"
titleLabel
.
textColor
=
.
mainTextColor
titleLabel
.
textAlignment
=
.
center
titleLabel
.
font
=
UIFont
.
PFSC_R
(
ofSize
:
11
)
let
image
=
UIImage
(
named
:
"resign_visa_pay_guide"
)
let
imageView
=
UIImageView
(
image
:
image
)
button
.
addSubview
(
titleLabel
)
button
.
addSubview
(
imageView
)
imageView
.
snp
.
makeConstraints
{
make
in
make
.
top
.
equalToSuperview
()
.
offset
(
12
)
make
.
centerX
.
equalToSuperview
()
make
.
width
.
height
.
equalTo
(
24
)
}
titleLabel
.
snp
.
makeConstraints
{
make
in
make
.
top
.
equalTo
(
imageView
.
snp
.
bottom
)
make
.
centerX
.
equalTo
(
imageView
)
}
button
.
addTarget
(
self
,
action
:
#selector(
clickGuideButton
)
,
for
:
.
touchUpInside
)
return
button
}()
private
lazy
var
sureButton
:
UIButton
=
{
let
button
=
UIButton
(
type
:
.
custom
)
button
.
titleLabel
?
.
font
=
UIFont
.
PFSC_M
(
ofSize
:
16
)
button
.
setTitle
(
"去上传旅行证件"
,
for
:
.
normal
)
button
.
setTitle
(
"去上传旅行证件"
,
for
:
.
highlighted
)
button
.
setTitleColor
(
UIColor
(
hex
:
0xffffff
),
for
:
.
normal
)
button
.
setTitleColor
(
UIColor
(
hex
:
0xffffff
),
for
:
.
highlighted
)
button
.
setTitleColor
(
UIColor
(
hex
:
0xffffff
),
for
:
.
disabled
)
button
.
addTarget
(
self
,
action
:
#selector(
clickSureButton
)
,
for
:
.
touchUpInside
)
button
.
layer
.
cornerRadius
=
kCornerRadius3
button
.
clipsToBounds
=
true
button
.
backgroundColor
=
.
brandMainColor
button
.
alpha
=
0.3
button
.
isEnabled
=
false
return
button
}()
private
lazy
var
bottomView
:
UIView
=
{
let
view
=
UIView
()
view
.
backgroundColor
=
.
white
return
view
}()
private
var
didShowGuideVC
=
false
private
var
didShowGuideVC
=
false
private
let
orderId
:
Int
private
let
orderId
:
Int
...
@@ -58,6 +105,14 @@ class YHHKVisaRenewalPaymentVC: YHBaseViewController {
...
@@ -58,6 +105,14 @@ class YHHKVisaRenewalPaymentVC: YHBaseViewController {
}
}
extension
YHHKVisaRenewalPaymentVC
{
extension
YHHKVisaRenewalPaymentVC
{
@objc
private
func
clickGuideButton
()
{
showGuideVC
()
}
@objc
private
func
clickSureButton
()
{
//
}
private
func
setupUI
()
{
private
func
setupUI
()
{
gk_navTitle
=
"签证缴费"
gk_navTitle
=
"签证缴费"
gk_navBarAlpha
=
1.0
gk_navBarAlpha
=
1.0
...
@@ -65,6 +120,28 @@ extension YHHKVisaRenewalPaymentVC {
...
@@ -65,6 +120,28 @@ extension YHHKVisaRenewalPaymentVC {
view
.
backgroundColor
=
UIColor
.
contentBkgColor
view
.
backgroundColor
=
UIColor
.
contentBkgColor
view
.
addSubview
(
stepView
)
view
.
addSubview
(
stepView
)
view
.
addSubview
(
tableView
)
view
.
addSubview
(
tableView
)
view
.
addSubview
(
bottomView
)
bottomView
.
addSubview
(
sureButton
)
bottomView
.
addSubview
(
guideButton
)
bottomView
.
snp
.
makeConstraints
{
make
in
make
.
left
.
right
.
equalToSuperview
()
make
.
bottom
.
equalTo
(
view
.
safeAreaLayoutGuide
.
snp
.
bottom
)
make
.
height
.
equalTo
(
64
)
}
guideButton
.
snp
.
makeConstraints
{
make
in
make
.
left
.
equalToSuperview
()
make
.
top
.
bottom
.
equalToSuperview
()
make
.
width
.
equalTo
(
106
)
}
sureButton
.
snp
.
makeConstraints
{
make
in
make
.
left
.
equalTo
(
guideButton
.
snp
.
right
)
make
.
right
.
equalToSuperview
()
.
offset
(
-
20
)
make
.
centerY
.
equalToSuperview
()
make
.
height
.
equalTo
(
48
)
}
stepView
.
snp
.
makeConstraints
{
make
in
stepView
.
snp
.
makeConstraints
{
make
in
make
.
left
.
right
.
equalToSuperview
()
make
.
left
.
right
.
equalToSuperview
()
make
.
top
.
equalTo
(
k_Height_NavigationtBarAndStatuBar
)
make
.
top
.
equalTo
(
k_Height_NavigationtBarAndStatuBar
)
...
@@ -74,7 +151,7 @@ extension YHHKVisaRenewalPaymentVC {
...
@@ -74,7 +151,7 @@ extension YHHKVisaRenewalPaymentVC {
make
.
left
.
equalToSuperview
()
.
offset
(
kMargin
)
.
priority
(
.
high
)
make
.
left
.
equalToSuperview
()
.
offset
(
kMargin
)
.
priority
(
.
high
)
make
.
right
.
equalToSuperview
()
.
offset
(
-
kMargin
)
.
priority
(
.
high
)
make
.
right
.
equalToSuperview
()
.
offset
(
-
kMargin
)
.
priority
(
.
high
)
make
.
top
.
equalTo
(
stepView
.
snp
.
bottom
)
make
.
top
.
equalTo
(
stepView
.
snp
.
bottom
)
make
.
bottom
.
equalTo
Superview
(
)
make
.
bottom
.
equalTo
(
bottomView
.
snp
.
top
)
}
}
tableView
.
tableHeaderView
=
UIView
(
frame
:
CGRect
.
init
(
x
:
0
,
y
:
0
,
width
:
KScreenWidth
,
height
:
kMargin
))
tableView
.
tableHeaderView
=
UIView
(
frame
:
CGRect
.
init
(
x
:
0
,
y
:
0
,
width
:
KScreenWidth
,
height
:
kMargin
))
...
...
galaxy/galaxy/Classes/Modules/IntelligentService(服务中心)/Resign(续签)/HongKongVisaRenewalPayment(续签在港缴费)/C/YHVisaRenewalGuideVC.swift
View file @
727e9b0f
...
@@ -112,7 +112,6 @@ extension YHVisaRenewalGuideVC {
...
@@ -112,7 +112,6 @@ extension YHVisaRenewalGuideVC {
bottomView
.
addSubview
(
sureButton
)
bottomView
.
addSubview
(
sureButton
)
bottomView
.
snp
.
makeConstraints
{
make
in
bottomView
.
snp
.
makeConstraints
{
make
in
make
.
left
.
right
.
equalToSuperview
()
make
.
left
.
right
.
equalToSuperview
()
make
.
right
.
equalToSuperview
()
make
.
bottom
.
equalTo
(
view
.
safeAreaLayoutGuide
.
snp
.
bottom
)
make
.
bottom
.
equalTo
(
view
.
safeAreaLayoutGuide
.
snp
.
bottom
)
make
.
height
.
equalTo
(
64
)
make
.
height
.
equalTo
(
64
)
}
}
...
...
galaxy/galaxy/Classes/Modules/IntelligentService(服务中心)/Resign(续签)/HongKongVisaRenewalPayment(续签在港缴费)/C/YHVisaRenewalTroubleshootingGuideVC.swift
View file @
727e9b0f
...
@@ -81,7 +81,6 @@ extension YHVisaRenewalTroubleshootingGuideVC {
...
@@ -81,7 +81,6 @@ extension YHVisaRenewalTroubleshootingGuideVC {
bottomView
.
addSubview
(
sureButton
)
bottomView
.
addSubview
(
sureButton
)
bottomView
.
snp
.
makeConstraints
{
make
in
bottomView
.
snp
.
makeConstraints
{
make
in
make
.
left
.
right
.
equalToSuperview
()
make
.
left
.
right
.
equalToSuperview
()
make
.
right
.
equalToSuperview
()
make
.
bottom
.
equalTo
(
view
.
safeAreaLayoutGuide
.
snp
.
bottom
)
make
.
bottom
.
equalTo
(
view
.
safeAreaLayoutGuide
.
snp
.
bottom
)
make
.
height
.
equalTo
(
64
)
make
.
height
.
equalTo
(
64
)
}
}
...
...
galaxy/galaxy/Res/Assets.xcassets/ServiceCenter/续签/续签在港缴费/resign_visa_pay_guide.imageset/Contents.json
0 → 100644
View file @
727e9b0f
{
"images"
:
[
{
"idiom"
:
"universal"
,
"scale"
:
"1x"
},
{
"filename"
:
"resign_visa_pay_guide@2x.png"
,
"idiom"
:
"universal"
,
"scale"
:
"2x"
},
{
"filename"
:
"resign_visa_pay_guide@3x.png"
,
"idiom"
:
"universal"
,
"scale"
:
"3x"
}
],
"info"
:
{
"author"
:
"xcode"
,
"version"
:
1
}
}
galaxy/galaxy/Res/Assets.xcassets/ServiceCenter/续签/续签在港缴费/resign_visa_pay_guide.imageset/resign_visa_pay_guide@2x.png
0 → 100644
View file @
727e9b0f
604 Bytes
galaxy/galaxy/Res/Assets.xcassets/ServiceCenter/续签/续签在港缴费/resign_visa_pay_guide.imageset/resign_visa_pay_guide@3x.png
0 → 100644
View file @
727e9b0f
891 Bytes
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