Skip to content

Commit

Permalink
feat:(module:table): 表格添加行禁止选择功能
Browse files Browse the repository at this point in the history
  • Loading branch information
huajian123 committed Mar 22, 2024
1 parent 5614852 commit e51cee3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
@for (row of _dataList; track trackByTableBody(rowIndex, row); let rowIndex = $index) {
<tr>
@if (_tableConfig.showCheckbox) {
<td class="animate-bg-0" nzEllipsis [nzChecked]="row['_checked']" [nzLeft]="true" (nzCheckedChange)="checkRowSingle($event, rowIndex)"></td>
<td class="animate-bg-0" nzEllipsis [nzDisabled]="row['_disabled']" [nzChecked]="row['_checked']" [nzLeft]="true" (nzCheckedChange)="checkRowSingle($event, rowIndex)"></td>
}
@for (head of _tableConfig.headers; track head) {
@if (head.show === undefined || head.show === true) {
Expand Down

0 comments on commit e51cee3

Please sign in to comment.