diff --git a/src/views/logManage/mml/index.vue b/src/views/logManage/mml/index.vue index b699913b..4407175e 100644 --- a/src/views/logManage/mml/index.vue +++ b/src/views/logManage/mml/index.vue @@ -67,32 +67,38 @@ let tableColumns: ColumnsType = [ title: t('common.rowId'), dataIndex: 'id', align: 'center', + width: 2, }, { title: '登录账号', dataIndex: 'user', align: 'center', + width: 3, }, { title: 'IP地址', dataIndex: 'ip', align: 'center', + width: 3, }, { title: '网元类型', dataIndex: 'neType', align: 'center', + width: 3, }, { title: '网元唯一标识', dataIndex: 'neId', align: 'center', + width: 3, }, { title: 'MML', dataIndex: 'mml', key: 'mml', align: 'left', + width: 5, }, { title: '记录时间', @@ -102,6 +108,7 @@ let tableColumns: ColumnsType = [ if (!opt.value) return ''; return parseDateToStr(opt.value); }, + width: 3, }, ]; @@ -275,7 +282,7 @@ onMounted(() => { :data-source="tableState.data" :size="tableState.size" :pagination="tablePagination" - :scroll="{ x: true }" + :scroll="{ x: 1000, y: 400 }" >