Fix:3264 【礼品功能】当前规格库存不足时,点击送给朋友无响应,应提示:商品库存不足

This commit is contained in:
modendeveloper
2025-02-23 21:22:24 +08:00
parent 0f5f19d9a0
commit 09ef536a37
+4
View File
@@ -780,6 +780,10 @@ export default {
},
toGift() {
if ((this.attr.productSelect.stock === 0 && this.attr.cartAttr) || this.storeInfo.stock === 0) {
uni.showToast({
title: '商品库存不足',
icon: 'none'
})
return
}
this.isGift = true