style: UE终端表格优化

This commit is contained in:
TsMask
2023-11-30 16:45:55 +08:00
parent f2d5379506
commit 805785ccb7
7 changed files with 92 additions and 57 deletions

View File

@@ -80,7 +80,7 @@ let tableColumns: ColumnsType = [
}
return opt.value;
},
width: 3,
width: 150,
},
{
title: 'MSISDN',
@@ -93,18 +93,18 @@ let tableColumns: ColumnsType = [
}
return opt.value;
},
width: 3,
width: 150,
},
{
title: 'RAT Type',
dataIndex: 'ratType',
align: 'center',
width: 3,
width: 100,
},
{
title: 'DNN List',
dataIndex: 'pduSessionInfo',
align: 'center',
align: 'left',
customRender(opt) {
if (opt.value) {
let arr = [];
@@ -117,13 +117,12 @@ let tableColumns: ColumnsType = [
}
return '';
},
width: 5,
width: 150,
},
{
title: t('common.operate'),
key: 'imsi',
align: 'center',
width: 3,
align: 'left',
},
];