Fix:3581 【商城小程序】开启了价格面议的商品详情页,点击【加入购物车】按钮没有提示信息

This commit is contained in:
modendeveloper
2025-04-06 00:05:55 +08:00
committed by lifizer
parent 37cd468d44
commit 2e838088db
+4
View File
@@ -1365,6 +1365,10 @@ export default {
},
// 点击加入购物车按钮
joinCart() {
if(this.storeInfo.isNegotiable === 1) {
this.$u.toast('该商品为面议商品,无法加入购物车')
return
}
if ((this.attr.productSelect.stock === 0 && this.attr.cartAttr) || this.storeInfo.stock === 0 || this.storeInfo.isNegotiable === 1) {
return
}