This commit is contained in:
张良(004796)
2024-01-29 19:04:53 +08:00
parent 5a0e1ffd58
commit 1fb2d171c2
13 changed files with 774 additions and 304 deletions

View File

@@ -262,3 +262,36 @@ export const userErrorLogHomeIndexList = [
{ value: 'video', label: '直播期间',listClass: listClass.danger},
{ value: 'other', label: '其他',listClass: listClass.success},
]
export const systemPushGroupIdList = [
{ value: 0, label: '单个用户'},
{ value: 1, label: '全部用户'},
{ value: 2, label: '男用户'},
{ value: 3, label: '女用户'},
{ value: 4, label: '认证女神'},
]
export const systemPushLogStatus = [
{ value: 0, label: '未推送'},
{ value: 1, label: '推送中'},
{ value: 2, label: '推送失败'},
{ value: 3, label: '推送成功'},
]
export const systemPushSendTimeTypeList = [
{ value: 0, label: '手动发送'},
{ value: 1, label: '定时发送'},
]
export const systemPushStatusList = [
{ value: 0, label: '未执行'},
{ value: 1, label: '执行中'},
{ value: 2, label: '队列执行中'},
{ value: 3, label: '已完成'},
]
export const systemPushTypeList = [
{ value: 0, label: '纯文字消息'},
{ value: 1, label: '文本消息'},
{ value: 2, label: '单图文消息'},
{ value: 3, label: '多图文消息'},
{ value: 4, label: '纯图文消息'},
]