diff --git a/star_lock/lib/mine/minePersonInfo/minePersonInfoPage/minePersonInfo_page.dart b/star_lock/lib/mine/minePersonInfo/minePersonInfoPage/minePersonInfo_page.dart index 6ec5a44c..2724ae70 100644 --- a/star_lock/lib/mine/minePersonInfo/minePersonInfoPage/minePersonInfo_page.dart +++ b/star_lock/lib/mine/minePersonInfo/minePersonInfoPage/minePersonInfo_page.dart @@ -92,13 +92,13 @@ class _MinePersonInfoPageState extends State { arguments: { 'mobile': state.mobileStr.value, 'isFrom': '1' - }); + }).then((value) => logic.getUserInfoRequest()); } else { Navigator.pushNamed( context, Routers.mineBindPhoneOrEmailPage, arguments: { 'mobile': state.mobileStr.value, 'isFrom': '1' - }); + }).then((value) => logic.getUserInfoRequest()); } })), Obx(() => CommonItem( @@ -116,13 +116,13 @@ class _MinePersonInfoPageState extends State { arguments: { 'isFrom': '2', 'email': state.emailStr.value - }); + }).then((value) => logic.getUserInfoRequest()); } else { Navigator.pushNamed( context, Routers.mineBindPhoneOrEmailPage, arguments: { 'isFrom': '2', 'email': state.emailStr.value - }); + }).then((value) => logic.getUserInfoRequest()); } })), CommonItem( @@ -134,7 +134,7 @@ class _MinePersonInfoPageState extends State { Navigator.pushNamed( context, Routers.minePersonInfoResetPasswordPage); }), - CommonItem( + Obx(() => CommonItem( leftTitel: TranslationLoader.lanKeys!.safetyProblem!.tr, rightTitle: state.haveSafeAnswer.value == 0 ? "去设置" : "", isHaveLine: true, @@ -148,7 +148,7 @@ class _MinePersonInfoPageState extends State { Navigator.pushNamed( context, Routers.minePersonInfoViewSafetyProblemPage); } - }), + })), Obx(() => CommonItem( leftTitel: TranslationLoader.lanKeys!.countryAndRegion!.tr, rightTitle: state.countryStr.value,