|
@@ -9,12 +9,12 @@ function columns12() {
|
|
|
label: '玩家列表',
|
|
|
data: [
|
|
|
{
|
|
|
- title: '玩家ID', dataIndex: 'id', label: '玩家列表', align: 'center', default: 1, width: 55,
|
|
|
+ title: '玩家ID', dataIndex: 'userId', label: '玩家列表', align: 'center', default: 1, width: 55,
|
|
|
render: (a: string, b: any) => {
|
|
|
if (b?.zj) {
|
|
|
return b?.zj
|
|
|
}
|
|
|
- return b?.id
|
|
|
+ return b?.userId
|
|
|
}
|
|
|
},
|
|
|
{ title: '玩家账号', dataIndex: 'username', label: '玩家列表', align: 'center', width: 120, default: 2, render: (a: string, b: any) => (<WidthEllipsis isCopy value={a} />) },
|