This commit is contained in:
张良(004796)
2024-03-28 10:04:57 +08:00
parent 62a837fe87
commit 96a201d729
6 changed files with 573 additions and 533 deletions

View File

@@ -65,11 +65,6 @@ export const memberStatusList = [
{ value: 2, label: '不可用' ,listClass: listClass.danger},
]
export const yesOrNoList = [
{ value: 1, label: '是',listClass: listClass.danger},
{ value: 0, label: '否',listClass: listClass.info},
]
export const isAnchorList = [
{ value: 1, label: '是',listClass: listClass.primary},
{ value: 0, label: '否',listClass: listClass.info},
@@ -217,6 +212,12 @@ export const sensitiveTypeList = [
// xq平台的字典
export const yesOrNoList = [
{ value: 1, label: '是',listClass: listClass.danger},
{ value: 0, label: '否',listClass: listClass.info},
]
export const userStatusList = [
{ value: 0, label: '可用', listClass: listClass.primary },
{ value: 1, label: '不可用', listClass: listClass.danger }
@@ -556,3 +557,10 @@ export const consumeLogCalculateStatusList = [
{ value: false, label: '待计算',listClass: listClass.warning},
{ value: true, label: '已计算',listClass: listClass.primary},
]
// 0-待接收 1-接受交换 2-拒绝交换
export const wxTransDataStatusList = [
{ value: 0, label: '待接收',listClass: listClass.warning},
{ value: 1, label: '接受交换',listClass: listClass.primary},
{ value: 2, label: '拒绝交换',listClass: listClass.danger},
]