poem-picture.component.html 951 B

123456789101112131415161718192021222324252627282930313233343536
  1. <ion-header [translucent]="true">
  2. <ion-toolbar>
  3. <ion-title>
  4. 示例:古诗文意境生成{{imagineWork.progress || 0}}
  5. </ion-title>
  6. </ion-toolbar>
  7. </ion-header>
  8. <ion-content [fullscreen]="true">
  9. <!-- 生成提示词 -->
  10. <ion-textarea [value]="userPrompt" (ionInput)="promptInput($event)" placeholder="请输入古诗" autoGrow="true"></ion-textarea>
  11. <ion-button (click)="createImage()" expand="block">生成意境</ion-button>
  12. <!-- 意境画面提示词 -->
  13. <div>
  14. 明月几时有,把酒问青天。不知天上宫阙,今夕是何年?
  15. </div>
  16. <div>
  17. {{PictureDescResult}}
  18. </div>
  19. <!-- 生成结果 -->
  20. @if(images.length) {
  21. @for(imageUrl of images;track imageUrl){
  22. <img [src]="imageUrl" alt="" srcset="">
  23. }
  24. }
  25. <!-- 生成状态 -->
  26. @if(!images.length){
  27. @if(imagineWork){
  28. <h1>生成中</h1>
  29. }
  30. @if(!imagineWork){
  31. <h1>未开始</h1>
  32. }
  33. }
  34. </ion-content>