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
a08b7bf7
Commit
a08b7bf7
authored
Jul 24, 2025
by
Steven杜宇
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
// 高专留
parent
00b19fe7
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
7 deletions
+6
-7
YHServiceOrderListViewController.swift
.../OrderList(服务订单)/C/YHServiceOrderListViewController.swift
+6
-7
No files found.
galaxy/galaxy/Classes/Modules/IntelligentService(服务中心)/OrderList(服务订单)/C/YHServiceOrderListViewController.swift
View file @
a08b7bf7
...
@@ -63,13 +63,13 @@ class YHServiceOrderListViewController: YHBaseViewController {
...
@@ -63,13 +63,13 @@ class YHServiceOrderListViewController: YHBaseViewController {
NotificationCenter
.
default
.
addObserver
(
self
,
selector
:
#selector(
endDragging
)
,
name
:
Notification
.
Name
(
rawValue
:
"scrollViewDidEndDragging0"
),
object
:
nil
)
NotificationCenter
.
default
.
addObserver
(
self
,
selector
:
#selector(
endDragging
)
,
name
:
Notification
.
Name
(
rawValue
:
"scrollViewDidEndDragging0"
),
object
:
nil
)
}
}
static
func
enterWebPage
(
_
partUrl
:
String
,
_
orderId
:
Int
,
_
batchId
:
Int
)
{
static
func
enterWebPage
(
_
partUrl
:
String
,
_
orderId
:
Int
,
_
batchId
:
Int
,
_
isFullScreen
:
Bool
=
false
)
{
var
url
=
YHBaseUrlManager
.
shared
.
renewalURL
()
+
partUrl
var
url
=
YHBaseUrlManager
.
shared
.
renewalURL
()
+
partUrl
url
=
url
+
"?param="
+
YHLoginManager
.
shared
.
h5Token
+
"&batchId=
\(
batchId
)
"
+
"&orderId=
\(
orderId
)
"
url
=
url
+
"?param="
+
YHLoginManager
.
shared
.
h5Token
+
"&batchId=
\(
batchId
)
"
+
"&orderId=
\(
orderId
)
"
let
vc
=
YHH5WebViewVC
()
let
vc
=
YHH5WebViewVC
()
vc
.
url
=
url
vc
.
url
=
url
vc
.
isSupportWebviewInterBackFlag
=
true
vc
.
isSupportWebviewInterBackFlag
=
true
vc
.
isFullScreenFlag
=
false
vc
.
isFullScreenFlag
=
isFullScreen
UIViewController
.
current
?
.
navigationController
?
.
pushViewController
(
vc
)
UIViewController
.
current
?
.
navigationController
?
.
pushViewController
(
vc
)
}
}
...
@@ -622,7 +622,7 @@ class YHServiceOrderListViewController: YHBaseViewController {
...
@@ -622,7 +622,7 @@ class YHServiceOrderListViewController: YHBaseViewController {
}
else
if
type
==
55
{
}
else
if
type
==
55
{
// 查看续签结果
// 查看续签结果
self
.
enterWebPage
(
"pages/xu-qian/result"
,
orderId
,
stepId
)
self
.
enterWebPage
(
"pages/xu-qian/result"
,
orderId
,
stepId
,
true
)
}
else
if
type
==
56
{
}
else
if
type
==
56
{
// 续签补件
// 续签补件
...
@@ -783,11 +783,10 @@ extension YHServiceOrderListViewController {
...
@@ -783,11 +783,10 @@ extension YHServiceOrderListViewController {
return
true
return
true
}
}
static
func
gotoResignGuideVC
()
{
static
func
gotoResignGuideVC
(
orderID
:
Int
,
stepID
:
Int
)
{
if
let
param
=
YHLoginManager
.
shared
.
userModel
?
.
token
,
param
.
count
>
5
{
if
let
param
=
YHLoginManager
.
shared
.
userModel
?
.
token
,
param
.
count
>
5
{
var
url
=
YHBaseUrlManager
.
shared
.
curH5URL
()
+
"superAppBridge.html#/guide/identity"
var
url
=
YHBaseUrlManager
.
shared
.
curH5URL
()
+
"superAppBridge.html#/guide/identity"
// var url = "http://192.168.23.35:10300/" + "superAppBridge.html#/guide/identity"
url
=
url
+
"?param="
+
YHLoginManager
.
shared
.
h5Token
+
"&batchId=
\(
stepID
)
"
+
"&orderId=
\(
orderID
)
"
url
=
url
+
"?param="
+
YHLoginManager
.
shared
.
h5Token
let
vc
=
YHH5WebViewVC
()
let
vc
=
YHH5WebViewVC
()
vc
.
title
=
"身份续签指引"
vc
.
title
=
"身份续签指引"
vc
.
navTitle
=
"身份续签指引"
vc
.
navTitle
=
"身份续签指引"
...
@@ -868,7 +867,7 @@ extension YHServiceOrderListViewController: UITableViewDelegate, UITableViewData
...
@@ -868,7 +867,7 @@ extension YHServiceOrderListViewController: UITableViewDelegate, UITableViewData
if
tag
==
1
{
if
tag
==
1
{
// 身份续签指引
// 身份续签指引
printLog
(
"身份续签指引"
)
printLog
(
"身份续签指引"
)
YHServiceOrderListViewController
.
gotoResignGuideVC
()
YHServiceOrderListViewController
.
gotoResignGuideVC
(
orderID
:
orderID
,
stepID
:
stepID
)
}
else
if
tag
==
2
{
}
else
if
tag
==
2
{
// 我的续签方案
// 我的续签方案
...
...
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