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
688ab2b5
Commit
688ab2b5
authored
Oct 15, 2024
by
Steven杜宇
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
// 时间显示
parent
0eb31547
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
4 deletions
+20
-4
YHResignAppointGroup.swift
...(续签)/ResignHKAppoint(在港递交预约)/M/YHResignAppointGroup.swift
+16
-0
YHResignAppointedScheduleSingleItemView.swift
...t(在港递交预约)/V/YHResignAppointedScheduleSingleItemView.swift
+2
-2
YHResignHaveAppointedMultipleInfoCell.swift
...int(在港递交预约)/V/YHResignHaveAppointedMultipleInfoCell.swift
+2
-2
No files found.
galaxy/galaxy/Classes/Modules/IntelligentService(服务中心)/Resign(续签)/ResignHKAppoint(在港递交预约)/M/YHResignAppointGroup.swift
View file @
688ab2b5
...
@@ -39,6 +39,22 @@ class YHResignAppointGroup: SmartCodable {
...
@@ -39,6 +39,22 @@ class YHResignAppointGroup: SmartCodable {
// 自定义 第几批
// 自定义 第几批
var
batchIndex
:
Int
=
0
var
batchIndex
:
Int
=
0
func
getSubmitHKTime
()
->
String
{
let
format
=
"yyyy-MM-dd HH:mm"
if
ready_to_submit_at
.
count
<=
format
.
count
{
return
ready_to_submit_at
}
return
String
(
ready_to_submit_at
.
prefix
(
format
.
count
))
}
func
getConfirmHKTime
()
->
String
{
let
format
=
"yyyy-MM-dd HH:mm"
if
determine_hk_at
.
count
<=
format
.
count
{
return
determine_hk_at
}
return
String
(
determine_hk_at
.
prefix
(
format
.
count
))
}
func
getConfirmInHKStatus
()
->
YHResignConfirmHKStatus
{
func
getConfirmInHKStatus
()
->
YHResignConfirmHKStatus
{
let
dateFormatter
=
DateFormatter
()
let
dateFormatter
=
DateFormatter
()
...
...
galaxy/galaxy/Classes/Modules/IntelligentService(服务中心)/Resign(续签)/ResignHKAppoint(在港递交预约)/V/YHResignAppointedScheduleSingleItemView.swift
View file @
688ab2b5
...
@@ -95,8 +95,8 @@ class YHResignAppointedScheduleSingleItemView: UIView {
...
@@ -95,8 +95,8 @@ class YHResignAppointedScheduleSingleItemView: UIView {
}
}
}
}
applicantNamesLabel
.
text
=
names
applicantNamesLabel
.
text
=
names
submitTimeLabel
.
text
=
"预约递交时间: "
+
model
.
ready_to_submit_at
submitTimeLabel
.
text
=
"预约递交时间: "
+
model
.
getSubmitHKTime
()
confirmHKTimeLabel
.
text
=
"确认在港时间: "
+
model
.
determine_hk_at
confirmHKTimeLabel
.
text
=
"确认在港时间: "
+
model
.
getConfirmHKTime
()
self
.
confirmHKStatus
=
model
.
getConfirmInHKStatus
()
self
.
confirmHKStatus
=
model
.
getConfirmInHKStatus
()
...
...
galaxy/galaxy/Classes/Modules/IntelligentService(服务中心)/Resign(续签)/ResignHKAppoint(在港递交预约)/V/YHResignHaveAppointedMultipleInfoCell.swift
View file @
688ab2b5
...
@@ -116,8 +116,8 @@ class YHResignHaveAppointedMultipleInfoCell: UITableViewCell {
...
@@ -116,8 +116,8 @@ class YHResignHaveAppointedMultipleInfoCell: UITableViewCell {
}
}
}
}
applicantNamesLabel
.
text
=
names
applicantNamesLabel
.
text
=
names
submitTimeLabel
.
text
=
"预约递交时间: "
+
model
.
ready_to_submit_at
submitTimeLabel
.
text
=
"预约递交时间: "
+
model
.
getSubmitHKTime
()
confirmHKTimeLabel
.
text
=
"确认在港时间: "
+
model
.
determine_hk_at
confirmHKTimeLabel
.
text
=
"确认在港时间: "
+
model
.
getConfirmHKTime
()
self
.
confirmHKStatus
=
model
.
getConfirmInHKStatus
()
self
.
confirmHKStatus
=
model
.
getConfirmInHKStatus
()
...
...
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