import { Component, OnInit } from '@angular/core'; @Component({ selector: 'app-scrollspy-demo', templateUrl: './scrollspy-demo.component.html', styleUrls: ['./scrollspy-demo.component.scss'] }) export class ScrollspyDemoComponent implements OnInit { tabs = [ { 'id':'basic', 'title':'基本信息' }, { 'id':'bills', 'title':'单据信息' }, { 'id':'accessory', 'title':'附件信息' } ] private currentTab: string = 'basic'; constructor() { } ngOnInit() {} scrollTabChange(tabId:string){ //console.log(222); this.currentTab = tabId; } }