This commit is contained in:
77
2024-03-21 23:04:21 +08:00
parent 39003c533c
commit 97328cbd26
10 changed files with 1016 additions and 1008 deletions

View File

@@ -142,12 +142,6 @@ export const reportTypeList = [
{ value: 4, label: 'IM页面'},
]
export const platformTypeList = [
{ value: '1', label: '支付宝',listClass: listClass.primary},
{ value: '2', label: '微信',listClass: listClass.danger},
{ value: 'ADMIN', label: '后台操作',listClass: listClass.info},
]
export const ipMicList = [
{ value: 1, label: 'IP'},
{ value: 2, label: 'MIC'},
@@ -228,40 +222,6 @@ export const userErrorLogHomeIndexList = [
{ 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: '未推送',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: '手动发送',listClass: listClass.primary},
{ value: 1, label: '定时发送',listClass: listClass.danger},
]
export const systemPushStatusList = [
{ 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: '纯文字消息',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},
]
export const versionPlatformList = [
{ value: 1, label: '安卓'},
{ value: 2, label: 'IOS'},
@@ -358,6 +318,41 @@ export const userCompanyNatureList = [
/** 用户 - 为谁征婚 */
export const systemPushGroupIdList = [
{ value: 0, label: '单个用户'},
{ value: 1, label: '全部用户'},
{ value: 2, label: '男用户'},
{ value: 3, label: '女用户'},
]
export const systemPushLogStatus = [
{ 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: '手动发送',listClass: listClass.primary},
{ value: 1, label: '定时发送',listClass: listClass.danger},
]
export const systemPushStatusList = [
{ 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: '纯文字消息',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},
]
export const userForPersonalsList = [
{ value: 1, label: '为自己征婚'},
{ value: 2, label: '为子女征婚' },
@@ -506,6 +501,13 @@ export const payStatusList = [
{ value: 10, label: '无需支付',listClass: listClass.info},
]
export const platformTypeList = [
{ value: "ADMIN", label: '后台管理操作',listClass: listClass.danger},
{ value: "WX", label: '微信',listClass: listClass.success},
{ value: "ALI", label: '支付宝',listClass: listClass.primary},
{ value: "SYS", label: '系统操作',listClass: listClass.info},
]
export const booleanList = [
{ value: true, label: '是',listClass: listClass.danger},
{ value: false, label: '否',listClass: listClass.info},
@@ -551,3 +553,9 @@ export const reportStatusList = [
{ value: 0, label: '未处理',listClass: listClass.danger},
{ value: 1, label: '已处理',listClass: listClass.primary},
]
export const wxTransOrderSourceList = [
{ value: 1, label: '订单',listClass: listClass.primary},
{ value: 2, label: 'VIP赠送',listClass: listClass.warning},
{ value: 3, label: '后台管理新增',listClass: listClass.danger},
]