|
@@ -1,4 +1,6 @@
|
|
|
|
+import { CommonModule } from '@angular/common';
|
|
import { Component, OnInit } from '@angular/core';
|
|
import { Component, OnInit } from '@angular/core';
|
|
|
|
+import { IonCard, IonCardHeader, IonCardTitle, IonCardContent } from '@ionic/angular/standalone';
|
|
import { IonHeader, IonToolbar, IonTitle, IonContent } from '@ionic/angular/standalone';
|
|
import { IonHeader, IonToolbar, IonTitle, IonContent } from '@ionic/angular/standalone';
|
|
import { IonTextarea, IonButton,IonInput } from "@ionic/angular/standalone";
|
|
import { IonTextarea, IonButton,IonInput } from "@ionic/angular/standalone";
|
|
import { DalleOptions, ImagineWork, FmodeChatCompletion } from 'fmode-ng';
|
|
import { DalleOptions, ImagineWork, FmodeChatCompletion } from 'fmode-ng';
|
|
@@ -12,7 +14,12 @@ import { DalleOptions, ImagineWork, FmodeChatCompletion } from 'fmode-ng';
|
|
IonHeader, IonToolbar, IonTitle, IonContent,
|
|
IonHeader, IonToolbar, IonTitle, IonContent,
|
|
IonButton,
|
|
IonButton,
|
|
IonInput,
|
|
IonInput,
|
|
- IonTextarea
|
|
|
|
|
|
+ IonTextarea,
|
|
|
|
+ IonCard,
|
|
|
|
+ IonCardHeader,
|
|
|
|
+ IonCardTitle,
|
|
|
|
+ IonCardContent,
|
|
|
|
+ CommonModule
|
|
],
|
|
],
|
|
})
|
|
})
|
|
export class InquiryComponent implements OnInit {
|
|
export class InquiryComponent implements OnInit {
|
|
@@ -63,6 +70,9 @@ export class InquiryComponent implements OnInit {
|
|
})
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
+ }
|
|
|
|
+ trackImage(index: number, imageUrl: string) {
|
|
|
|
+ return imageUrl; // 返回图像URL作为跟踪标识
|
|
}
|
|
}
|
|
ngOnInit() {}
|
|
ngOnInit() {}
|
|
|
|
|