This commit is contained in:
张良(004796)
2024-01-02 18:48:49 +08:00
parent c405c4f48b
commit 5abb18e219
5 changed files with 487 additions and 0 deletions

View File

@@ -160,4 +160,17 @@ export const consumeLogCalculateStatusList = [
{ value: true, label: '已计算',listClass: listClass.primary},
]
// 1 个人详情页 2 视频结束 3 动态 4.IM页面
export const reportTypeList = [
{ value: 1, label: '个人详情页'},
{ value: 2, label: '视频结束'},
{ value: 3, label: '动态'},
{ value: 4, label: 'IM页面'},
]
export const reportStatusList = [
{ value: 0, label: '未处理',listClass: listClass.danger},
{ value: 1, label: '已处理',listClass: listClass.primary},
]