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
fa1705fd
Commit
fa1705fd
authored
May 11, 2024
by
David黄金龙
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
隐私协议 title替换
parent
ea93bc46
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
7 deletions
+7
-7
YHStartPageViewController.swift
...lasses/Modules/Home(首页)/C/YHStartPageViewController.swift
+1
-1
YHPhoneLoginViewController.swift
...sses/Modules/Login(登录)/C/YHPhoneLoginViewController.swift
+2
-2
YHLoginPrivacyView.swift
...laxy/Classes/Modules/Login(登录)/V/YHLoginPrivacyView.swift
+2
-2
YHMySettingViewController.swift
...lasses/Modules/Mine(我的)/C/YHMySettingViewController.swift
+2
-2
No files found.
galaxy/galaxy/Classes/Modules/Home(首页)/C/YHStartPageViewController.swift
View file @
fa1705fd
...
@@ -138,7 +138,7 @@ private extension YHStartPageViewController {
...
@@ -138,7 +138,7 @@ private extension YHStartPageViewController {
guard
let
self
=
self
else
{
return
}
guard
let
self
=
self
else
{
return
}
let
vc
=
YHWebViewViewController
()
let
vc
=
YHWebViewViewController
()
vc
.
url
=
url
vc
.
url
=
url
vc
.
navTitle
=
"银河港生活
服务协议
"
vc
.
navTitle
=
"银河港生活
隐私政策
"
self
.
navigationController
?
.
pushViewController
(
vc
)
self
.
navigationController
?
.
pushViewController
(
vc
)
}
}
...
...
galaxy/galaxy/Classes/Modules/Login(登录)/C/YHPhoneLoginViewController.swift
View file @
fa1705fd
...
@@ -210,9 +210,9 @@ class YHPhoneLoginViewController: YHBaseViewController {
...
@@ -210,9 +210,9 @@ class YHPhoneLoginViewController: YHBaseViewController {
let
vc
=
YHWebViewViewController
()
let
vc
=
YHWebViewViewController
()
vc
.
url
=
url
vc
.
url
=
url
if
type
==
0
{
if
type
==
0
{
vc
.
navTitle
=
"银河港生活
服务协议
"
vc
.
navTitle
=
"银河港生活
隐私政策
"
}
else
if
type
==
1
{
}
else
if
type
==
1
{
vc
.
navTitle
=
"银河港生活
个人信息保护政策
"
vc
.
navTitle
=
"银河港生活
用户条款
"
}
}
self
.
navigationController
?
.
pushViewController
(
vc
)
self
.
navigationController
?
.
pushViewController
(
vc
)
...
...
galaxy/galaxy/Classes/Modules/Login(登录)/V/YHLoginPrivacyView.swift
View file @
fa1705fd
...
@@ -117,14 +117,14 @@ class YHLoginPrivacyView: UIView {
...
@@ -117,14 +117,14 @@ class YHLoginPrivacyView: UIView {
@objc
func
firstUrlClick
()
{
@objc
func
firstUrlClick
()
{
let
vc
=
YHWebViewViewController
()
let
vc
=
YHWebViewViewController
()
vc
.
url
=
YHBaseUrlManager
.
shared
.
curPrivacyAgreementUrl
()
vc
.
url
=
YHBaseUrlManager
.
shared
.
curPrivacyAgreementUrl
()
vc
.
navTitle
=
"银河港生活
服务协议
"
vc
.
navTitle
=
"银河港生活
隐私政策
"
UIViewController
.
current
?
.
navigationController
?
.
pushViewController
(
vc
)
UIViewController
.
current
?
.
navigationController
?
.
pushViewController
(
vc
)
}
}
@objc
func
secondUrlClick
()
{
@objc
func
secondUrlClick
()
{
let
vc
=
YHWebViewViewController
()
let
vc
=
YHWebViewViewController
()
vc
.
url
=
YHBaseUrlManager
.
shared
.
curUserItemsUrl
()
vc
.
url
=
YHBaseUrlManager
.
shared
.
curUserItemsUrl
()
vc
.
navTitle
=
"银河港生活
个人信息保护政策
"
vc
.
navTitle
=
"银河港生活
用户条款
"
UIViewController
.
current
?
.
navigationController
?
.
pushViewController
(
vc
)
UIViewController
.
current
?
.
navigationController
?
.
pushViewController
(
vc
)
}
}
}
}
galaxy/galaxy/Classes/Modules/Mine(我的)/C/YHMySettingViewController.swift
View file @
fa1705fd
...
@@ -205,14 +205,14 @@ extension YHMySettingViewController : UITableViewDelegate, UITableViewDataSource
...
@@ -205,14 +205,14 @@ extension YHMySettingViewController : UITableViewDelegate, UITableViewDataSource
// 用户条款
// 用户条款
let
vc
=
YHWebViewViewController
()
let
vc
=
YHWebViewViewController
()
vc
.
url
=
YHBaseUrlManager
.
shared
.
curUserItemsUrl
()
vc
.
url
=
YHBaseUrlManager
.
shared
.
curUserItemsUrl
()
vc
.
navTitle
=
"银河港生活
个人信息保护政策
"
vc
.
navTitle
=
"银河港生活
用户条款
"
UIViewController
.
current
?
.
navigationController
?
.
pushViewController
(
vc
)
UIViewController
.
current
?
.
navigationController
?
.
pushViewController
(
vc
)
}
else
if
item
.
type
==
.
privaceAgreement
{
}
else
if
item
.
type
==
.
privaceAgreement
{
//隐私政策
//隐私政策
let
vc
=
YHWebViewViewController
()
let
vc
=
YHWebViewViewController
()
vc
.
url
=
YHBaseUrlManager
.
shared
.
curPrivacyAgreementUrl
()
vc
.
url
=
YHBaseUrlManager
.
shared
.
curPrivacyAgreementUrl
()
vc
.
navTitle
=
"银河港生活
服务协议
"
vc
.
navTitle
=
"银河港生活
隐私政策
"
UIViewController
.
current
?
.
navigationController
?
.
pushViewController
(
vc
)
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