|
@@ -8,7 +8,7 @@ import { getNumber } from "@/utils/utils"
|
|
|
|
|
|
function columns12(): { label: string, fieldSHow?: { label: string, saveField: string, defaultValue: any[], data: any[] }, data: any[] }[] {
|
|
|
|
|
|
- let defaultStart = 8
|
|
|
+ let defaultStart = 9
|
|
|
const day = Array(90).fill('').map((_item: string, index: number) => {
|
|
|
let field = `daRetention${index + 1}`
|
|
|
let data = {
|
|
@@ -137,6 +137,15 @@ function columns12(): { label: string, fieldSHow?: { label: string, saveField: s
|
|
|
|
|
|
|
|
|
return [
|
|
|
+ {
|
|
|
+ label: 'GS信息',
|
|
|
+ data: [
|
|
|
+ {
|
|
|
+ title: 'GS名称', dataIndex: 'gsNames', label: 'GS信息', align: 'center', width: 70, default: 4,
|
|
|
+ render: (a: string) => (<WidthEllipsis value={a} />)
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
{
|
|
|
label: '游戏信息',
|
|
|
data: [
|
|
@@ -155,7 +164,7 @@ function columns12(): { label: string, fieldSHow?: { label: string, saveField: s
|
|
|
},
|
|
|
{ title: '区服ID', dataIndex: 'serverId', label: '游戏信息', align: 'center', width: 90 },
|
|
|
{
|
|
|
- title: '开服时间', dataIndex: 'dt', label: '游戏信息', align: 'center', width: 90, default: 4, sorter: true,
|
|
|
+ title: '开服时间', dataIndex: 'dt', label: '游戏信息', align: 'center', width: 90, default: 5, sorter: true,
|
|
|
render: (a: any, b: any) => {
|
|
|
if (b.gameName === '总计') {
|
|
|
return '--'
|
|
@@ -169,15 +178,15 @@ function columns12(): { label: string, fieldSHow?: { label: string, saveField: s
|
|
|
label: '数据',
|
|
|
data: [
|
|
|
{
|
|
|
- title: '新用户人数', dataIndex: 'totalRegNum', label: '数据', align: 'center', width: 70, sorter: true, default: 5,
|
|
|
+ title: '新用户人数', dataIndex: 'totalRegNum', label: '数据', align: 'center', width: 70, sorter: true, default: 6,
|
|
|
render: (a: number) => <Statistic value={a || 0} />
|
|
|
},
|
|
|
{
|
|
|
- title: '创角人数', dataIndex: 'totalRoleNum', label: '数据', align: 'center', width: 70, sorter: true, default: 6,
|
|
|
+ title: '创角人数', dataIndex: 'totalRoleNum', label: '数据', align: 'center', width: 70, sorter: true, default: 7,
|
|
|
render: (a: number) => <Statistic value={a || 0} />
|
|
|
},
|
|
|
{
|
|
|
- title: '付费人数', dataIndex: 'totalAmountNum', label: '数据', align: 'center', width: 70, sorter: true, default: 7,
|
|
|
+ title: '付费人数', dataIndex: 'totalAmountNum', label: '数据', align: 'center', width: 70, sorter: true, default: 8,
|
|
|
render: (a: number) => <Statistic value={a || 0} />
|
|
|
}
|
|
|
]
|