|
@@ -25,28 +25,25 @@ export class UserLoginComponent implements OnInit {
|
|
|
this.currentUser = new CloudUser();
|
|
|
}
|
|
|
async login() {
|
|
|
- // 弹出登录窗口
|
|
|
let user = await openUserLoginModal(this.modalCtrl);
|
|
|
if (user?.id) {
|
|
|
- this.currentUser = user
|
|
|
+ this.currentUser = user;
|
|
|
+ this.router.navigate(['/tabs/tab5']);
|
|
|
}
|
|
|
}
|
|
|
async signup() {
|
|
|
- // 弹出注册窗口
|
|
|
let user = await openUserLoginModal(this.modalCtrl, "signup");
|
|
|
if (user?.id) {
|
|
|
- this.currentUser = user
|
|
|
+ this.currentUser = user;
|
|
|
+ this.router.navigate(['/tabs/tab5']);
|
|
|
}
|
|
|
}
|
|
|
async logout() {
|
|
|
try {
|
|
|
let user = new CloudUser();
|
|
|
await user.logout();
|
|
|
-
|
|
|
- // 刷新页面状态
|
|
|
this.currentUser = undefined;
|
|
|
|
|
|
- // 显示成功提示
|
|
|
const toast = document.createElement('ion-toast');
|
|
|
toast.message = '退出登录成功';
|
|
|
toast.duration = 2000;
|
|
@@ -55,8 +52,7 @@ export class UserLoginComponent implements OnInit {
|
|
|
document.body.appendChild(toast);
|
|
|
await toast.present();
|
|
|
|
|
|
- // 重定向到首页
|
|
|
- this.router.navigate(['/tabs/tab1']);
|
|
|
+ this.router.navigate(['/tabs/tab5']);
|
|
|
} catch (error) {
|
|
|
console.error('Logout error:', error);
|
|
|
const toast = document.createElement('ion-toast');
|