提交代码

This commit is contained in:
shaoleiliu-netizen123 2026-08-26 11:18:15 +08:00
parent 94c6dac30b
commit fbeb8cb491

View File

@ -353,7 +353,7 @@ const columns: DataTableColumns<StockIn> = [
render(row) { render(row) {
return h('div', [ return h('div', [
h('div', row.updateTime || '-'), h('div', row.updateTime || '-'),
h('div', { class: 'muted' }, row.updateBy ? `更新人 ${row.updateBy}` : ''), h('div', { class: 'muted' }, row.userName ? `更新人 ${row.userName}` : ''),
]) ])
}, },
}, },