Commit fa1705fd authored by David黄金龙's avatar David黄金龙

隐私协议 title替换

parent ea93bc46
...@@ -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)
} }
......
...@@ -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)
......
...@@ -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)
} }
} }
...@@ -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)
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment