| 
					
				 | 
			
			
				@@ -37,24 +37,28 @@ function columns12(assignHandle: (data: any) => void): { label: string, fieldSHo 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                     title: '区服名称', dataIndex: 'serverName', label: '基本信息', align: 'center', width: 80, default: 4, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                     render: (a: string) => (<WidthEllipsis value={a} />) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 }, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                    title: '帮派', dataIndex: 'country', label: '基本信息', align: 'center', width: 80, default: 5, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                    render: (a: string) => (<WidthEllipsis value={a} />) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                }, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                     title: '区服ID', dataIndex: 'serverId', label: '基本信息', align: 'center', width: 80, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                     render: (a: string) => (<WidthEllipsis value={a} />) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 }, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-                    title: '角色创建时间', dataIndex: 'createTime', label: '基本信息', align: 'center', width: 125, default: 5, sorter: true, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                    title: '角色创建时间', dataIndex: 'createTime', label: '基本信息', align: 'center', width: 125, default: 6, sorter: true, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                     render: (a: string, b: any) => (<WidthEllipsis value={a} />) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 }, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-                    title: '角色等级', dataIndex: 'roleLevel', label: '基本信息', align: 'center', width: 60, sorter: true, default: 6, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                    title: '角色等级', dataIndex: 'roleLevel', label: '基本信息', align: 'center', width: 60, sorter: true, default: 7, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                     render: (a: string) => <Statistic value={a || 0} /> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 }, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-                    title: '等级上报时间', dataIndex: 'levelTime', label: '基本信息', align: 'center', width: 120, default: 7, sorter: true, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                    title: '等级上报时间', dataIndex: 'levelTime', label: '基本信息', align: 'center', width: 120, default: 8, sorter: true, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                     render: (a: string) => (<WidthEllipsis value={a} />) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 }, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-                    title: '等级上报时间距今', dataIndex: 'levelTimeDiff', label: '角色游戏数据', align: 'center', width: 100, default: 8, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                    title: '等级上报时间距今', dataIndex: 'levelTimeDiff', label: '角色游戏数据', align: 'center', width: 120, default: 9, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                     render: (_: any, b: any) => { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                         if (b?.createTime) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                             let a = (new Date().getTime() / 1000) - (new Date(b?.levelTime).getTime() / 1000) 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -72,7 +76,7 @@ function columns12(assignHandle: (data: any) => void): { label: string, fieldSHo 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                     } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 }, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-                    title: '创角时间至今', dataIndex: 'createTimeDiff', label: '角色游戏数据', align: 'center', width: 100, default: 9, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                    title: '创角时间至今', dataIndex: 'createTimeDiff', label: '角色游戏数据', align: 'center', width: 120, default: 10, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                     render: (_: any, b: any) => { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                         if (b?.createTime) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                             let a = (new Date().getTime() / 1000) - (new Date(b?.createTime).getTime() / 1000) 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -95,10 +99,10 @@ function columns12(assignHandle: (data: any) => void): { label: string, fieldSHo 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             label: '客户管理操作', 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             data: [ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-                { title: 'GS', dataIndex: 'gsName', label: '客户管理操作', align: 'center', width: 80, default: 10, render: (a: string, b: any) => (<WidthEllipsis value={a} />) }, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-                { title: '客服', dataIndex: 'customerServiceName', label: '客户管理操作', align: 'center', width: 80, default: 11, render: (a: string, b: any) => (<WidthEllipsis value={a} />) }, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-                { title: '运营', dataIndex: 'operUserName', label: '客户管理操作', align: 'center', width: 80, default: 12, render: (a: string, b: any) => (<WidthEllipsis value={a} />) }, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-                { title: '投手', dataIndex: 'putUserName', label: '客户管理操作', align: 'center', width: 80, default: 13, render: (a: string, b: any) => (<WidthEllipsis value={a} />) } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                { title: 'GS', dataIndex: 'gsName', label: '客户管理操作', align: 'center', width: 80, default: 11, render: (a: string, b: any) => (<WidthEllipsis value={a} />) }, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                { title: '客服', dataIndex: 'customerServiceName', label: '客户管理操作', align: 'center', width: 80, default: 12, render: (a: string, b: any) => (<WidthEllipsis value={a} />) }, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                { title: '运营', dataIndex: 'operUserName', label: '客户管理操作', align: 'center', width: 80, default: 13, render: (a: string, b: any) => (<WidthEllipsis value={a} />) }, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                { title: '投手', dataIndex: 'putUserName', label: '客户管理操作', align: 'center', width: 80, default: 14, render: (a: string, b: any) => (<WidthEllipsis value={a} />) } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             ] 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         }, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         { 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -108,9 +112,9 @@ function columns12(assignHandle: (data: any) => void): { label: string, fieldSHo 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                     title: '操作', 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                     dataIndex: 'cz', 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                     align: 'center', 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-                    width: 60, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                    width: 70, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                     label: '操作', 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-                    default: 14, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                    default: 15, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                     render: (_: any, b: any) => { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                         return <Space> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                             <LookRoleDetails userId={b.userId} /> 
			 |