From d3f1bc392ef19130ac173ef33bb78f3879cc2ae7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E5=BE=81?= Date: Fri, 13 May 2022 16:28:11 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E6=B7=BB=E5=8A=A0=E8=B4=AD=E7=89=A9?= =?UTF-8?q?=E8=BD=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/goods/detail/_id.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pages/goods/detail/_id.vue b/pages/goods/detail/_id.vue index 3fca3b2..54d2883 100644 --- a/pages/goods/detail/_id.vue +++ b/pages/goods/detail/_id.vue @@ -136,7 +136,7 @@ 此商品暂无库存啦~看看其他的吧
- 加入购物车 + 加入购物车 立即购买
@@ -263,6 +263,9 @@ export default { }, }, methods: { + addCart(){ + this.$router.push(`/orderSubmit?mode=cart&ids=` + [this.detailData.id]) + }, isStock() { return this.skuData.some((item) => item.stock > 0); },