fix: 根据配置隐藏多语言选择

This commit is contained in:
TsMask
2023-11-29 19:27:49 +08:00
parent 1784941670
commit 95fbce6b0e
9 changed files with 78 additions and 39 deletions

View File

@@ -69,26 +69,26 @@ let tableColumns: ColumnsType = [
{
title: 'NodeB ID',
dataIndex: 'id',
align: 'center',
width: 2,
align: 'left',
width: 150,
},
{
title: 'NodeB Address',
dataIndex: 'address',
align: 'center',
width: 3,
title: 'UE Number',
dataIndex: 'ueNum',
align: 'left',
width: 150,
},
{
title: 'NodeB Name',
dataIndex: 'name',
align: 'left',
width: 2,
width: 150,
},
{
title: 'UE Number',
dataIndex: 'ueNum',
align: 'center',
width: 2,
title: 'NodeB Address',
dataIndex: 'address',
align: 'left',
minWidth: 150,
},
];