|
@@ -10,6 +10,8 @@ import { ExploreContainerComponent } from '../explore-container/explore-containe
|
|
|
import { Router } from '@angular/router';
|
|
|
import { CloudUser } from 'src/lib/ncloud';
|
|
|
import { openUserLoginModal } from 'src/lib/user/model-user-login/model-user-login.component';
|
|
|
+import { AlertController } from '@ionic/angular';
|
|
|
+
|
|
|
import { CategoryModalComponent } from 'src/app/category-modal/category-modal.component';
|
|
|
|
|
|
interface Slide {
|
|
@@ -27,8 +29,7 @@ interface Slide {
|
|
|
IonHeader, IonToolbar, IonTitle, IonContent, ExploreContainerComponent,
|
|
|
IonSearchbar, IonIcon, IonTabButton, IonTabs, IonTabBar, IonLabel, IonNav, IonImg,
|
|
|
IonSegmentView, IonSegment, IonSegmentButton, IonSegmentContent, IonThumbnail, IonButton,
|
|
|
- IonRippleEffect, IonBackButton
|
|
|
- ],
|
|
|
+ IonRippleEffect, IonBackButton]
|
|
|
})
|
|
|
export class Tab1Page implements OnInit, OnDestroy {
|
|
|
slides: Slide[] = [
|
|
@@ -79,7 +80,8 @@ export class Tab1Page implements OnInit, OnDestroy {
|
|
|
|
|
|
constructor(
|
|
|
private router: Router,
|
|
|
- private modalCtrl: ModalController
|
|
|
+ private modalCtrl: ModalController,
|
|
|
+ private alertCtrl: AlertController // 注入 AlertController
|
|
|
) { }
|
|
|
|
|
|
ngOnInit() {
|
|
@@ -159,26 +161,31 @@ export class Tab1Page implements OnInit, OnDestroy {
|
|
|
async checkLoginAndNavigate(path: string) {
|
|
|
const currentUser = new CloudUser();
|
|
|
if (!currentUser.id) {
|
|
|
- const alert = document.createElement('ion-alert');
|
|
|
- alert.header = '需要登录';
|
|
|
- alert.message = '请先登录后再使用此功能';
|
|
|
- alert.buttons = [
|
|
|
- {
|
|
|
- text: '取消',
|
|
|
- role: 'cancel'
|
|
|
- },
|
|
|
- {
|
|
|
- text: '去登录',
|
|
|
- handler: async () => {
|
|
|
- const user = await openUserLoginModal(this.modalCtrl);
|
|
|
- if (user) {
|
|
|
- this.router.navigate([path]);
|
|
|
+ console.log("用户ID不存在");
|
|
|
+
|
|
|
+ // 使用 AlertController 来创建和显示弹窗
|
|
|
+ const alert = await this.alertCtrl.create({
|
|
|
+ header: '需要登录',
|
|
|
+ message: '请先登录后再使用此功能',
|
|
|
+ buttons: [
|
|
|
+ {
|
|
|
+ text: '取消',
|
|
|
+ role: 'cancel'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ text: '去登录',
|
|
|
+ handler: async () => {
|
|
|
+ const user = await openUserLoginModal(this.modalCtrl);
|
|
|
+ if (user) {
|
|
|
+ this.router.navigate([path]);
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
- }
|
|
|
- ];
|
|
|
- document.body.appendChild(alert);
|
|
|
- await alert.present();
|
|
|
+ ]
|
|
|
+ });
|
|
|
+
|
|
|
+ console.log("显示弹窗");
|
|
|
+ await alert.present(); // 弹窗显示
|
|
|
} else {
|
|
|
this.router.navigate([path]);
|
|
|
}
|