数据可视化大屏
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

lj-table.component.html 896B

1234567891011121314151617181920212223242526272829
  1. <nz-table #dynamicTable nzBordered nzSize="small" [nzData]="data" [nzPageSize]="5">
  2. <thead>
  3. <tr>
  4. <th
  5. style="
  6. background: rgb(8 22 48);
  7. /* color: #bfceff !important; */
  8. color: #75f9fd;
  9. text-align: center;
  10. border: 0.5px solid #ffffff !important;
  11. "
  12. *ngFor="let column of columns"
  13. nzShowSort="true"
  14. >{{ column.title }}</th
  15. >
  16. </tr>
  17. </thead>
  18. <tbody style="background: rgb(8 22 48)">
  19. <tr *ngFor="let rowData of dynamicTable.data">
  20. <td
  21. *ngFor="let column of columns"
  22. style="text-align: center; color: #75f9fd; border: 0.5px solid #ffffff !important; transition: background 0.3s"
  23. >{{ rowData[column.key] }}</td
  24. >
  25. </tr>
  26. </tbody>
  27. </nz-table>
  28. <!-- <nz-pagination [nzPageIndex]="1" [nzTotal]="500" /> -->
  29. <!-- <label>{{ data.length }}</label> -->