style: 表格时间字段宽度width200px

This commit is contained in:
TsMask
2025-03-13 11:05:47 +08:00
parent 2678ab3bfb
commit b740f6b5fd
10 changed files with 18 additions and 31 deletions

View File

@@ -93,7 +93,7 @@ type TabeStateType = {
let tableState: TabeStateType = reactive({
loading: false,
size: 'middle',
seached: false,
seached: true,
data: [],
});
@@ -191,7 +191,7 @@ let tableColumns: ColumnsType = reactive([
if (!opt.value) return '';
return parseDateToStr(+opt.value);
},
width: 150,
width: 200,
},
{
title: t('views.logManage.forwarding.logTime'),
@@ -201,7 +201,7 @@ let tableColumns: ColumnsType = reactive([
if (!opt.value) return '';
return parseDateToStr(+opt.value);
},
width: 150,
width: 200,
},
]);