杨锴
2024-11-11 9e77b0f9014653255eb51e81b8a8ba719443839d
XQMuse/Root/Login/VC/RegisterVC.swift
@@ -138,16 +138,24 @@
            
            @IBAction func userResigerAgreementAction(_ sender: Any) {
                        let vc = WebVC(type: .user)
                        vc.title = "用户注册协议"
                        push(vc: vc)
        let vc = LoginTreatyVC()
        vc.topIndex = 0
        vc.clickHandle {[unowned self] state in
            self.btn_isRead.isSelected = state
        }
        vc.modalPresentationStyle = .custom
        present(vc, animated: true)
            }
            @IBAction func userPrivateAgreementAction(_ sender: Any) {
                        let vc = WebVC(type: .privacy)
                        vc.title = "用户隐私协议"
                        push(vc: vc)
        let vc = LoginTreatyVC()
        vc.topIndex = 1
        vc.clickHandle {[unowned self] state in
            self.btn_isRead.isSelected = state
        }
        vc.modalPresentationStyle = .custom
        present(vc, animated: true)
            }