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 { followtabs = [ { 'id':'basic1', 'title':'基本信息' }, { 'id':'bills1', 'title':'单据信息' }, { 'id':'accessory1', 'title':'附件信息' } ]; currentTab1 = 'basic1'; constructor() { } ngOnInit() {} scrollTabChange1(tabId:string){ this.currentTab1 = tabId; } }