Tabs标签页

选项卡切换组件。

何时使用

提供平级的区域将大块内容进行收纳和展现,保持界面整洁。

Ant Design 依次提供了三级选项卡,分别用于不同的场景。

  • 卡片式的页签,提供可关闭的样式,常用于容器顶部。
  • 标准线条式页签,用于容器内部的主功能切换,这是最常用的 Tabs。
  • RadioButton 可作为更次级的页签来使用。

代码演示

Tabs标签页 - 图1

基本

默认选中第一项。

  1. import { Component } from '@angular/core';
  2. @Component({
  3. selector: 'nz-demo-tabs-basic',
  4. template: `
  5. <nz-tabset>
  6. <nz-tab nzTitle="Tab 1">
  7. Content of Tab Pane 1
  8. </nz-tab>
  9. <nz-tab nzTitle="Tab 2">
  10. Content of Tab Pane 2
  11. </nz-tab>
  12. <nz-tab nzTitle="Tab 3">
  13. Content of Tab Pane 3
  14. </nz-tab>
  15. </nz-tabset>
  16. `
  17. })
  18. export class NzDemoTabsBasicComponent {}

Tabs标签页 - 图2

禁用

禁用某一项。

  1. import { Component } from '@angular/core';
  2. @Component({
  3. selector: 'nz-demo-tabs-disabled',
  4. template: `
  5. <nz-tabset>
  6. <nz-tab *ngFor="let tab of tabs" [nzTitle]="tab.name" [nzDisabled]="tab.disabled">
  7. {{ tab.name }}
  8. </nz-tab>
  9. </nz-tabset>
  10. `
  11. })
  12. export class NzDemoTabsDisabledComponent {
  13. tabs = [
  14. {
  15. name: 'Tab 1',
  16. disabled: false
  17. },
  18. {
  19. name: 'Tab 2',
  20. disabled: true
  21. },
  22. {
  23. name: 'Tab 3',
  24. disabled: false
  25. }
  26. ];
  27. }

Tabs标签页 - 图3

图标

有图标的标签。

  1. import { Component } from '@angular/core';
  2. @Component({
  3. selector: 'nz-demo-tabs-icon',
  4. template: `
  5. <nz-tabset>
  6. <nz-tab *ngFor="let tab of tabs" [nzTitle]="titleTemplate">
  7. <ng-template #titleTemplate> <i nz-icon [type]="tab.icon"></i>{{ tab.name }} </ng-template>
  8. {{ tab.name }}
  9. </nz-tab>
  10. </nz-tabset>
  11. `
  12. })
  13. export class NzDemoTabsIconComponent {
  14. tabs = [
  15. {
  16. active: true,
  17. name: 'Tab 1',
  18. icon: 'apple'
  19. },
  20. {
  21. active: false,
  22. name: 'Tab 2',
  23. icon: 'android'
  24. }
  25. ];
  26. }

Tabs标签页 - 图4

滑动

可以左右、上下滑动,容纳更多标签。

  1. import { Component, OnInit } from '@angular/core';
  2. @Component({
  3. selector: 'nz-demo-tabs-slide',
  4. template: `
  5. <nz-radio-group [(ngModel)]="nzTabPosition">
  6. <label nz-radio-button [nzValue]="'top'">Horizontal</label>
  7. <label nz-radio-button [nzValue]="'left'">Vertical</label>
  8. </nz-radio-group>
  9. <nz-input-number style="float:right;" [nzMin]="0" [nzMax]="10" [(ngModel)]="selectedIndex"></nz-input-number>
  10. <nz-tabset
  11. style="height:220px;"
  12. [nzTabPosition]="nzTabPosition"
  13. [(nzSelectedIndex)]="selectedIndex"
  14. (nzSelectChange)="log([$event])"
  15. >
  16. <nz-tab
  17. *ngFor="let tab of tabs"
  18. [nzTitle]="tab.name"
  19. (nzSelect)="log(['select', tab])"
  20. (nzClick)="log(['click', tab])"
  21. (nzDeselect)="log(['deselect', tab])"
  22. >
  23. {{ tab.content }}
  24. </nz-tab>
  25. </nz-tabset>
  26. `,
  27. styles: []
  28. })
  29. export class NzDemoTabsSlideComponent implements OnInit {
  30. tabs: any[] = [];
  31. nzTabPosition = 'top';
  32. selectedIndex = 0;
  33. /* tslint:disable-next-line:no-any */
  34. log(args: any[]): void {
  35. console.log(args);
  36. }
  37. ngOnInit(): void {
  38. for (let i = 0; i < 11; i++) {
  39. this.tabs.push({
  40. name: `Tab ${i}`,
  41. content: `Content of tab ${i}`
  42. });
  43. }
  44. }
  45. }

Tabs标签页 - 图5

附加内容

可以在页签右边添加附加操作。

  1. import { Component } from '@angular/core';
  2. @Component({
  3. selector: 'nz-demo-tabs-extra',
  4. template: `
  5. <nz-tabset [nzTabBarExtraContent]="extraTemplate">
  6. <nz-tab *ngFor="let tab of tabs" [nzTitle]="'Tab ' + tab"> Content of tab {{ tab }} </nz-tab>
  7. </nz-tabset>
  8. <ng-template #extraTemplate>
  9. <button nz-button>Extra Action</button>
  10. </ng-template>
  11. `
  12. })
  13. export class NzDemoTabsExtraComponent {
  14. tabs = [1, 2, 3];
  15. }

Tabs标签页 - 图6

大小

大号页签用在页头区域,小号用在弹出框等较狭窄的容器内。

  1. import { Component } from '@angular/core';
  2. @Component({
  3. selector: 'nz-demo-tabs-size',
  4. template: `
  5. <nz-radio-group [(ngModel)]="size">
  6. <label nz-radio-button nzValue="small"><span>Small</span></label>
  7. <label nz-radio-button nzValue="default"><span>Default</span></label>
  8. <label nz-radio-button nzValue="large"><span>Large</span></label>
  9. </nz-radio-group>
  10. <nz-tabset [nzSize]="size">
  11. <nz-tab *ngFor="let tab of tabs" [nzTitle]="'Tab ' + tab"> Content of tab {{ tab }} </nz-tab>
  12. </nz-tabset>
  13. `,
  14. styles: []
  15. })
  16. export class NzDemoTabsSizeComponent {
  17. size = 'small';
  18. tabs = [1, 2, 3];
  19. }

Tabs标签页 - 图7

位置

有四个位置,nzTabPosition="left|right|top|bottom"

  1. import { Component } from '@angular/core';
  2. @Component({
  3. selector: 'nz-demo-tabs-position',
  4. template: `
  5. <div style="margin-bottom: 16px;">
  6. Tab position:
  7. <nz-select [(ngModel)]="position" style="width: 80px;">
  8. <nz-option *ngFor="let option of options" [nzLabel]="option.label" [nzValue]="option.value"> </nz-option>
  9. </nz-select>
  10. </div>
  11. <nz-tabset [nzTabPosition]="position" [nzType]="'line'">
  12. <nz-tab *ngFor="let tab of tabs" [nzTitle]="'Tab ' + tab"> Content of tab {{ tab }} </nz-tab>
  13. </nz-tabset>
  14. `,
  15. styles: []
  16. })
  17. export class NzDemoTabsPositionComponent {
  18. position = 'top';
  19. tabs = [1, 2, 3];
  20. options = [
  21. { value: 'top', label: 'top' },
  22. { value: 'left', label: 'left' },
  23. { value: 'right', label: 'right' },
  24. { value: 'bottom', label: 'bottom' }
  25. ];
  26. }

Tabs标签页 - 图8

卡片式页签

另一种样式的页签,不提供对应的垂直样式。

  1. import { Component } from '@angular/core';
  2. @Component({
  3. selector: 'nz-demo-tabs-card',
  4. template: `
  5. <nz-tabset [nzTabPosition]="'top'" [nzType]="'card'">
  6. <nz-tab *ngFor="let tab of tabs" [nzTitle]="'Tab' + tab"> Content of Tab Pane {{ tab }} </nz-tab>
  7. </nz-tabset>
  8. `,
  9. styles: []
  10. })
  11. export class NzDemoTabsCardComponent {
  12. tabs = [1, 2, 3];
  13. }

Tabs标签页 - 图9

新增和关闭页签

只有卡片样式的页签支持新增和关闭选项。

  1. import { Component } from '@angular/core';
  2. @Component({
  3. selector: 'nz-demo-tabs-editable-card',
  4. template: `
  5. <nz-tabset [nzType]="'card'" [nzTabBarExtraContent]="extraTemplate">
  6. <nz-tab *ngFor="let tab of tabs" [nzTitle]="titleTemplate">
  7. <ng-template #titleTemplate>
  8. <div>
  9. {{ tab }}
  10. <i nz-icon type="close" (click)="closeTab(tab)" class="ant-tabs-close-x"></i>
  11. </div>
  12. </ng-template>
  13. Content of {{ tab }}
  14. </nz-tab>
  15. </nz-tabset>
  16. <ng-template #extraTemplate>
  17. <i class="ant-tabs-new-tab" nz-icon type="plus" (click)="newTab()"></i>
  18. </ng-template>
  19. `
  20. })
  21. export class NzDemoTabsEditableCardComponent {
  22. tabs = ['Tab 1', 'Tab 2'];
  23. closeTab(tab: string): void {
  24. this.tabs.splice(this.tabs.indexOf(tab), 1);
  25. }
  26. newTab(): void {
  27. this.tabs.push('New Tab');
  28. }
  29. }

Tabs标签页 - 图10

卡片式页签容器

用于容器顶部,需要一点额外的样式覆盖。

  1. import { Component } from '@angular/core';
  2. @Component({
  3. selector: 'nz-demo-tabs-card-top',
  4. template: `
  5. <div class="card-container">
  6. <nz-tabset [nzTabPosition]="'top'" [nzType]="'card'">
  7. <nz-tab *ngFor="let tab of tabs" [nzTitle]="'Tab Title ' + tab">
  8. <p>Content of Tab Pane {{ tab }}</p>
  9. <p>Content of Tab Pane {{ tab }}</p>
  10. <p>Content of Tab Pane {{ tab }}</p>
  11. </nz-tab>
  12. </nz-tabset>
  13. </div>
  14. `,
  15. styles: [
  16. `
  17. :host {
  18. background: #f5f5f5;
  19. overflow: hidden;
  20. padding: 24px;
  21. display: block;
  22. }
  23. .card-container ::ng-deep .ant-tabs-card .ant-tabs-content {
  24. height: 120px;
  25. margin-top: -16px;
  26. }
  27. .card-container ::ng-deep .ant-tabs-card .ant-tabs-content .ant-tabs-tabpane {
  28. background: #fff;
  29. padding: 16px;
  30. }
  31. .card-container ::ng-deep .ant-tabs-card .ant-tabs-bar {
  32. border-color: #fff;
  33. }
  34. .card-container ::ng-deep .ant-tabs-card .ant-tabs-bar .ant-tabs-tab {
  35. border-color: transparent;
  36. background: transparent;
  37. }
  38. .card-container ::ng-deep .ant-tabs-card .ant-tabs-bar .ant-tabs-tab-active {
  39. border-color: #fff;
  40. background: #fff;
  41. }
  42. `
  43. ]
  44. })
  45. export class NzDemoTabsCardTopComponent {
  46. tabs = [1, 2, 3];
  47. }

Tabs标签页 - 图11

自定义新增页签触发器

给自定义触发器绑定事件。

  1. import { Component } from '@angular/core';
  2. @Component({
  3. selector: 'nz-demo-tabs-custom-add-trigger',
  4. template: `
  5. <div style="margin-bottom: 16px;">
  6. <button nz-button (click)="newTab()">ADD</button>
  7. </div>
  8. <nz-tabset [nzType]="'card'" [nzSelectedIndex]="index">
  9. <nz-tab *ngFor="let tab of tabs" [nzTitle]="titleTemplate">
  10. <ng-template #titleTemplate>
  11. <div>{{ tab }}<i nz-icon type="close" class="ant-tabs-close-x" (click)="closeTab(tab)"></i></div>
  12. </ng-template>
  13. Content of {{ tab }}
  14. </nz-tab>
  15. </nz-tabset>
  16. `,
  17. styles: []
  18. })
  19. export class NzDemoTabsCustomAddTriggerComponent {
  20. index = 0;
  21. tabs = ['Tab 1', 'Tab 2'];
  22. closeTab(tab: string): void {
  23. this.tabs.splice(this.tabs.indexOf(tab), 1);
  24. }
  25. newTab(): void {
  26. this.tabs.push('New Tab');
  27. this.index = this.tabs.length - 1;
  28. }
  29. }

Tabs标签页 - 图12

懒加载

默认情况下,nz-tab 中的组件会进行预加载,如果希望当 Tab 被激活时再加载组件,可以使用该示例中的懒加载方式。

  1. /* entryComponents: NzDemoTabContentLazyComponent,NzDemoTabContentEagerlyComponent */
  2. import { Component, OnInit } from '@angular/core';
  3. @Component({
  4. selector: 'nz-demo-tabs-lazy',
  5. template: `
  6. <nz-tabset>
  7. <nz-tab nzTitle="Tab Eagerly 1">
  8. <nz-demo-tab-content-eagerly></nz-demo-tab-content-eagerly>
  9. </nz-tab>
  10. <nz-tab nzTitle="Tab Eagerly 2">
  11. <nz-demo-tab-content-eagerly></nz-demo-tab-content-eagerly>
  12. </nz-tab>
  13. <nz-tab nzTitle="Tab Lazy 1">
  14. <ng-template nz-tab>
  15. <nz-demo-tab-content-lazy></nz-demo-tab-content-lazy>
  16. </ng-template>
  17. </nz-tab>
  18. <nz-tab nzTitle="Tab Lazy 2">
  19. <ng-template nz-tab>
  20. <nz-demo-tab-content-lazy></nz-demo-tab-content-lazy>
  21. </ng-template>
  22. </nz-tab>
  23. </nz-tabset>
  24. `
  25. })
  26. export class NzDemoTabsLazyComponent {}
  27. @Component({
  28. selector: 'nz-demo-tab-content-lazy',
  29. template: `
  30. lazy
  31. `
  32. })
  33. export class NzDemoTabContentLazyComponent implements OnInit {
  34. ngOnInit(): void {
  35. console.log(`I will init when tab active`);
  36. }
  37. }
  38. @Component({
  39. selector: 'nz-demo-tab-content-eagerly',
  40. template: `
  41. eagerly
  42. `
  43. })
  44. export class NzDemoTabContentEagerlyComponent implements OnInit {
  45. ngOnInit(): void {
  46. console.log(`I will init eagerly`);
  47. }
  48. }

API

单独引入此组件

想要了解更多关于单独引入组件的内容,可以在快速上手页面进行查看。

  1. import { NzTabsModule } from 'ng-zorro-antd';

nz-tabsetcomponent

参数说明类型默认值
[nzSelectedIndex]当前激活 tab 面板的 序列号,可双向绑定number-
[nzAnimated]是否使用动画切换 Tabs,在 nzTabPosition=top|bottom 时有效boolean|{inkBar:boolean, tabPane:boolean}true, 当 type="card" 时为 false
[nzSize]大小,提供 largedefaultsmall 三种大小'large'|'small'|'default''default'
[nzTabBarExtraContent]tab bar 上额外的元素TemplateRef<void>-
[nzTabBarStyle]tab bar 的样式对象object-
[nzTabPosition]页签位置,可选值有 toprightbottomleft'top'|'right'|'bottom'|'left''top'
[nzType]页签的基本样式,可选 linecard 类型'line'|'card''line'
[nzTabBarGutter]tabs 之间的间隙number-
[nzHideAll]是否隐藏所有tab内容booleanfalse
[nzShowPagination]是否超出范围时显示pre和next按钮booleantrue
(nzSelectedIndexChange)当前激活 tab 面板的 序列号变更回调函数EventEmitter<number>-
(nzSelectChange)当前激活 tab 面板变更回调函数EventEmitter<{nzSelectedIndex: number,tab: NzTabComponent}>-
(nzOnNextClick)next 按钮被点击的回调EventEmitter<void>-
(nzOnPrevClick)prev 按钮被点击的回调EventEmitter<void>-

nz-tabcomponent

参数说明类型默认值
[nzTitle]选项卡头显示文字string|TemplateRef<void>-
[nzForceRender]被隐藏时是否渲染 DOM 结构booleanfalse
[nzDisabled]是否禁用boolean-
(nzClick)title被点击的回调函数EventEmitter<void>-
(nzSelect)tab被选中的回调函数EventEmitter<void>-
(nzDeselect)tab被取消选中的回调函数EventEmitter<void>-

[nz-tab]directive

ng-template 一同使用,用于标记需要懒加载的 tab 内容,具体用法见示例。