From a5d7a49570b37da839a46dccdef5aeec33572955 Mon Sep 17 00:00:00 2001 From: Daisy <> Date: Fri, 13 Oct 2023 15:12:03 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E4=B8=AA=E4=BA=BA=E4=BF=A1?= =?UTF-8?q?=E6=81=AF=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../minePersonInfoPage/minePersonInfo_page.dart | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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,