From 13e2008a17ea244c7abb1d9f2913e45f47a4b282 Mon Sep 17 00:00:00 2001 From: TsMask <340112800@qq.com> Date: Wed, 1 Nov 2023 19:38:56 +0800 Subject: [PATCH] =?UTF-8?q?style:=20=E6=95=B0=E6=8D=AE=E5=88=97=E8=A1=A8?= =?UTF-8?q?=E5=88=97=E5=AE=BD=E5=9B=BA=E5=AE=9A=E6=93=8D=E4=BD=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/logManage/forwarding/index.vue | 26 +++++++++++++++--------- 1 file changed, 16 insertions(+), 10 deletions(-) diff --git a/src/views/logManage/forwarding/index.vue b/src/views/logManage/forwarding/index.vue index 9e80ebac..65a99758 100644 --- a/src/views/logManage/forwarding/index.vue +++ b/src/views/logManage/forwarding/index.vue @@ -78,37 +78,49 @@ let tableColumns: ColumnsType = [ title: t('common.rowId'), dataIndex: 'id', align: 'center', + width: 3, }, { title: '网元类型', dataIndex: 'neType', align: 'center', + width: 4, }, { title: '告警网元标识', dataIndex: 'neId', align: 'center', + width: 4, }, { title: '告警唯一标识', dataIndex: 'alarmId', align: 'center', + width: 5, }, { title: '告警流水号', dataIndex: 'alarmSeq', align: 'center', + width: 3, }, { title: '告警前转对象', dataIndex: 'toUser', align: 'center', + width: 5, }, { title: '告警标题', dataIndex: 'alarmTitle', - key: 'alarmTitle', align: 'left', + width: 5, + }, + { + title: '告警内容', + dataIndex: 'operResult', + align: 'left', + width: 6, }, { title: '告警产生时间', @@ -118,6 +130,7 @@ let tableColumns: ColumnsType = [ if (!opt.value) return ''; return parseDateToStr(opt.value); }, + width: 5, }, { title: '记录时间', @@ -127,6 +140,7 @@ let tableColumns: ColumnsType = [ if (!opt.value) return ''; return parseDateToStr(opt.value); }, + width: 5, }, ]; @@ -306,16 +320,8 @@ onMounted(() => { :data-source="tableState.data" :size="tableState.size" :pagination="tablePagination" - :scroll="{ x: true }" + :scroll="{ x: 1200, y: 400 }" > -