mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
fix: 手机号验证类型错误(bool-String)
This commit is contained in:
@@ -317,11 +317,13 @@ class LoginPageController extends GetxController
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
Map<String, String> accountInfo = {
|
Map<String, String> accountInfo = {
|
||||||
"telVerify": safeCenterRes['data']['account_info']!['tel_verify'],
|
|
||||||
"hindTel": safeCenterRes['data']['account_info']!["hide_tel"],
|
"hindTel": safeCenterRes['data']['account_info']!["hide_tel"],
|
||||||
"mailVerify": safeCenterRes['data']['account_info']!['mailVerify'],
|
|
||||||
"hindMail": safeCenterRes['data']['account_info']!["hide_mail"],
|
"hindMail": safeCenterRes['data']['account_info']!["hide_mail"],
|
||||||
};
|
};
|
||||||
|
if (!safeCenterRes['data']['account_info']!['tel_verify']) {
|
||||||
|
SmartDialog.showToast("当前账号未支持手机号验证,请尝试其它登录方式");
|
||||||
|
return;
|
||||||
|
}
|
||||||
TextEditingController _textFieldController = TextEditingController();
|
TextEditingController _textFieldController = TextEditingController();
|
||||||
String captchaKey = '';
|
String captchaKey = '';
|
||||||
Get.dialog(AlertDialog(
|
Get.dialog(AlertDialog(
|
||||||
|
|||||||
Reference in New Issue
Block a user