@if (showSearch) {
@if (searchTerm) { }
} @if (loading) {
@for (i of [1,2,3,4,5]; track i) {
@for (col of columns; track col.key) {
}
}
} @else if (data.length === 0) {

暂无数据

} @else {
@for (col of columns; track col.key) { } @for (row of displayData; track row['id'] ?? row['msgUniqueIdentifier'] ?? $index) { @for (col of columns; track col.key) { } }
{{ col.label }} @if (col.sortable && sortKey === col.key) { }
@if (col.template === 'status') { } @else if (col.template === 'action') {
} @else { {{ formatCellValue(row, col) }} }
@if (showPagination && totalPages > 1) {
共 {{ filteredData.length }} 条,第 {{ currentPage }}/{{ totalPages }} 页
@for (p of pages; track p) { }
} }