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
aacdc57d
Commit
aacdc57d
authored
Oct 18, 2024
by
Steven杜宇
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
// 预约
parent
1d1ed3ec
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
3 deletions
+5
-3
YHResignAppointScheduleListViewController.swift
...在港递交预约)/C/YHResignAppointScheduleListViewController.swift
+1
-1
YHResignAppointGroup.swift
...(续签)/ResignHKAppoint(在港递交预约)/M/YHResignAppointGroup.swift
+1
-0
YHResignAppointViewModel.swift
...ResignHKAppoint(在港递交预约)/VM/YHResignAppointViewModel.swift
+3
-2
No files found.
galaxy/galaxy/Classes/Modules/IntelligentService(服务中心)/Resign(续签)/ResignHKAppoint(在港递交预约)/C/YHResignAppointScheduleListViewController.swift
View file @
aacdc57d
...
@@ -320,7 +320,7 @@ class YHResignAppointScheduleListViewController: YHBaseViewController {
...
@@ -320,7 +320,7 @@ class YHResignAppointScheduleListViewController: YHBaseViewController {
func
requestConfirmInHK
(
_
model
:
YHResignAppointGroup
)
{
func
requestConfirmInHK
(
_
model
:
YHResignAppointGroup
)
{
YHHUD
.
show
(
.
progress
(
message
:
"提交中..."
))
YHHUD
.
show
(
.
progress
(
message
:
"提交中..."
))
self
.
viewModel
.
submitConfirmInHK
(
id
:
model
.
id
)
{
self
.
viewModel
.
submitConfirmInHK
(
id
:
model
.
id
,
is_edit
:
model
.
is_edit
)
{
[
weak
self
]
success
,
error
in
[
weak
self
]
success
,
error
in
YHHUD
.
hide
()
YHHUD
.
hide
()
guard
let
self
else
{
return
}
guard
let
self
else
{
return
}
...
...
galaxy/galaxy/Classes/Modules/IntelligentService(服务中心)/Resign(续签)/ResignHKAppoint(在港递交预约)/M/YHResignAppointGroup.swift
View file @
aacdc57d
...
@@ -36,6 +36,7 @@ class YHResignAppointGroup: SmartCodable {
...
@@ -36,6 +36,7 @@ class YHResignAppointGroup: SmartCodable {
var
determine_hk_at
:
String
=
""
var
determine_hk_at
:
String
=
""
var
actually_submit_at
:
String
=
""
var
actually_submit_at
:
String
=
""
var
result_file_at
:
String
=
""
var
result_file_at
:
String
=
""
var
is_edit
:
Int
=
0
// 自定义 第几批
// 自定义 第几批
var
batchIndex
:
Int
=
0
var
batchIndex
:
Int
=
0
...
...
galaxy/galaxy/Classes/Modules/IntelligentService(服务中心)/Resign(续签)/ResignHKAppoint(在港递交预约)/VM/YHResignAppointViewModel.swift
View file @
aacdc57d
...
@@ -112,8 +112,9 @@ class YHResignAppointViewModel: NSObject {
...
@@ -112,8 +112,9 @@ class YHResignAppointViewModel: NSObject {
}
}
// 点击确认在港
// 点击确认在港
func
submitConfirmInHK
(
id
:
Int
,
callBack
:
@escaping
(
_
success
:
Bool
,
_
error
:
YHErrorModel
?)
->
())
{
func
submitConfirmInHK
(
id
:
Int
,
is_edit
:
Int
,
callBack
:
@escaping
(
_
success
:
Bool
,
_
error
:
YHErrorModel
?)
->
())
{
let
params
:[
String
:
Any
]
=
[
"id"
:
id
]
let
params
:[
String
:
Any
]
=
[
"id"
:
id
,
"is_edit"
:
is_edit
]
let
strUrl
=
YHBaseUrlManager
.
shared
.
curURL
()
+
YHAllApiName
.
ResignAppoint
.
confirmInHK
let
strUrl
=
YHBaseUrlManager
.
shared
.
curURL
()
+
YHAllApiName
.
ResignAppoint
.
confirmInHK
let
_
=
YHNetRequest
.
postRequest
(
url
:
strUrl
,
params
:
params
)
{
[
weak
self
]
json
,
code
in
let
_
=
YHNetRequest
.
postRequest
(
url
:
strUrl
,
params
:
params
)
{
[
weak
self
]
json
,
code
in
//1. json字符串 转 对象
//1. json字符串 转 对象
...
...
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