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
bfe10cad
Commit
bfe10cad
authored
Oct 24, 2024
by
pete谢兆麟
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
剩余UIbug修复
parent
20836749
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
4 deletions
+23
-4
YHResignUploadDocDetailViewController.swift
...adDoc(续签补件)/C/YHResignUploadDocDetailViewController.swift
+21
-2
YHResignUploadTravelHKViewController.swift
...Crad(上传旅行证件)/C/YHResignUploadTravelHKViewController.swift
+2
-2
No files found.
galaxy/galaxy/Classes/Modules/IntelligentService(服务中心)/Resign(续签)/ResignUploadDoc(续签补件)/C/YHResignUploadDocDetailViewController.swift
View file @
bfe10cad
...
@@ -593,7 +593,7 @@ extension YHResignUploadDocDetailViewController: UITableViewDelegate, UITableVie
...
@@ -593,7 +593,7 @@ extension YHResignUploadDocDetailViewController: UITableViewDelegate, UITableVie
view
.
addSubview
(
noLabel
)
view
.
addSubview
(
noLabel
)
titlelabel
.
snp
.
makeConstraints
{
make
in
titlelabel
.
snp
.
makeConstraints
{
make
in
make
.
left
.
equalToSuperview
()
.
offset
(
20
)
make
.
left
.
equalToSuperview
()
.
offset
(
15
)
make
.
right
.
equalToSuperview
()
.
offset
(
-
20
)
make
.
right
.
equalToSuperview
()
.
offset
(
-
20
)
make
.
top
.
equalTo
(
17
)
make
.
top
.
equalTo
(
17
)
}
}
...
@@ -611,6 +611,17 @@ extension YHResignUploadDocDetailViewController: UITableViewDelegate, UITableVie
...
@@ -611,6 +611,17 @@ extension YHResignUploadDocDetailViewController: UITableViewDelegate, UITableVie
make
.
height
.
equalTo
(
20
)
make
.
height
.
equalTo
(
20
)
make
.
top
.
equalTo
(
tipsLabel
.
snp
.
bottom
)
.
offset
(
12
)
make
.
top
.
equalTo
(
tipsLabel
.
snp
.
bottom
)
.
offset
(
12
)
}
}
if
self
.
materialModel
.
status
==
0
||
self
.
materialModel
.
status
==
1
{
noLabel
.
isHidden
=
true
tipsLabel
.
snp
.
remakeConstraints
{
make
in
make
.
left
.
equalToSuperview
()
.
offset
(
20
)
make
.
right
.
equalToSuperview
()
.
offset
(
-
20
)
make
.
top
.
equalTo
(
titlelabel
.
snp
.
bottom
)
.
offset
(
8
)
make
.
bottom
.
equalTo
(
-
12
)
}
}
if
self
.
materialModel
.
unavailable_reason
.
count
!=
0
{
if
self
.
materialModel
.
unavailable_reason
.
count
!=
0
{
let
bgView
=
UIView
()
let
bgView
=
UIView
()
...
@@ -634,7 +645,7 @@ extension YHResignUploadDocDetailViewController: UITableViewDelegate, UITableVie
...
@@ -634,7 +645,7 @@ extension YHResignUploadDocDetailViewController: UITableViewDelegate, UITableVie
bgView
.
snp
.
remakeConstraints
{
make
in
bgView
.
snp
.
remakeConstraints
{
make
in
make
.
left
.
equalToSuperview
()
.
offset
(
20
)
make
.
left
.
equalToSuperview
()
.
offset
(
20
)
make
.
right
.
equalToSuperview
()
.
offset
(
-
20
)
make
.
right
.
equalToSuperview
()
.
offset
(
-
20
)
make
.
top
.
equalTo
(
noLabel
.
snp
.
bottom
)
.
offset
(
1
2
)
make
.
top
.
equalTo
(
noLabel
.
snp
.
bottom
)
.
offset
(
1
6
)
make
.
bottom
.
equalTo
(
-
10
)
make
.
bottom
.
equalTo
(
-
10
)
}
}
...
@@ -642,6 +653,14 @@ extension YHResignUploadDocDetailViewController: UITableViewDelegate, UITableVie
...
@@ -642,6 +653,14 @@ extension YHResignUploadDocDetailViewController: UITableViewDelegate, UITableVie
make
.
top
.
left
.
equalToSuperview
()
.
offset
(
12
)
make
.
top
.
left
.
equalToSuperview
()
.
offset
(
12
)
make
.
right
.
bottom
.
equalToSuperview
()
.
offset
(
-
12
)
make
.
right
.
bottom
.
equalToSuperview
()
.
offset
(
-
12
)
}
}
if
self
.
materialModel
.
status
==
0
||
self
.
materialModel
.
status
==
1
{
bgView
.
snp
.
remakeConstraints
{
make
in
make
.
left
.
equalToSuperview
()
.
offset
(
20
)
make
.
right
.
equalToSuperview
()
.
offset
(
-
20
)
make
.
top
.
equalTo
(
tipsLabel
.
snp
.
bottom
)
.
offset
(
16
)
make
.
bottom
.
equalTo
(
-
10
)
}
}
}
}
return
view
return
view
}
}
...
...
galaxy/galaxy/Classes/Modules/IntelligentService(服务中心)/Resign(续签)/UploadTravelCrad(上传旅行证件)/C/YHResignUploadTravelHKViewController.swift
View file @
bfe10cad
...
@@ -276,7 +276,7 @@ extension YHResignUploadTravelHKViewController: UITableViewDelegate, UITableView
...
@@ -276,7 +276,7 @@ extension YHResignUploadTravelHKViewController: UITableViewDelegate, UITableView
self
.
failString
=
""
self
.
failString
=
""
}
else
{
}
else
{
// OCR 无法识别
// OCR 无法识别
self
.
failString
=
"非逗留
(
D)签证,请核查文件"
self
.
failString
=
"非逗留
(
D)签证,请核查文件"
}
}
self
.
updateAllViews
()
self
.
updateAllViews
()
}
}
...
@@ -293,7 +293,7 @@ extension YHResignUploadTravelHKViewController: UITableViewDelegate, UITableView
...
@@ -293,7 +293,7 @@ extension YHResignUploadTravelHKViewController: UITableViewDelegate, UITableView
self
.
failString
=
""
self
.
failString
=
""
}
else
{
}
else
{
// OCR 无法识别
// OCR 无法识别
self
.
failString
=
"非逗留
(
D)签证,请核查文件"
self
.
failString
=
"非逗留
(
D)签证,请核查文件"
}
}
self
.
updateAllViews
()
self
.
updateAllViews
()
}
}
...
...
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