mirror of
https://github.com/continew-org/continew-admin-ui.git
synced 2025-12-29 20:57:10 +08:00
6 lines
226 B
TypeScript
6 lines
226 B
TypeScript
interface LabelValueItem { label: string, value: number, color: string }
|
|
export const DisEnableStatusList: LabelValueItem[] = [
|
|
{ label: '启用', value: 1, color: 'green' },
|
|
{ label: '禁用', value: 2, color: 'red' },
|
|
]
|