|
@@ -26,11 +26,11 @@ function columnsNature12(rechargeTrendHandle: (data: any) => void): { label: str
|
|
|
return newSelectFieldData
|
|
|
}
|
|
|
|
|
|
- let defaultStart = 14
|
|
|
+ let defaultStart = 15
|
|
|
// 总付费趋势
|
|
|
const zC = Array(90).fill('').map((_item: string, index: number) => {
|
|
|
let field = `amountD${index + 1}Trend`
|
|
|
- let data = {
|
|
|
+ let data: any = {
|
|
|
title: `D${index + 1}`,
|
|
|
dataIndex: `D${index + 1}`,
|
|
|
label: "付费趋势",
|
|
@@ -135,7 +135,7 @@ function columnsNature12(rechargeTrendHandle: (data: any) => void): { label: str
|
|
|
},
|
|
|
{
|
|
|
title: '推广游戏应用类型', dataIndex: 'gameClassify', label: '游戏信息', align: 'center', width: 80,
|
|
|
- render: (a: string, b?: any) => (<span>{gameClassifyEnum[a]}</span>)
|
|
|
+ render: (a: string, b?: any) => (<span>{gameClassifyEnum[a as keyof typeof gameClassifyEnum]}</span>)
|
|
|
}
|
|
|
]
|
|
|
},
|
|
@@ -346,6 +346,7 @@ function columnsNature12(rechargeTrendHandle: (data: any) => void): { label: str
|
|
|
title: '新用户累计有效创角ARPU', dataIndex: 'newUserTotalEffectiveRoleArpu', label: '付费数据', align: 'center', width: 80, sorter: true,
|
|
|
render: (a: string) => <Statistic value={a || 0} />
|
|
|
},
|
|
|
+ { title: '首日人均付费次数', dataIndex: 'firstDayAvgCostCount', default: 14, label: '付费数据', align: 'center', width: 70, sorter: true }
|
|
|
]
|
|
|
},
|
|
|
{
|
|
@@ -382,7 +383,7 @@ function columnsNature12(rechargeTrendHandle: (data: any) => void): { label: str
|
|
|
label: "付费趋势",
|
|
|
align: "center",
|
|
|
width: 125,
|
|
|
- default: 44,
|
|
|
+ default: 45,
|
|
|
render: (a: any, b: any) => {
|
|
|
let fieldData = getFieldDta()
|
|
|
if (fieldData?.length > 0) {
|
|
@@ -414,7 +415,7 @@ function columnsNature12(rechargeTrendHandle: (data: any) => void): { label: str
|
|
|
title: '操作',
|
|
|
dataIndex: 'cz',
|
|
|
label: '操作',
|
|
|
- default: 45,
|
|
|
+ default: 46,
|
|
|
width: 80,
|
|
|
render: (a: number, b: any) => {
|
|
|
if (b?.costDate === '总计') {
|