|
@@ -54,7 +54,7 @@ function columns12(): { label: string, fieldSHow?: { label: string, saveField: s
|
|
render: (a: string) => <Statistic value={a || 0} />
|
|
render: (a: string) => <Statistic value={a || 0} />
|
|
},
|
|
},
|
|
{
|
|
{
|
|
- title: '角色注册IP', dataIndex: 'ip', label: '基本信息', align: 'center', width: 100, default: 7,
|
|
|
|
|
|
+ title: '角色注册IP', dataIndex: 'ip', label: '基本信息', align: 'center', width: 110, default: 7,
|
|
render: (a: string) => <Statistic value={a || 0} />
|
|
render: (a: string) => <Statistic value={a || 0} />
|
|
},
|
|
},
|
|
{
|
|
{
|
|
@@ -67,15 +67,15 @@ function columns12(): { label: string, fieldSHow?: { label: string, saveField: s
|
|
},
|
|
},
|
|
{
|
|
{
|
|
title: '角色同IP的玩家数量', dataIndex: 'user_count', label: '基本信息', align: 'center', width: 70, sorter: true, default: 10,
|
|
title: '角色同IP的玩家数量', dataIndex: 'user_count', label: '基本信息', align: 'center', width: 70, sorter: true, default: 10,
|
|
- render: (a: number, b: any) => <Statistic value={a || 0} suffix={<TongIpUser ip={b.ip} icon={<EyeOutlined />} />} />
|
|
|
|
|
|
+ render: (a: number, b: any) => <Statistic value={a || 0} suffix={<TongIpUser roleId={b.role_id} icon={<EyeOutlined />} />} />
|
|
},
|
|
},
|
|
{
|
|
{
|
|
title: '同IP的角色数量', dataIndex: 'role_count', label: '基本信息', align: 'center', width: 70, sorter: true, default: 11,
|
|
title: '同IP的角色数量', dataIndex: 'role_count', label: '基本信息', align: 'center', width: 70, sorter: true, default: 11,
|
|
- render: (a: number, b: any) => <Statistic value={a || 0} suffix={<RegIpRoleDetails ip={b.ip} icon={<EyeOutlined />} />} />
|
|
|
|
|
|
+ render: (a: number, b: any) => <Statistic value={a || 0} suffix={<RegIpRoleDetails roleId={b.role_id} excludeUserType={0} icon={<EyeOutlined />} />} />
|
|
},
|
|
},
|
|
{
|
|
{
|
|
title: '同IP的角色数量(排除同玩家)', dataIndex: 'ip_role_count_filter', label: '基本信息', align: 'center', width: 90, sorter: true, default: 12,
|
|
title: '同IP的角色数量(排除同玩家)', dataIndex: 'ip_role_count_filter', label: '基本信息', align: 'center', width: 90, sorter: true, default: 12,
|
|
- render: (a: number, b: any) => <Statistic value={a || 0} suffix={<RegIpRoleDetails ip={b.ip} userId={b?.user_id} icon={<EyeOutlined />} />} />
|
|
|
|
|
|
+ render: (a: number, b: any) => <Statistic value={a || 0} suffix={<RegIpRoleDetails roleId={b.role_id} excludeUserType={1} icon={<EyeOutlined />} />} />
|
|
},
|
|
},
|
|
{
|
|
{
|
|
title: '同玩家IP的角色数量(排除同玩家)', dataIndex: 'role_user_ip_count_filter', label: '基本信息', align: 'center', width: 100, sorter: true, default: 13,
|
|
title: '同玩家IP的角色数量(排除同玩家)', dataIndex: 'role_user_ip_count_filter', label: '基本信息', align: 'center', width: 100, sorter: true, default: 13,
|