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

This commit is contained in:
modendeveloper
2025-04-02 00:23:18 +08:00
parent 610ea7ece1
commit 6f2957f514
+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
}