feat: 登录接口修改
Build Windows / build (push) Has been cancelled
Build Windows / 编译 libcore (Windows) (20.15.1) (push) Successful in 20m33s

This commit is contained in:
2025-11-21 01:24:44 -08:00
parent 91185a593a
commit 9123d5f0e4
3 changed files with 20 additions and 16 deletions
@@ -315,7 +315,10 @@ class KRLoginController extends GetxController
final result = check.fold((l) {
KRCommonUtil.kr_showToast(l.msg);
return null;
}, (isRegistered) => isRegistered ? 2 : 1);
}, (isRegistered) {
print('isRegistered $isRegistered');
return isRegistered ? 2 : 1;
});
if (result == null) return;
type = result;