fix: from db 表单调整列宽

This commit is contained in:
xiaoguangbin 2023-11-21 14:45:18 +08:00
parent 76401ab00d
commit a061ac62c1

View File

@ -42,68 +42,71 @@ import { cloneDeep } from 'lodash'
const columns = [
{
title: 'SampleID',
align: 'left',
align: 'center',
dataIndex: 'sampleId',
},
{
title: 'Station',
align: 'left',
align: 'center',
dataIndex: 'stationName',
width: 80,
},
{
title: 'Detector',
align: 'left',
align: 'center',
dataIndex: 'detectorsName',
width: 130,
width: 110,
},
{
title: 'Sample',
align: 'left',
align: 'center',
dataIndex: 'sampleType',
width: 65,
},
{
title: 'DataType',
align: 'left',
align: 'center',
dataIndex: 'dataType',
},
{
title: 'Qualifier',
align: 'left',
align: 'center',
dataIndex: 'spectralQualifie',
},
{
title: 'Col.Stop',
align: 'left',
align: 'center',
dataIndex: 'collectStop',
sorter: true,
width: 170,
},
{
title: 'Acq.Start',
align: 'left',
align: 'center',
dataIndex: 'acquisitionStart',
width: 170,
},
{
title: 'Acq.real',
align: 'left',
align: 'center',
dataIndex: 'acquisitionRealSec',
width: 100,
},
{
title: 'Acq.live',
align: 'left',
align: 'center',
dataIndex: 'acquisitionLiveSec',
width: 100,
},
{
title: 'Analyst',
align: 'left',
align: 'center',
dataIndex: 'analyst',
width: 110,
},
{
title: 'Status',
align: 'left',
align: 'center',
dataIndex: 'status',
},
]