This commit is contained in:
dute7liang
2023-12-31 18:19:57 +08:00
parent a2307fe5dd
commit bd120ae862
5 changed files with 253 additions and 1339 deletions

View File

@@ -128,5 +128,30 @@ export const indexDisplayList = [
{ value: 1, label: '展示',listClass: listClass.info},
]
// 类型 1 个人详情页 2.IM页面 3 视频页
export const userGiftTypeList = [
{ value: 1, label: '个人详情页'},
{ value: 2, label: 'IM页面'},
{ value: 3, label: '视频页'},
]
// 类型 1-充值 2-礼物 3-守护 4-通话
export const consumeLogTypeList = [
{ value: 1, label: '充值'},
{ value: 2, label: '礼物'},
{ value: 3, label: '守护'},
{ value: 4, label: '通话'},
]
export const consumeLogStatusList = [
{ value: -1, label: '无须分销',listClass: listClass.info},
{ value: 0, label: '待分销',listClass: listClass.warning},
{ value: 1, label: '已分销',listClass: listClass.primary},
]
export const consumeLogCalculateStatusList = [
{ value: false, label: '待计算',listClass: listClass.warning},
{ value: true, label: '已计算',listClass: listClass.primary},
]