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
328ad0a8
Commit
328ad0a8
authored
Jul 18, 2025
by
Steven杜宇
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
// 续期证件管理接口添加参数 批次ID
parent
761617bc
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
6 deletions
+10
-6
YHServiceOrderListViewController.swift
.../OrderList(服务订单)/C/YHServiceOrderListViewController.swift
+4
-3
YHResignCertificateListViewController.swift
...age(续期证件管理)/C/YHResignCertificateListViewController.swift
+2
-1
YHResignCertificateListViewModel.swift
...eManage(续期证件管理)/VM/YHResignCertificateListViewModel.swift
+3
-2
YHMessageDetailListVC.swift
...Classes/Modules/Message(消息)/C/YHMessageDetailListVC.swift
+1
-0
No files found.
galaxy/galaxy/Classes/Modules/IntelligentService(服务中心)/OrderList(服务订单)/C/YHServiceOrderListViewController.swift
View file @
328ad0a8
...
...
@@ -646,7 +646,7 @@ class YHServiceOrderListViewController: YHBaseViewController {
gotoHKImmigrationRecordsVC
(
orderID
:
orderId
)
}
else
if
type
==
104
{
// 续签证件管理
gotoResignCertificateListVC
(
orderID
:
orderId
)
gotoResignCertificateListVC
(
orderID
:
orderId
,
stepID
:
stepId
)
}
/*
...
...
@@ -819,9 +819,10 @@ extension YHServiceOrderListViewController {
UIViewController
.
current
?
.
navigationController
?
.
pushViewController
(
vc
)
}
static
func
gotoResignCertificateListVC
(
orderID
:
Int
)
{
static
func
gotoResignCertificateListVC
(
orderID
:
Int
,
stepID
:
Int
)
{
let
vc
=
YHResignCertificateListViewController
()
vc
.
orderId
=
orderID
vc
.
batchId
=
stepID
UIViewController
.
current
?
.
navigationController
?
.
pushViewController
(
vc
)
}
}
...
...
@@ -898,7 +899,7 @@ extension YHServiceOrderListViewController: UITableViewDelegate, UITableViewData
YHServiceOrderListViewController
.
gotoHKImmigrationRecordsVC
(
orderID
:
orderID
)
}
else
if
tag
==
4
{
// 续签证件管理
YHServiceOrderListViewController
.
gotoResignCertificateListVC
(
orderID
:
orderID
)
YHServiceOrderListViewController
.
gotoResignCertificateListVC
(
orderID
:
orderID
,
stepID
:
stepID
)
}
}
}
...
...
galaxy/galaxy/Classes/Modules/IntelligentService(服务中心)/QMAS(优才)/Resign(续签)/ResignCertificateManage(续期证件管理)/C/YHResignCertificateListViewController.swift
View file @
328ad0a8
...
...
@@ -11,6 +11,7 @@ import UIKit
class
YHResignCertificateListViewController
:
YHBaseViewController
{
var
tableView
:
UITableView
!
var
orderId
:
Int
=
0
var
batchId
:
Int
=
0
var
viewModel
=
YHResignCertificateListViewModel
()
override
func
viewDidLoad
()
{
...
...
@@ -27,7 +28,7 @@ class YHResignCertificateListViewController: YHBaseViewController {
}
func
getData
()
{
viewModel
.
getResignCertificateList
(
orderId
:
orderId
)
{[
weak
self
]
_
,
_
in
viewModel
.
getResignCertificateList
(
orderId
:
orderId
,
batchId
:
batchId
)
{[
weak
self
]
_
,
_
in
guard
let
self
=
self
else
{
return
}
self
.
tableView
.
reloadData
()
}
...
...
galaxy/galaxy/Classes/Modules/IntelligentService(服务中心)/QMAS(优才)/Resign(续签)/ResignCertificateManage(续期证件管理)/VM/YHResignCertificateListViewModel.swift
View file @
328ad0a8
...
...
@@ -11,8 +11,9 @@ import UIKit
class
YHResignCertificateListViewModel
:
YHBaseViewModel
{
var
mainModel
:
YHResignCertificateMainModel
=
YHResignCertificateMainModel
()
func
getResignCertificateList
(
orderId
:
Int
,
callBackBlock
:
@escaping
(
_
success
:
Bool
,
_
error
:
YHErrorModel
?)
->
Void
)
{
let
param
=
[
"orderId"
:
orderId
]
func
getResignCertificateList
(
orderId
:
Int
,
batchId
:
Int
,
callBackBlock
:
@escaping
(
_
success
:
Bool
,
_
error
:
YHErrorModel
?)
->
Void
)
{
let
param
=
[
"orderId"
:
orderId
,
"renewal_id"
:
batchId
]
let
strUrl
=
YHBaseUrlManager
.
shared
.
curURL
()
+
YHAllApiName
.
ResignCertificate
.
resignCertificateList
_
=
YHNetRequest
.
getRequest
(
url
:
strUrl
,
params
:
param
)
{
[
weak
self
]
json
,
_
in
// 1. json字符串 转 对象
...
...
galaxy/galaxy/Classes/Modules/Message(消息)/C/YHMessageDetailListVC.swift
View file @
328ad0a8
...
...
@@ -616,6 +616,7 @@ extension YHMessageDetailListVC: UITableViewDelegate, UITableViewDataSource {
if
let
orderId
=
Int
(
msg
.
orderId
)
{
let
vc
=
YHResignCertificateListViewController
()
vc
.
orderId
=
orderId
vc
.
batchId
=
self
.
serviceCenterViewModel
.
mainModel
.
master_id
UIViewController
.
current
?
.
navigationController
?
.
pushViewController
(
vc
)
}
...
...
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