This commit is contained in:
张良(004796)
2024-03-28 17:41:21 +08:00
parent a47a4849eb
commit 254d02c762
8 changed files with 627 additions and 2 deletions

View File

@@ -314,3 +314,10 @@ export const sensitiveTypeList = [
{ value: 2, label: '黑名单', listClass: listClass.danger},
]
// 1-生效 2-过期 3-待生效
export const topStatusList = [
{ value: 1, label: '生效', listClass: listClass.primary},
{ value: 2, label: '过期', listClass: listClass.info},
{ value: 3, label: '待生效', listClass: listClass.warning},
]