style: 调整UDM用户数据表格靠左

This commit is contained in:
TsMask
2023-11-28 15:12:51 +08:00
parent 252ed66ff8
commit 55981f8936
4 changed files with 50 additions and 50 deletions

View File

@@ -75,7 +75,7 @@ type TabeStateType = {
/**表格状态 */
let tableState: TabeStateType = reactive({
loading: false,
size: 'middle',
size: 'small',
striped: false,
seached: true,
data: [],
@@ -88,19 +88,19 @@ let tableColumns: ColumnsType = [
dataIndex: 'imsi',
align: 'left',
sorter: true,
width: 200,
width: 150,
},
{
title: 'AMF',
dataIndex: 'amf',
align: 'center',
minWidth: 100,
align: 'left',
width: 100,
},
{
title: 'Status',
dataIndex: 'status',
align: 'center',
minWidth: 100,
align: 'left',
width: 100,
},
// {
// title: 'KI',
@@ -117,14 +117,13 @@ let tableColumns: ColumnsType = [
{
title: 'Algo Index',
dataIndex: 'algoIndex',
align: 'center',
minWidth: 100,
align: 'left',
width: 100,
},
{
title: t('common.operate'),
key: 'imsi',
align: 'center',
width: 100,
align: 'left',
},
];