备品备件优化2
@ -797,7 +797,7 @@ export default {
// 当前行最低库存数量
let minStock = row.minStock
// 区分不同的样式对应不同的颜色
if (qtyOnHand <= minStock) {
if (qtyOnHand < minStock) {
return { 'background-color': '#D8ECF1', cursor: 'pointer' }
}
},