This commit is contained in:
张良(004796)
2024-03-12 17:37:13 +08:00
parent 3b26224ef5
commit 4ff37871f8
7 changed files with 374 additions and 332 deletions

View File

@@ -95,13 +95,6 @@ export const onlineStatusList = [
{ value: 1, label: '在线',listClass: listClass.danger},
]
export const auditStatusList = [
{ value: 0, label: '待提交',listClass: listClass.info},
{ value: 1, label: '审核中',listClass: listClass.warning},
{ value: 2, label: '审核通过',listClass: listClass.primary},
{ value: 3, label: '审核不通过',listClass: listClass.danger},
]
/**
* 开启视频接听
*/
@@ -528,3 +521,10 @@ export const booleanList = [
{ value: true, label: '是',listClass: listClass.danger},
{ value: false, label: '否',listClass: listClass.info},
]
export const auditStatusList = [
{ value: 0, label: '待提交',listClass: listClass.info},
{ value: 1, label: '审核中',listClass: listClass.warning},
{ value: 2, label: '审核通过',listClass: listClass.primary},
{ value: 3, label: '审核不通过',listClass: listClass.danger},
]