Skip to content

Commit

Permalink
set version to 3.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
baisui1981 committed Nov 27, 2022
1 parent c4b6002 commit 52a41ad
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
7 changes: 4 additions & 3 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion src/base/datax.add.step4.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ import {NzNotificationService} from "ng-zorro-antd/notification";
@Component({
selector: "selected-tables",
template: `
<nz-table #t [nzData]="convertItems(items)" nzSize="small">
<nz-table #t [nzData]="convertItems(items)" [nzFrontPagination]="showPagination" nzSize="small">
<thead>
<tr>
<th
Expand Down Expand Up @@ -72,6 +72,10 @@ import {NzNotificationService} from "ng-zorro-antd/notification";
`
})
export class SelectedTabsComponent extends BasicFormComponent {

@Input()
showPagination = true;

@Input()
items: TransferItem[];
@Input()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ import {NzNotificationService} from "ng-zorro-antd/notification";
<nz-tabset [nzTabBarExtraContent]="extraTemplate" [(nzSelectedIndex)]="tabSelectIndex">
<nz-tab nzTitle="配置">
<ng-template nz-tab>
<selected-tables [direction]="'right'" [items]="items" [disabled]="false" [descriptor]="incrSourceDescriptor" [batchSettableTabs]="[]"
<selected-tables [showPagination]="false" [direction]="'right'" [items]="items" [disabled]="false" [descriptor]="incrSourceDescriptor" [batchSettableTabs]="[]"
[pluginMetas]="pluginMetas" [subFormHetero]="this.subFormHetero" [stat]="{checkAll: false, checkHalf: false}" [subFieldForms]="subFieldForms"
[dataXReaderTargetName]="'dataxName_' + this.currentApp.name+','+targetItemDesc_incr_process_extend"
(onItemSelect)="onItemSelect($event)" (onItemSelectAll)="onItemSelectAll($event)" [skipSubformDescNullError]="skipSubformDescNullError"></selected-tables>
Expand Down

0 comments on commit 52a41ad

Please sign in to comment.