interface LabelValueItem { label: string, value: number, color: string } export const DisEnableStatusList: LabelValueItem[] = [ { label: '启用', value: 1, color: 'green' }, { label: '禁用', value: 2, color: 'red' }, ]