Fix:3581 【商城小程序】开启了价格面议的商品详情页,点击【加入购物车】按钮没有提示信息
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user