import { Component, OnInit } from '@angular/core'; @Component({ selector: 'keyboard-form', templateUrl: './keyboard-form.component.html' }) export class KeyboardFormComponent implements OnInit { cmbdata = [ { id: '1', label: '审核中', state: 'info' }, { id: '2', label: '审核通过', state: 'success' }, { id: '3', label: '不通过', state: 'error' }, { id: '21', label: '审核中2', state: 'info' }, { id: '22', label: '审核通过2', state: 'success' } ]; languages2 = [ { code: 'zh-cn', name: '中文简体', default: true }, { code: 'en', name: 'English' }, { code: 'zh-CHT', name: '中文繁体' } ]; constructor() { } ngOnInit(): void { } }