fix 80164

This commit is contained in:
danshihao
2023-12-29 10:09:27 +08:00
parent ea2287cb60
commit e57a4c0438
@@ -70,7 +70,7 @@ export default {
title: this.$t('serialNumber'), title: this.$t('serialNumber'),
dataIndex: '', dataIndex: '',
key: 'rowIndex', key: 'rowIndex',
width: 80, width: 60,
align: 'center', align: 'center',
customRender: function (t, r, index) { customRender: function (t, r, index) {
return parseInt(index) + 1 return parseInt(index) + 1
@@ -80,27 +80,28 @@ export default {
title: '来源', title: '来源',
align: 'left', align: 'left',
dataIndex: 'source_dictText', dataIndex: 'source_dictText',
width: 100, width: 60,
scopedSlots: { customRender: 'text' } scopedSlots: { customRender: 'text' }
}, },
{ {
title: '标准号', title: '标准号',
align: 'left', align: 'left',
dataIndex: 'standardNumber', dataIndex: 'standardNumber',
width: 180, width: 120,
scopedSlots: { customRender: 'standard' } scopedSlots: { customRender: 'standard' }
}, },
{ {
title: '标准名称', title: '标准名称',
align: 'left', align: 'left',
dataIndex: 'standardName', dataIndex: 'standardName',
width: 180,
scopedSlots: { customRender: 'standard' } scopedSlots: { customRender: 'standard' }
}, },
{ {
title: '新车型实施日期', title: '新车型实施日期',
align: 'left', align: 'left',
dataIndex: 'newModelImplementationDate', dataIndex: 'newModelImplementationDate',
width: 160, width: 100,
scopedSlots: { customRender: 'text' } scopedSlots: { customRender: 'text' }
} }
], ],