Commit 9d9afe55 authored by GuanHua's avatar GuanHua

fix:修改购买数量低于起订量的提示

parent 1ec4dc25
......@@ -460,9 +460,9 @@ const CommodityDetail = (props) => {
return
}
if (stockCount < commodityDetail.minOrder) {
if (buyCount < commodityDetail.minOrder) {
message.destroy()
message.info("库存不足")
message.info("购买数量不能低于最小购买量")
return
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment