|
@@ -1,6 +1,6 @@
|
|
import { FmodeChat, FmodeChatMessage, openChatPanelModal, ChatPanelOptions } from 'fmode-ng';
|
|
import { FmodeChat, FmodeChatMessage, openChatPanelModal, ChatPanelOptions } from 'fmode-ng';
|
|
import { Component } from '@angular/core';
|
|
import { Component } from '@angular/core';
|
|
-import { IonCardHeader, IonHeader, IonToolbar, IonTitle, IonContent, IonTabButton, IonSearchbar, IonLabel, IonItem, IonList, NavController, IonCard, IonCardTitle, IonCardSubtitle, IonCardContent, IonThumbnail } from '@ionic/angular/standalone';
|
|
|
|
|
|
+import { IonCardHeader, IonHeader, IonToolbar, IonTitle, IonContent, IonTabButton, IonSearchbar, IonLabel, IonItem, IonList, NavController, IonCard, IonCardTitle, IonCardSubtitle, IonCardContent, IonThumbnail, IonFab, IonFabButton } from '@ionic/angular/standalone';
|
|
import { ExploreContainerComponent } from '../explore-container/explore-container.component';
|
|
import { ExploreContainerComponent } from '../explore-container/explore-container.component';
|
|
import { IonButton } from '@ionic/angular/standalone';
|
|
import { IonButton } from '@ionic/angular/standalone';
|
|
import { IonIcon } from '@ionic/angular/standalone';
|
|
import { IonIcon } from '@ionic/angular/standalone';
|
|
@@ -9,9 +9,10 @@ import { CommonModule } from '@angular/common';
|
|
import { ModalController } from '@ionic/angular/standalone';
|
|
import { ModalController } from '@ionic/angular/standalone';
|
|
import { HttpClient } from '@angular/common/http';
|
|
import { HttpClient } from '@angular/common/http';
|
|
import { addIcons } from 'ionicons';
|
|
import { addIcons } from 'ionicons';
|
|
|
|
+import { add } from 'ionicons/icons';
|
|
import { documentText, chatbubbles, person, calendar, newspaper,
|
|
import { documentText, chatbubbles, person, calendar, newspaper,
|
|
medkit,clipboard, podium, videocam, people } from 'ionicons/icons';
|
|
medkit,clipboard, podium, videocam, people } from 'ionicons/icons';
|
|
-import { CloudObject, CloudQuery } from 'src/lib/ncloud';
|
|
|
|
|
|
+import { CloudObject, CloudQuery } from '../lib/ncloud';
|
|
addIcons({ documentText, chatbubbles, person, calendar, newspaper,
|
|
addIcons({ documentText, chatbubbles, person, calendar, newspaper,
|
|
medkit,clipboard, podium, videocam, people
|
|
medkit,clipboard, podium, videocam, people
|
|
});
|
|
});
|
|
@@ -23,17 +24,25 @@ addIcons({ documentText, chatbubbles, person, calendar, newspaper,
|
|
imports: [
|
|
imports: [
|
|
IonHeader, IonToolbar, IonTitle, IonContent, ExploreContainerComponent, IonTabButton, IonButton,
|
|
IonHeader, IonToolbar, IonTitle, IonContent, ExploreContainerComponent, IonTabButton, IonButton,
|
|
IonIcon,IonSearchbar,IonLabel,IonItem,IonList,CommonModule,IonCard,IonCardHeader,IonCardTitle,IonCardSubtitle,
|
|
IonIcon,IonSearchbar,IonLabel,IonItem,IonList,CommonModule,IonCard,IonCardHeader,IonCardTitle,IonCardSubtitle,
|
|
- IonCardContent, IonThumbnail,
|
|
|
|
|
|
+ IonCardContent, IonThumbnail, IonFab,IonFabButton,IonIcon
|
|
],
|
|
],
|
|
})
|
|
})
|
|
export class Tab1Page {
|
|
export class Tab1Page {
|
|
|
|
+
|
|
|
|
|
|
constructor(
|
|
constructor(
|
|
private router: Router,
|
|
private router: Router,
|
|
private modalCtrl: ModalController,
|
|
private modalCtrl: ModalController,
|
|
// private navCtrl: NavController,
|
|
// private navCtrl: NavController,
|
|
- private http: HttpClient // 注入 HttpClient
|
|
|
|
- ) {}
|
|
|
|
|
|
+ private http: HttpClient// 注入 HttpClient
|
|
|
|
+
|
|
|
|
+ ) {
|
|
|
|
+
|
|
|
|
+ addIcons({ add });
|
|
|
|
+ }
|
|
|
|
+ navigateToPage() {
|
|
|
|
+ this.router.navigate(['/atest']); // 替换为目标页面的路由
|
|
|
|
+ }
|
|
/**
|
|
/**
|
|
* Go to the ai page
|
|
* Go to the ai page
|
|
*/
|
|
*/
|