Skip to content

Commit 4ffac77

Browse files
committed
update
1 parent 1aadc02 commit 4ffac77

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

lib/common/dao/repos_dao.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -541,7 +541,7 @@ class ReposDao {
541541

542542
/// 反序列化
543543
Map result = serializers.serializeWith(serializerForType, test);
544-
//print("###### $test ${result}");
544+
print("###### $test ${result}");
545545

546546
list.add(data['name']);
547547
}

lib/page/login/login_page.dart

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -186,16 +186,16 @@ mixin LoginBLoC on State<LoginPage> {
186186
gravity: ToastGravity.CENTER,
187187
toastLength: Toast.LENGTH_LONG);
188188
return;
189-
if (_userName == null || _userName.isEmpty) {
190-
return;
191-
}
192-
if (_password == null || _password.isEmpty) {
193-
return;
194-
}
195-
196-
///通过 redux 去执行登陆流程
197-
StoreProvider.of<GSYState>(context)
198-
.dispatch(LoginAction(context, _userName, _password));
189+
// if (_userName == null || _userName.isEmpty) {
190+
// return;
191+
// }
192+
// if (_password == null || _password.isEmpty) {
193+
// return;
194+
// }
195+
//
196+
// ///通过 redux 去执行登陆流程
197+
// StoreProvider.of<GSYState>(context)
198+
// .dispatch(LoginAction(context, _userName, _password));
199199
}
200200

201201
oauthLogin() async {

0 commit comments

Comments
 (0)