Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-06-13 11:49:38 +08:00
parent f824477ddb
commit c05fbde3fa
106 changed files with 2780 additions and 3200 deletions

View File

@@ -42,10 +42,8 @@ class MineController extends GetxController {
if (!accountService.isLogin.value || longPress) {
Get.toNamed('/loginPage', preventDuplicates: false);
} else {
int mid = userInfo.value.mid!;
String face = userInfo.value.face!;
Get.toNamed('/member?mid=$mid',
arguments: {'face': face}, preventDuplicates: false);
Get.toNamed('/member?mid=${userInfo.value.mid}',
preventDuplicates: false);
}
}