diff --git a/src/views/inventory/Inventory.data.ts b/src/views/inventory/Inventory.data.ts index d5dbbc1..4ed2b53 100644 --- a/src/views/inventory/Inventory.data.ts +++ b/src/views/inventory/Inventory.data.ts @@ -71,13 +71,19 @@ export const columns: BasicColumn[] = [ title: '任务号', align: 'center', dataIndex: 'taskNo', - width: 100, + width: 110, + customRender: ({ text }) => { + return h('div', { style: { wordBreak: 'break-all', lineHeight: '1.5' } }, text); + }, }, { title: '批次号', align: 'center', dataIndex: 'propC1', - width: 100, + width: 110, + customRender: ({ text }) => { + return h('div', { style: { wordBreak: 'break-all', lineHeight: '1.5' } }, text); + }, }, { title: '赛意库存状态',