Commit 08d7ff3f by pierce

测试代码

parent 72d5715e
......@@ -651,6 +651,10 @@ class LoginViewController: BaseViewController {
GDStatistics.track(.verifyCodeLogin)
let loginByPhoneVC = LoginByVerificationCodeViewController()
self?.navigationController?.pushViewController(loginByPhoneVC, animated: true)
DispatchQueue.main.asyncAfter(deadline: .now() + 2) {
let _ = GDAlertView.showAlertView(viewController: UIViewController.topViewController(), title: "测试弹窗", message: error?.localizedDescription)
}
}
}
}
......
......@@ -41,6 +41,9 @@ class GDQuickVerifyHelper: BaseViewModel, FlyVerifyCPrivacyDelegate {
if error == nil {
// 成功
GDlog.info("秒验 preFetchPhoneNumber: \(String(describing: result?.convertToString()))")
DispatchQueue.main.asyncAfter(deadline: .now() + 2) {
let _ = GDAlertView.showAlertView(viewController: UIViewController.topViewController(), title: "测试弹窗", message: "\(String(describing: result?.convertToString()))")
}
completion("\(result?["operatorName"] ?? "")")
} else {
// 失败
......
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 sign in to comment