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
cc57a111
Commit
cc57a111
authored
Oct 14, 2024
by
Steven杜宇
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
// 行程
parent
c90615f5
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
21 additions
and
1 deletion
+21
-1
YHResignAppointSubmitScheduleViewController.swift
...递交预约)/C/YHResignAppointSubmitScheduleViewController.swift
+0
-0
YHResignAppointGroup.swift
...(续签)/ResignHKAppoint(在港递交预约)/M/YHResignAppointGroup.swift
+1
-1
YHResignAppointViewModel.swift
...ResignHKAppoint(在港递交预约)/VM/YHResignAppointViewModel.swift
+18
-0
YHAllApiName.swift
galaxy/galaxy/Classes/Tools/NetWork/YHAllApiName.swift
+2
-0
No files found.
galaxy/galaxy/Classes/Modules/IntelligentService(服务中心)/Resign(续签)/ResignHKAppoint(在港递交预约)/C/YHResignAppointSubmitScheduleViewController.swift
View file @
cc57a111
This diff is collapsed.
Click to expand it.
galaxy/galaxy/Classes/Modules/IntelligentService(服务中心)/Resign(续签)/ResignHKAppoint(在港递交预约)/M/YHResignAppointGroup.swift
View file @
cc57a111
...
@@ -105,7 +105,7 @@ class YHResignAppointUser: SmartCodable, NSCopying {
...
@@ -105,7 +105,7 @@ class YHResignAppointUser: SmartCodable, NSCopying {
func
transformToMember
()
->
YHResignAppointMember
{
func
transformToMember
()
->
YHResignAppointMember
{
let
m
=
YHResignAppointMember
()
let
m
=
YHResignAppointMember
()
m
.
id
=
self
.
i
d
m
.
id
=
self
.
memberI
d
m
.
apply_name
=
self
.
name
m
.
apply_name
=
self
.
name
return
m
return
m
}
}
...
...
galaxy/galaxy/Classes/Modules/IntelligentService(服务中心)/Resign(续签)/ResignHKAppoint(在港递交预约)/VM/YHResignAppointViewModel.swift
View file @
cc57a111
...
@@ -110,4 +110,22 @@ class YHResignAppointViewModel: NSObject {
...
@@ -110,4 +110,22 @@ class YHResignAppointViewModel: NSObject {
callBack
(
false
,
err
)
callBack
(
false
,
err
)
}
}
}
}
// 点击确认在港
func
submitConfirmInHK
(
id
:
Int
,
callBack
:
@escaping
(
_
success
:
Bool
,
_
error
:
YHErrorModel
?)
->
())
{
let
params
:[
String
:
Any
]
=
[
"id"
:
id
]
let
strUrl
=
YHBaseUrlManager
.
shared
.
curURL
()
+
YHAllApiName
.
ResignAppoint
.
confirmInHK
let
_
=
YHNetRequest
.
getRequest
(
url
:
strUrl
,
params
:
params
)
{
[
weak
self
]
json
,
code
in
//1. json字符串 转 对象
guard
let
_
=
self
else
{
return
}
if
json
.
code
==
200
{
callBack
(
true
,
nil
)
}
else
{
let
error
:
YHErrorModel
=
YHErrorModel
(
errorCode
:
Int32
(
json
.
code
),
errorMsg
:
json
.
msg
)
callBack
(
false
,
error
)
}
}
failBlock
:
{
err
in
callBack
(
false
,
err
)
}
}
}
}
galaxy/galaxy/Classes/Tools/NetWork/YHAllApiName.swift
View file @
cc57a111
...
@@ -561,6 +561,8 @@ class YHAllApiName {
...
@@ -561,6 +561,8 @@ class YHAllApiName {
static
let
appointInfoList
=
"super-app/renewal/reservation/list"
static
let
appointInfoList
=
"super-app/renewal/reservation/list"
// 提交预约
// 提交预约
static
let
submitAppoint
=
"super-app/renewal/reservation/submit"
static
let
submitAppoint
=
"super-app/renewal/reservation/submit"
// 提交确认在港
static
let
confirmInHK
=
"super-app/renewal/confirm-stay-hk"
}
}
// 在港记录
// 在港记录
...
...
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