소스 검색

update: merch

祝雨婧 3 달 전
부모
커밋
21b71d9d26

+ 52 - 0
novel-app/src/app/agent-create/agent-create.page.html

@@ -0,0 +1,52 @@
+<ion-header [translucent]="true">
+  <ion-toolbar>
+    <ion-buttons slot="start">
+      <ion-button (click)="backhome()" color="primary" >{{back}}</ion-button>
+    </ion-buttons>
+    <ion-title>创建智能体</ion-title>
+    <!-- <ion-progress-bar type="indeterminate"></ion-progress-bar> -->
+  </ion-toolbar>
+</ion-header>
+
+
+<ion-content [fullscreen]="true">
+  <div style="text-align: center; margin-top: 20px">
+    <img height="80px" [src]="currentUser.get('avatar')" alt="" style="border-radius: 50%;">
+    <p>智能体创建</p>
+  </div>
+  <div>
+    <ion-card>
+      <ion-list>
+        <ion-item>
+          <p style="width: 60px; font-weight: bolder;">名称:</p>
+          <!-- <ion-input label="输入你想了解的科普信息" placeholder="Enter text"></ion-input> -->
+          <ion-input  [value]="name" placeholder="输入名称" (ionInput)="nameInput($event)"></ion-input>
+        </ion-item>
+        <ion-item>
+          <p style="width: 60px; font-weight: bolder;">年龄:</p>
+          <ion-input  [value]="age" placeholder="输入年龄" (ionInput)="ageInput($event)"></ion-input>
+        </ion-item>
+        <ion-item>
+          <p style="width: 60px;  font-weight: bolder;">性别:</p>
+          <ion-select
+            aria-label="性别"
+            placeholder="选择性别"
+            (ionChange)="genderChange($event)"
+            (ionCancel)="genderCancel()"
+            (ionDismiss)="genderDismiss()"
+          >
+            <ion-select-option value="男">男</ion-select-option>
+            <ion-select-option value="女">女</ion-select-option>
+          </ion-select>
+        </ion-item>
+        <ion-item style="height: auto;">
+            <p style="width:120px;font-weight: bolder;">设定描述:</p>
+            <ion-textarea [value]="desc" placeholder="示例:" (ionInput)="descInput($event)" autoGrow="true"></ion-textarea> 
+        </ion-item>
+      </ion-list>
+    </ion-card>
+  </div>
+  <ion-button (click)="createAgent()" expand="block" color="primary" >创建智能体</ion-button>
+  
+
+</ion-content>

+ 0 - 0
novel-app/src/app/agent-create/agent-create.page.scss


+ 17 - 0
novel-app/src/app/agent-create/agent-create.page.spec.ts

@@ -0,0 +1,17 @@
+import { ComponentFixture, TestBed } from '@angular/core/testing';
+import { AgentCreatePage } from './agent-create.page';
+
+describe('AgentCreatePage', () => {
+  let component: AgentCreatePage;
+  let fixture: ComponentFixture<AgentCreatePage>;
+
+  beforeEach(() => {
+    fixture = TestBed.createComponent(AgentCreatePage);
+    component = fixture.componentInstance;
+    fixture.detectChanges();
+  });
+
+  it('should create', () => {
+    expect(component).toBeTruthy();
+  });
+});

+ 87 - 0
novel-app/src/app/agent-create/agent-create.page.ts

@@ -0,0 +1,87 @@
+import { Component, OnInit } from '@angular/core';
+import { Router } from '@angular/router';
+import { CloudObject, CloudQuery, CloudUser } from '../lib/ncloud';
+import { IonHeader, IonToolbar, IonTitle, IonContent, IonButton,IonIcon, ModalController, IonTextarea, IonInput, IonCard, IonCardHeader, IonCardTitle, IonThumbnail, IonCardContent, IonCardSubtitle, IonItem, IonList, IonLabel, IonAvatar, IonSelect, IonSelectOption, AlertController, IonButtons, IonProgressBar, IonText } from '@ionic/angular/standalone';
+import { CommonModule } from '@angular/common';
+import { AvatarModule, ChatPanelOptions, DalleOptions, FmodeChat, FmodeChatCompletion, FmodeChatMessage, ImagineWork, openChatPanelModal } from 'fmode-ng';
+
+@Component({
+  selector: 'app-agent-create',
+  templateUrl: './agent-create.page.html',
+  styleUrls: ['./agent-create.page.scss'],
+  standalone: true,
+  imports: [
+    IonHeader, IonToolbar, IonTitle, IonContent, IonButton,IonTextarea,IonInput,
+    IonIcon,IonCard,IonCardHeader,IonCardTitle,
+    IonCardSubtitle,IonCardContent, IonThumbnail, IonItem,IonList,CommonModule,IonLabel,
+    IonAvatar, IonSelect, IonSelectOption,IonButtons,IonProgressBar,
+    IonText, IonCardHeader, IonCardSubtitle,]
+})
+export class AgentCreatePage implements OnInit {
+
+  currentUser: CloudUser;
+  constructor(
+    private modalCtrl:ModalController,
+    private router:Router,
+    private alertController: AlertController
+  ) {
+   this.currentUser = new CloudUser();
+  // 示例任务,自己生成图片后请存储新的ID 
+  }
+ images:Array<string> = []
+  back:string = "<";
+  backhome() {
+    this.router.navigate(['/tab1']);
+  }
+  ngOnInit() {
+
+  }
+  name: string = ''
+  nameInput(e:any) {
+    this.name = e.detail.value;
+  }
+  age: number = 25
+  ageInput(e:any) {
+    this.age = e.detail.value;
+  }
+  gender: string = 'male'
+  genderChange(e:any) {
+    this.gender = e.detail.value;}
+  genderCancel(){}
+  genderDismiss(){}
+  desc: string = ''
+  descInput(e:any) {
+    this.desc = e.detail.value;}
+  PictureDescResult:string = `` // 画面描述结果
+  async createAgent() {
+    localStorage.setItem("company","E4KpGvTEto")
+    let consult = new CloudObject("NovelCharacter")
+    let now = new Date();
+    let dateStr = `${now.getFullYear()}-${now.getMonth()+1}-${now.getDate()}`
+    // 对象权限的精确指定
+      let completion = new FmodeChatCompletion([
+        {role:"system",content:""},
+      ])
+      completion.sendCompletion().subscribe((message:any)=>{
+        // 打印消息体
+        console.log(message.content)
+        // 赋值消息内容给组件内属性
+        if(message?.complete){ // 判断message为完成状态,则设置isComplete为完成
+              // 图片生成
+            let PicturePrompt = ``
+            let options:DalleOptions = {prompt:PicturePrompt}
+                  consult.set({
+                    name:`${this.name}`,
+                    age:`${this.age}`,
+                    gender:`${this.gender}`,
+                    desc:`${this.desc}`,
+                    user:this.currentUser.toPointer(), 
+                  })
+                  consult.save();
+                  console.log(consult);
+        }
+      })
+ 
+  }
+
+}

+ 75 - 74
novel-app/src/app/app.routes.ts

@@ -1,84 +1,85 @@
-import { HttpClientModule } from '@angular/common/http';
-import { NgModule } from '@angular/core';
-import { PreloadAllModules, RouteReuseStrategy, RouterModule, Routes } from '@angular/router';
-import { IonicRouteStrategy } from '@ionic/angular';
-
-export const routes: Routes = [
-  {
-    path: '',
-    loadChildren: () => import('./tabs/tabs.routes').then((m) => m.routes),
-  },
-  {
-    path: 'story-generator',
-    loadComponent: () => import('./story-generator/story-generator.page').then(m => m.StoryGeneratorPage)
-  },
-  {
-    path: 'toolbox',
-    loadComponent: () => import('./toolbox/toolbox.page').then(m => m.ToolboxPage)
-  },
-  {
-    path: '',
-    loadChildren: () => import('./tabs/tabs.routes').then((m) => m.routes),
-  },
-  {
-    path: 'register',
-    loadComponent: () => import('./register/register.page').then(m => m.RegisterPage)
-  },
-  {
-    path: 'login',
-    loadComponent: () => import('./login/login.page').then(m => m.LoginPage)
-  },
-  {
-    path: 'short-generator',
-    loadComponent: () => import('./short-generator/short-generator.page').then(m => m.ShortGeneratorPage)
-  },
-  {
-    path: 'character',
-    loadComponent: () => import('./character/character.page').then(m => m.CharacterPage)
-  },
-  {
-    path: 'character-creator',
-    loadComponent: () => import('./character-creator/character-creator.page').then(m => m.CharacterCreatorPage)
-  },
-  {
-    path: 'chapter-generator',
-    loadComponent: () => import('./chapter-generator/chapter-generator.page').then(m => m.ChapterGeneratorPage)
-  },
-  {
-    path: 'character-detail/:id',
-    loadComponent: () => import('./character-detail/character-detail.component').then(m => m.CharacterDetailComponent)
-  },
-  {
-    path: 'tab1',
-    loadComponent: () => import('./tab1/tab1.page').then(m => m.Tab1Page)
-  },
  {
+import { HttpClientModule } from '@angular/common/http';
+import { NgModule } from '@angular/core';
+import { PreloadAllModules, RouteReuseStrategy, RouterModule, Routes } from '@angular/router';
+import { IonicRouteStrategy } from '@ionic/angular';
+
+export const routes: Routes = [
+  {
+    path: '',
+    loadChildren: () => import('./tabs/tabs.routes').then((m) => m.routes),
+  },
+  {
+    path: 'story-generator',
+    loadComponent: () => import('./story-generator/story-generator.page').then(m => m.StoryGeneratorPage)
+  },
+  {
+    path: 'toolbox',
+    loadComponent: () => import('./toolbox/toolbox.page').then(m => m.ToolboxPage)
+  },
+  {
+    path: '',
+    loadChildren: () => import('./tabs/tabs.routes').then((m) => m.routes),
+  },
+  {
+    path: 'register',
+    loadComponent: () => import('./register/register.page').then(m => m.RegisterPage)
+  },
+  {
+    path: 'login',
+    loadComponent: () => import('./login/login.page').then(m => m.LoginPage)
+  },
+  {
+    path: 'short-generator',
+    loadComponent: () => import('./short-generator/short-generator.page').then(m => m.ShortGeneratorPage)
+  },
+  {
+    path: 'character',
+    loadComponent: () => import('./character/character.page').then(m => m.CharacterPage)
+  },
+  {
+    path: 'character-creator',
+    loadComponent: () => import('./character-creator/character-creator.page').then(m => m.CharacterCreatorPage)
+  },
+  {
+    path: 'chapter-generator',
+    loadComponent: () => import('./chapter-generator/chapter-generator.page').then(m => m.ChapterGeneratorPage)
+  },
+  {
+    path: 'character-detail/:id',
+    loadComponent: () => import('./character-detail/character-detail.component').then(m => m.CharacterDetailComponent)
+  },
+  {
+    path: 'tab1',
+    loadComponent: () => import('./tab1/tab1.page').then(m => m.Tab1Page)
+  },
+  {
     path: 'world-setup',
-    loadComponent: () => import('./world-setup/world-setup.page').then( m => m.WorldSetupPage)
+    loadComponent: () => import('./world-setup/world-setup.page').then(m => m.WorldSetupPage)
   },
   {
     path: 'character-generator',
-    loadComponent: () => import('./character-generator/character-generator.page').then( m => m.CharacterGeneratorPage)
+    loadComponent: () => import('./character-generator/character-generator.page').then(m => m.CharacterGeneratorPage)
   },
   {
     path: 'name-generator',
-    loadComponent: () => import('./name-generator/name-generator.page').then( m => m.NameGeneratorPage)
+    loadComponent: () => import('./name-generator/name-generator.page').then(m => m.NameGeneratorPage)
   }
 
-
-
-
-
-];
-
-
-
-
-
-@NgModule({
-  imports: [RouterModule.forRoot(routes, { preloadingStrategy: PreloadAllModules }), HttpClientModule],
-  exports: [RouterModule],
-  providers: [
-    { provide: RouteReuseStrategy, useClass: IonicRouteStrategy }
-  ],
-})
+
+
+
+
+];
+
+
+
+
+
+@NgModule({
+  imports: [RouterModule.forRoot(routes, { preloadingStrategy: PreloadAllModules }), HttpClientModule],
+  exports: [RouterModule],
+  providers: [
+    { provide: RouteReuseStrategy, useClass: IonicRouteStrategy }
+  ],
+})
 export class AppRoutingModule { }

+ 31 - 0
novel-app/src/app/atest/atest.page.html

@@ -0,0 +1,31 @@
+<ion-header [translucent]="true">
+  <ion-toolbar>
+    <ion-buttons slot="start">
+      <ion-button (click)="backhome()" color="primary" >{{back}}</ion-button>
+    </ion-buttons>
+    <ion-title>创建智能体</ion-title>
+    <!-- <ion-progress-bar type="indeterminate"></ion-progress-bar> -->
+  </ion-toolbar>
+</ion-header>
+
+
+<ion-content [fullscreen]="true">
+  <div style="text-align: center; margin-top: 20px">
+    <img height="80px" [src]="currentUser.get('avatar')" alt="" style="border-radius: 50%;">
+    <p>智能体创建</p>
+  </div>
+  <div>
+    <ion-card>
+      <ion-list>
+        <ion-item>
+          <p style="width: 60px; font-weight: bolder;">名称:</p>
+          <!-- <ion-input label="输入你想了解的科普信息" placeholder="Enter text"></ion-input> -->
+          <ion-input  [value]="name" placeholder="输入名称" (ionInput)="nameInput($event)"></ion-input>
+        </ion-item>  
+      </ion-list>
+    </ion-card>
+  </div>
+  <ion-button (click)="createAgent()" expand="block" color="primary" >创建智能体</ion-button>
+  
+
+</ion-content>

+ 0 - 0
novel-app/src/app/atest/atest.page.scss


+ 17 - 0
novel-app/src/app/atest/atest.page.spec.ts

@@ -0,0 +1,17 @@
+import { ComponentFixture, TestBed } from '@angular/core/testing';
+import { AtestPage } from './atest.page';
+
+describe('AtestPage', () => {
+  let component: AtestPage;
+  let fixture: ComponentFixture<AtestPage>;
+
+  beforeEach(() => {
+    fixture = TestBed.createComponent(AtestPage);
+    component = fixture.componentInstance;
+    fixture.detectChanges();
+  });
+
+  it('should create', () => {
+    expect(component).toBeTruthy();
+  });
+});

+ 89 - 0
novel-app/src/app/atest/atest.page.ts

@@ -0,0 +1,89 @@
+import { Component, OnInit } from '@angular/core';
+import { Router } from '@angular/router';
+import { CloudObject, CloudQuery, CloudUser } from '../lib/ncloud';
+import { IonHeader, IonToolbar, IonTitle, IonContent, IonButton,IonIcon, ModalController, IonTextarea, IonInput, IonCard, IonCardHeader, IonCardTitle, IonThumbnail, IonCardContent, IonCardSubtitle, IonItem, IonList, IonLabel, IonAvatar, IonSelect, IonSelectOption, AlertController, IonButtons, IonProgressBar, IonText } from '@ionic/angular/standalone';
+import { CommonModule } from '@angular/common';
+import { AvatarModule, ChatPanelOptions, DalleOptions, FmodeChat, FmodeChatCompletion, FmodeChatMessage, ImagineWork, openChatPanelModal } from 'fmode-ng';
+
+@Component({
+  selector: 'app-atest',
+  templateUrl: './atest.page.html',
+  styleUrls: ['./atest.page.scss'],
+  standalone: true,
+  imports: [
+    IonHeader, IonToolbar, IonTitle, IonContent, IonButton,IonTextarea,IonInput,
+    IonIcon,IonCard,IonCardHeader,IonCardTitle,
+    IonCardSubtitle,IonCardContent, IonThumbnail, IonItem,IonList,CommonModule,IonLabel,
+    IonAvatar, IonSelect, IonSelectOption,IonButtons,IonProgressBar,
+    IonText, IonCardHeader, IonCardSubtitle,]
+})
+export class AtestPage implements OnInit {
+
+  currentUser: CloudUser;
+  constructor(
+    private modalCtrl:ModalController,
+    private router:Router,
+    private alertController: AlertController
+  ) {
+   this.currentUser = new CloudUser();
+  // 示例任务,自己生成图片后请存储新的ID 
+  }
+ images:Array<string> = []
+  back:string = "<";
+  backhome() {
+    this.router.navigate(['/tab1']);
+  }
+  ngOnInit() {
+
+  }
+  name: string = ''
+  nameInput(e:any) {
+    this.name = e.detail.value;
+  }
+  age: number = 25
+  ageInput(e:any) {
+    this.age = e.detail.value;
+  }
+  gender: string = 'male'
+  genderChange(e:any) {
+    this.gender = e.detail.value;}
+  genderCancel(){}
+  genderDismiss(){}
+  desc: string = ''
+  descInput(e:any) {
+    this.desc = e.detail.value;}
+  PictureDescResult:string = `` // 画面描述结果
+  isConsultSet: boolean = false;
+  async createAgent() {
+   // localStorage.setItem("company","E4KpGvTEto")
+    let consult = new CloudObject("test")
+    let now = new Date();
+    let dateStr = `${now.getFullYear()}-${now.getMonth()+1}-${now.getDate()}`
+    // 对象权限的精确指定
+      let completion = new FmodeChatCompletion([
+        {role:"system",content:""},
+      ])
+      
+      completion.sendCompletion().subscribe((message:any)=>{
+        // 打印消息体
+        console.log(message.content)
+        // 赋值消息内容给组件内属性
+        if (message?.complete && !this.isConsultSet) {
+          this.isConsultSet = true; // 标记为已设置
+          
+          consult.set({
+            name: `${this.name}`,
+            age: `${this.age}`,
+            gender: `${this.gender}`,
+            desc: `${this.desc}`,
+            user: this.currentUser.toPointer(),
+          });
+                  consult.save();
+                  console.log(consult);
+        }
+      })
+ 
+     
+  }
+
+}

+ 0 - 0
novel-app/src/lib/ncloud.ts → novel-app/src/app/lib/ncloud.ts


+ 6 - 1
novel-app/src/app/tab1/tab1.page.html

@@ -9,7 +9,7 @@
     </ion-card-header>
     <ion-card-content>
       <ion-list>
-        <ion-item *ngFor="let doctor of doctorList" lines="none">
+        <ion-item (click)="openInquiry(doctor)"  *ngFor="let doctor of doctorList" lines="none">
           <ion-thumbnail slot="start">
             <img [src]="doctor.get('avatar')" [alt]="doctor.get('name')" />
           </ion-thumbnail>
@@ -23,4 +23,9 @@
     </ion-card-content>
   </ion-card>
 </div>
+<ion-fab vertical="bottom" horizontal="center" slot="fixed">
+  <ion-fab-button (click)="navigateToPage()">
+    <ion-icon name="add"></ion-icon>
+  </ion-fab-button>
+</ion-fab>
 </ion-content>

+ 6 - 0
novel-app/src/app/tab1/tab1.page.scss

@@ -133,4 +133,10 @@ ion-thumbnail {
         color: #333;
       }
     }
+  }
+  ion-fab {
+    position: fixed;
+    bottom: 16px; /* 距离底部的距离 */
+    left: 50%;
+    transform: translateX(-50%); /* 水平居中 */
   }

+ 84 - 81
novel-app/src/app/tab1/tab1.page.ts

@@ -1,16 +1,18 @@
+import { FmodeChat, FmodeChatMessage, openChatPanelModal, ChatPanelOptions } from 'fmode-ng';
 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 { IonButton } from '@ionic/angular/standalone';
 import { IonIcon } from '@ionic/angular/standalone';
 import { Router } from '@angular/router';
 import { CommonModule } from '@angular/common';
-import { ModalController } from '@ionic/angular';
+import { ModalController } from '@ionic/angular/standalone';
 import { HttpClient } from '@angular/common/http';
 import { addIcons } from 'ionicons';
+import { add } from 'ionicons/icons';
 import { documentText, chatbubbles, person, calendar, newspaper,
    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,
    medkit,clipboard, podium, videocam, people
  });
@@ -22,94 +24,28 @@ addIcons({ documentText, chatbubbles, person, calendar, newspaper,
   imports: [
     IonHeader, IonToolbar, IonTitle, IonContent, ExploreContainerComponent, IonTabButton, IonButton,
     IonIcon,IonSearchbar,IonLabel,IonItem,IonList,CommonModule,IonCard,IonCardHeader,IonCardTitle,IonCardSubtitle,
-    IonCardContent, IonThumbnail, 
+    IonCardContent, IonThumbnail, IonFab,IonFabButton,IonIcon
   ],
 })
 export class Tab1Page {
+  
 
   constructor(
     private router: Router,
-    // private modalController: ModalController,
+     private modalCtrl: ModalController,
     // private navCtrl: NavController,
-    private http: HttpClient // 注入 HttpClient
-  ) {}
-  /**
-   * Go to the ai page
-   */
-  goToPage1(){
-    console.log(['route'])
-    this.router.navigate(['/tabs/inquiry/ai'])
+    private http: HttpClient// 注入 HttpClient
+ 
+  ) {
+   
+    addIcons({ add });
+  }
+  navigateToPage() {
+    this.router.navigate(['/atest']); // 替换为目标页面的路由
   }
-
   /**
-   * Go to the human page
+   * Go to the ai page
    */
-  goToPage2(){
-    this.router.navigate(['/tabs/inquiry/human'])
-  }
-
-  goToPicture(){
-    console.log(['route'])
-    this.router.navigate(['/tabs/picture'])
-  }
-  searchContent:string = ''; //搜索内容
-
-  handleInput(ev:any) {
-    console.log("ev.detail.value: ",ev.detail.value)
-    this.searchContent = ev.detail.value;
-  }
-
-  search(){
-    if (this.searchContent == ''){
-      console.log("请输入搜索内容")
-    }
-    else {
-      console.log("搜索内容: ",this.searchContent)
-      this.searchContent = '';
-    }
-  }
-
-  // 功能按钮数据
-  functionItems1 = [
-    { label: '我的健康', icon: 'document-text', route: '/tabs/my-health' },
-    { label: '健康档案', icon: 'person', route: '/tabs/health-records' },
-    { label: '电话问诊', icon: 'calendar', route: '/tabs/tab1' },
-    { label: '购买药品', icon: 'medkit', route: '/tabs/tab1' },
-  ];
-
-  functionItems2 = [
-    { label: '专业男科', icon: 'clipboard', route: '/tabs/tab1' },
-    { label: '权威专家', icon: 'podium', route: '/tabs/tab1' },
-    { label: '健康资讯', icon: 'newspaper', route: '/tabs/tab1' },
-    { label: '智慧社区', icon: 'people', route: '/tabs/smart-community' }
-  ];
-
-  doctors = [
-    {
-      name: '余海涛',
-      age: 20,
-      position: '主任医师',
-      department: '中医草药科',
-      hospital: '南昌市江西师范医院',
-      image: '../../assets/image/doctor5.png',
-    },
-    {
-      name: '聂翼伏',
-      age: 25,
-      position: '副主任医师',
-      department: '骨科',
-      hospital: 'YY市人民医院',
-      image: '../../assets/image/doctor7.png',
-    },
-    {
-      name: '徐君豪',
-      age: 28,
-      position: '主治医师',
-      department: '心血管内科',
-      hospital: 'XX市第一医院',
-      image: '../../assets/image/doctor6.png',
-    },
-  ];
 
   // 导航到指定路由
   navigateTo(route: string) {
@@ -126,4 +62,71 @@ export class Tab1Page {
     let query = new CloudQuery("NovelCharacter");
     this.doctorList = await query.find()
   }
+
+  
+   /** 示例:问诊根据doctor拼接提示词 */
+   openInquiry(doctor:CloudObject){
+    localStorage.setItem("company","E4KpGvTEto")
+
+    let consult = new CloudObject("Consultation")
+    let now = new Date();
+    let dateStr = `${now.getFullYear()}-${now.getMonth()+1}-${now.getDate()}`
+    consult.set({
+      title:`${doctor.get('depart')?.name || ""}门诊记录${dateStr}-${doctor?.get("name")}`,
+      doctor:doctor.toPointer(),
+      depart:doctor.get("depart")
+    })
+
+    let options:ChatPanelOptions = {
+      roleId:"2DXJkRsjXK",
+      onChatInit:(chat:FmodeChat)=>{
+        console.log("onChatInit");
+              console.log("预设角色",chat.role);
+              chat.role.set("name",doctor?.get("name"));
+              chat.role.set("title",doctor?.get("title"));
+              chat.role.set("desc",doctor?.get("desc"));
+              chat.role.set("tags",doctor?.get("qualifications"));
+              chat.role.set("avatar",doctor?.get("avatar") || "../../assets/image/doctor5.png")
+              chat.role.set("prompt",`
+# 角色设定
+您是${doctor?.get("desc")},${doctor?.get("name")},年龄${doctor?.get("age")}岁,需要完成一次完整的门诊服务。
+
+# 对话环节
+0.导诊(根据用户基本情况,引导挂号合适的科室)
+1.预设的问询方式(根据不同症状来问询具体的情况)
+- 打招呼,以用户自述为主
+- 当信息充足时候,确认用户症状对应的科室,并进入下一个环节
+2.拓展的问询细节
+例如:用户反映呼吸不畅,拓展出:是否咳嗽;是否感觉痛或者痒等其他需要的问题。
+- 当问询细节补充完成后进入下一个环节
+3.初步的诊断结果,并且同时列出检查检验项目
+初步诊断:确定需要有哪些进一步检查
+检查检验:获取医学客观数据
+- 等待用户提交客观数据,进入下一阶段
+4.给出诊断方案并给出处方
+- 完成处方时,请在消息结尾附带: [处方完成]
+
+# 开始话语
+当您准备好了,可以以一个医生的身份,向来访的用户打招呼。`);
+      },
+      onMessage:(chat:FmodeChat,message:FmodeChatMessage)=>{
+        console.log("onMessage",message)
+        let content:any = message?.content
+        if(typeof content == "string"){
+          if(content?.indexOf("[处方完成]")>-1){
+            console.log("门诊已完成")
+            consult.set({
+              content:content // 处方内容
+            })
+            consult.save();
+          }
+        }
+      },
+      onChatSaved:(chat:FmodeChat)=>{
+        // chat?.chatSession?.id 本次会话的 chatId
+        console.log("onChatSaved",chat,chat?.chatSession,chat?.chatSession?.id)
+      }
+    }
+    openChatPanelModal(this.modalCtrl,options)
+  }
 }