diff --git a/src/views/biz/stockIn/index.vue b/src/views/biz/stockIn/index.vue index afafdbc..3e5c61d 100644 --- a/src/views/biz/stockIn/index.vue +++ b/src/views/biz/stockIn/index.vue @@ -353,7 +353,7 @@ const columns: DataTableColumns = [ render(row) { return h('div', [ h('div', row.updateTime || '-'), - h('div', { class: 'muted' }, row.updateBy ? `更新人 ${row.updateBy}` : ''), + h('div', { class: 'muted' }, row.userName ? `更新人 ${row.userName}` : ''), ]) }, },