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
46d28c8d
Commit
46d28c8d
authored
Oct 15, 2024
by
Steven杜宇
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
// 时间选择
parent
d96d357f
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
8 deletions
+8
-8
YHResignAppointGroup.swift
...(续签)/ResignHKAppoint(在港递交预约)/M/YHResignAppointGroup.swift
+1
-1
YHResignAppointTimeMultipleCell.swift
...HKAppoint(在港递交预约)/V/YHResignAppointTimeMultipleCell.swift
+2
-2
YHResignAppointTimeSingleCell.swift
...gnHKAppoint(在港递交预约)/V/YHResignAppointTimeSingleCell.swift
+2
-2
YHResignAppointedScheduleSingleItemView.swift
...t(在港递交预约)/V/YHResignAppointedScheduleSingleItemView.swift
+3
-3
No files found.
galaxy/galaxy/Classes/Modules/IntelligentService(服务中心)/Resign(续签)/ResignHKAppoint(在港递交预约)/M/YHResignAppointGroup.swift
View file @
46d28c8d
...
...
@@ -61,7 +61,7 @@ class YHResignAppointGroup: SmartCodable {
// dateString1 是否不小于dateString2
func
compareDates
(
_
dateString1
:
String
,
_
dateString2
:
String
)
->
Bool
{
let
dateFormatter
=
DateFormatter
()
dateFormatter
.
dateFormat
=
"yyyy-MM-dd HH:mm
:ss
"
dateFormatter
.
dateFormat
=
"yyyy-MM-dd HH:mm"
// 将字符串转换为 Date 对象
guard
let
date1
=
dateFormatter
.
date
(
from
:
dateString1
),
...
...
galaxy/galaxy/Classes/Modules/IntelligentService(服务中心)/Resign(续签)/ResignHKAppoint(在港递交预约)/V/YHResignAppointTimeMultipleCell.swift
View file @
46d28c8d
...
...
@@ -102,7 +102,7 @@ class YHResignAppointTimeMultipleCell: UITableViewCell {
self
.
selectDetailDate
(
title
:
"选择在港递交时间"
)
{
[
weak
self
]
dateStr
in
guard
let
self
=
self
else
{
return
}
self
.
model
.
ready_to_submit_at
=
"2024-11-04 17:44:
58
"
self
.
model
.
ready_to_submit_at
=
"2024-11-04 17:44:"
self
.
refreshBlock
?()
}
}
...
...
@@ -122,7 +122,7 @@ class YHResignAppointTimeMultipleCell: UITableViewCell {
self
.
selectDetailDate
(
title
:
"选择离港时间"
)
{
[
weak
self
]
dateStr
in
guard
let
self
=
self
else
{
return
}
self
.
model
.
leave_hk_at
=
"2024-12-04 17:44
:58
"
self
.
model
.
leave_hk_at
=
"2024-12-04 17:44"
self
.
refreshBlock
?()
}
}
...
...
galaxy/galaxy/Classes/Modules/IntelligentService(服务中心)/Resign(续签)/ResignHKAppoint(在港递交预约)/V/YHResignAppointTimeSingleCell.swift
View file @
46d28c8d
...
...
@@ -47,7 +47,7 @@ class YHResignAppointTimeSingleCell: UITableViewCell {
self
.
selectDetailDate
(
title
:
"选择在港递交时间"
)
{
[
weak
self
]
dateStr
in
guard
let
self
=
self
else
{
return
}
self
.
model
.
ready_to_submit_at
=
"2024-11-04 17:44
:58
"
self
.
model
.
ready_to_submit_at
=
"2024-11-04 17:44"
self
.
refreshBlock
?()
}
}
...
...
@@ -67,7 +67,7 @@ class YHResignAppointTimeSingleCell: UITableViewCell {
self
.
selectDetailDate
(
title
:
"选择离港时间"
)
{
[
weak
self
]
dateStr
in
guard
let
self
=
self
else
{
return
}
self
.
model
.
leave_hk_at
=
"2024-12-04 17:44
:58
"
self
.
model
.
leave_hk_at
=
"2024-12-04 17:44"
self
.
refreshBlock
?()
}
}
...
...
galaxy/galaxy/Classes/Modules/IntelligentService(服务中心)/Resign(续签)/ResignHKAppoint(在港递交预约)/V/YHResignAppointedScheduleSingleItemView.swift
View file @
46d28c8d
...
...
@@ -55,7 +55,7 @@ class YHResignAppointedScheduleSingleItemView: UIView {
label
.
numberOfLines
=
0
label
.
font
=
UIFont
.
PFSC_R
(
ofSize
:
12
)
label
.
textColor
=
.
mainTextColor
(
alpha
:
0.5
)
label
.
text
=
"预约递交时间: 0000-00-00
00:00"
label
.
text
=
"预约递交时间: 0000-00-00 00:00"
return
label
}()
...
...
@@ -64,7 +64,7 @@ class YHResignAppointedScheduleSingleItemView: UIView {
label
.
numberOfLines
=
0
label
.
font
=
UIFont
.
PFSC_R
(
ofSize
:
12
)
label
.
textColor
=
.
mainTextColor
(
alpha
:
0.5
)
label
.
text
=
"确认在港时间: 0000-00-00
00:00"
label
.
text
=
"确认在港时间: 0000-00-00 00:00"
return
label
}()
...
...
@@ -159,7 +159,7 @@ class YHResignAppointedScheduleSingleItemView: UIView {
// dateString1 是否不小于dateString2
func
compareDates
(
_
dateString1
:
String
,
_
dateString2
:
String
)
->
Bool
{
let
dateFormatter
=
DateFormatter
()
dateFormatter
.
dateFormat
=
"yyyy-MM-dd HH:mm
:ss
"
dateFormatter
.
dateFormat
=
"yyyy-MM-dd HH:mm"
// 将字符串转换为 Date 对象
guard
let
date1
=
dateFormatter
.
date
(
from
:
dateString1
),
...
...
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