修复最近的BUG

This commit is contained in:
aixianling
2024-08-15 11:01:20 +08:00
parent 9cd892a856
commit 9aa84e8a5a
2 changed files with 5 additions and 6 deletions

View File

@@ -184,7 +184,7 @@ Vue.component("tableColumn", {
return config.custom ? h('div', {
style: {color: row.preSaleNum > row.stockNum ? 'red' : '#fff'}, class: 'pointer'
}, '周边库存情况') :
h('span', row[config.prop] || '')
h('span', row[config.prop] ?? '')
}
}
})