fix: 个人动态无限循环 issues #340

This commit is contained in:
guozhigq
2023-12-25 22:52:20 +08:00
parent 4e8ca590b4
commit 7d54bd1641
6 changed files with 17 additions and 5 deletions

View File

@ -129,4 +129,12 @@ class MineController extends GetxController {
}
Get.toNamed('/fan?mid=${userInfo.value.mid}');
}
pushDynamic() {
if (!userLogin.value) {
SmartDialog.showToast('账号未登录');
return;
}
Get.toNamed('/memberDynamics?mid=${userInfo.value.mid}');
}
}