|
|
@@ -1,5 +1,6 @@ |
|
|
|
import 'dart:async'; |
|
|
|
import 'dart:convert'; |
|
|
|
import 'dart:html'; |
|
|
|
|
|
|
|
import 'package:zhiying_base_widget/widgets/mine/mine_header/model/mine_profile_model.dart'; |
|
|
|
import 'package:zhiying_comm/util/base_bloc.dart'; |
|
|
@@ -26,9 +27,13 @@ class MineHeaderBloc extends BlocBase { |
|
|
|
Logger.log("我的数据:"+ json.encode(data)); |
|
|
|
_profile = MineProfileModel.fromJson(Map<String, dynamic>.from(data)); |
|
|
|
_profileController.add(_profile); |
|
|
|
///信用卡初始化 |
|
|
|
///只有在用户数据被加载时调用 |
|
|
|
Application.doStringMethod("initCreditCard"); |
|
|
|
}, onError: (err) { |
|
|
|
_profile = MineProfileModel(); |
|
|
|
_profileController.add(_profile); |
|
|
|
}); |
|
|
|
|
|
|
|
} |
|
|
|
} |