import { Component, OnInit } from '@angular/core'; @Component({ selector: 'farris-doc-combo-list', templateUrl: './combo-demo.component.html', styleUrls: ['./combo-demo.component.scss'] }) export class ComboDemoComponent implements OnInit { stateVal = { id: '2', label:'审核通过'}; stateItems = [ { id: '1', label: '审核中', state: 'info' }, { id: '2', label: '审核通过', state: 'success' }, { id: '3', label: '不通过', state: 'error' } ]; ngOnInit() {} }