interest-test.component.html 1.5 KB

12345678910111213141516171819202122232425262728293031323334
  1. <ion-header [translucent]="true">
  2. <ion-toolbar>
  3. <ion-title style="font-family: 'Courier New', Courier, monospace;">
  4. <span style="font-weight: bold;">兴趣探索</span>
  5. </ion-title>
  6. </ion-toolbar>
  7. </ion-header>
  8. <ion-content>
  9. <!-- 文本域:生成提示词 -->
  10. <div style="background-color: #fcfafafa;margin: 15px;border-radius: 10px;padding-top: 10px;">
  11. <span style="font-weight: bold;font-size: 20px;margin-left: 10px;">兴趣方向</span>
  12. <ion-textarea [value]="department" (ionInput)="departmentInput($event)" placeholder="文本提示词" autoGrow="true"
  13. style="margin-left: 10px;text-decoration: underline;opacity: 0.5;"></ion-textarea>
  14. <span style="font-weight: bold;font-size: 20px;margin-left: 10px;">具体描述</span>
  15. <ion-textarea [value]="userPrompt" (ionInput)="promptInput($event)" placeholder="文本提示词" autoGrow="true"
  16. style="margin-left: 10px;text-decoration: underline;opacity: 0.5;"></ion-textarea>
  17. </div>
  18. <!-- 按钮:执行消息生成函数 -->
  19. <div style="display: flex;align-items: center;justify-content: center;">
  20. <ion-button (click)="sendMessage()" expand="block" style="width: 90%;">开始定制学习规划</ion-button>
  21. </div>
  22. <!-- 展示:返回消息内容 -->
  23. @if(!isComplete){
  24. <div style="margin: 20px;">{{responseMsg}}</div>
  25. }
  26. @if(isComplete){
  27. <fm-markdown-preview class="content-style" [content]="responseMsg"></fm-markdown-preview>
  28. }
  29. </ion-content>