This commit is contained in:
张良(004796)
2024-01-30 12:58:44 +08:00
parent 959235e65c
commit b791e659c1
5 changed files with 131 additions and 368 deletions

View File

@@ -272,26 +272,28 @@ export const systemPushGroupIdList = [
]
export const systemPushLogStatus = [
{ value: 0, label: '未推送'},
{ value: 1, label: '推送中'},
{ value: 2, label: '推送失败'},
{ value: 3, label: '推送成功'},
{ value: 0, label: '未推送',listClass: listClass.info},
{ value: 1, label: '推送中',listClass: listClass.primary},
{ value: 2, label: '推送失败',listClass: listClass.danger},
{ value: 3, label: '推送成功',listClass: listClass.success},
]
export const systemPushSendTimeTypeList = [
{ value: 0, label: '手动发送'},
{ value: 1, label: '定时发送'},
{ value: 0, label: '手动发送',listClass: listClass.primary},
{ value: 1, label: '定时发送',listClass: listClass.danger},
]
export const systemPushStatusList = [
{ value: 0, label: '未执行'},
{ value: 1, label: '执行中'},
{ value: 2, label: '队列执行中'},
{ value: 3, label: '已完成'},
{ value: 0, label: '未执行',listClass: listClass.info},
{ value: 1, label: '执行中',listClass: listClass.warning},
{ value: 2, label: '队列执行中',listClass: listClass.primary},
{ value: 3, label: '已完成',listClass: listClass.success},
{ value: 4, label: '已取消',listClass: listClass.info},
{ value: 10, label: '执行失败',listClass: listClass.danger}
]
export const systemPushTypeList = [
{ value: 0, label: '纯文字消息'},
{ value: 1, label: '文本消息'},
{ value: 2, label: '单图文消息'},
{ value: 3, label: '多图文消息'},
{ value: 4, label: '纯图文消息'},
{ value: 0, label: '纯文字消息',listClass: listClass.info},
{ value: 1, label: '文本消息',listClass: listClass.primary},
{ value: 2, label: '单图文消息',listClass: listClass.success},
{ value: 3, label: '多图文消息',listClass: listClass.warning},
{ value: 4, label: '纯图文消息',listClass: listClass.warning},
]