diff --git a/src/views/stock/material/material-page.vue b/src/views/stock/material/material-page.vue index c2b24a1..1848f8c 100644 --- a/src/views/stock/material/material-page.vue +++ b/src/views/stock/material/material-page.vue @@ -143,7 +143,7 @@ //表格列 const columns = [ { - title: '物料序号', + title: '序号', dataIndex: 'key', customRender: ({ index }: { index: number }) => `${index + 1}`, }, diff --git a/src/views/stock/stocktaking/stocktaking-page.vue b/src/views/stock/stocktaking/stocktaking-page.vue index f132051..adb69c0 100644 --- a/src/views/stock/stocktaking/stocktaking-page.vue +++ b/src/views/stock/stocktaking/stocktaking-page.vue @@ -17,7 +17,7 @@ - 申请扫码 + 新增盘点 @@ -209,8 +209,9 @@ //表格列 const columns = [ { - title: '申请ID', - dataIndex: 'id', + title: '序号', + dataIndex: 'key', + customRender: ({ index }: { index: number }) => `${index + 1}`, }, { title: '盘点类型',