From e2a99a8e53c7bd4fd376d5c9837956e303c78462 Mon Sep 17 00:00:00 2001 From: zhangds Date: Wed, 10 Apr 2024 23:30:36 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E9=83=A8=E5=88=86=E5=A4=B1=E8=B4=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packkey/wx-combining.html | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/packkey/wx-combining.html b/packkey/wx-combining.html index c657a1b..1b2c037 100644 --- a/packkey/wx-combining.html +++ b/packkey/wx-combining.html @@ -343,9 +343,11 @@ // 部分失败 if (self.goods.send_status === 4) { - let all_product_length = res.data.product.length; - let is_err_length = res.data.product.filter(item => item.voucher.status === 9).length; - self.isOKLength = all_product_length - is_err_length; + let all_product_voucher = res.data.product.filter(item => item.voucher); + console.log("all_product_voucher =>", all_product_voucher); + + let is_err_length = all_product_voucher.filter(item => item.voucher.status === 9).length; + self.isOKLength = all_product_voucher.length - is_err_length; self.isErrLength = is_err_length; }