report.component.html 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <ion-header>
  2. <ion-toolbar>
  3. <!-- <ion-button >
  4. Click me
  5. </ion-button> -->
  6. <ion-back-button slot="start"></ion-back-button>
  7. </ion-toolbar>
  8. </ion-header>
  9. <ion-content>
  10. <ion-grid
  11. style="margin: 0;padding: 0;margin-left: 10px;margin-right: 15px;margin-top: 20px;">
  12. <ion-row class="table-header">
  13. <ion-col col-12 text-center>
  14. <strong style="font-size: 20px;">服装设计方案表</strong>
  15. </ion-col>
  16. </ion-row>
  17. <!-- 表格内容 -->
  18. <ion-row *ngFor="let key of JSONKeys" >
  19. <ion-col text-left size="2" style="border-right: 1px solid #ddd;"><strong>{{key}}</strong></ion-col>
  20. <!-- <ion-col col-8 text-left>{{ JSONobject2[key] || "无"}} </ion-col> -->
  21. <ion-col text-left style="position: relative;">
  22. <div style="display: flex;align-items: center;justify-content: center; padding: 0px;">
  23. @if(key=="detail"){
  24. <fm-markdown-preview class="content-style" [content]="JSONobject[key]" ></fm-markdown-preview>
  25. }
  26. @if(key!="detail"){
  27. {{ JSONobject[key] || "无"}}
  28. }
  29. </div>
  30. </ion-col>
  31. <!-- <ion-col col-8 text-left>{{ 22}}</ion-col> -->
  32. </ion-row>
  33. <!-- 可以继续添加更多行 -->
  34. </ion-grid>
  35. </ion-content>