import { Component, OnInit } from '@angular/core'; @Component({ selector: 'app-progress-step-demo', templateUrl: './progress-step-demo.component.html', styleUrls: ['./progress-step-demo.component.scss'] }) export class ProgressStepDemoComponent implements OnInit { progressData2 = { "activeIndex":1, "stepMessages":[ { "id":"1", "title":"审批中", "description":"正在审批", "icon":"" }, { "id":"2", "title":"待复核", "description":"等待复核", "icon":"" }, { "id":"3", "title":"允许发送银行", "description":"允许发送银行的描述文字", "icon":"" } ] } constructor() { } ngOnInit() { } }