一个过滤的小bug

This commit is contained in:
xiaofajia 2024-11-26 17:11:01 +08:00
parent c329fa5864
commit e3c9896438

View File

@ -416,7 +416,7 @@ export default {
this.partList = Object.entries(res.data)
this.partList = this.partList.map(([key, value]) => {
return [key, value.filter(item => {
return item.inCount !== item.goodsCount
return item.inCount < item.goodsCount
})]
})
this.partList = this.partList.filter(([key, value]) => value.length > 0)