From c60a54b8f9c5b231cd23fcc6c71ca0b3c72c4ee8 Mon Sep 17 00:00:00 2001 From: misworga831 Date: Mon, 8 May 2023 18:41:56 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E6=BB=A1=E5=87=8F?= =?UTF-8?q?=E6=B4=BB=E5=8A=A8=E6=B2=A1=E6=9C=89=E4=BC=A0=E9=80=92=E8=8C=83?= =?UTF-8?q?=E5=9B=B4=E5=8F=82=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/views/promotion/full-discount/full-discount-add.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/seller/src/views/promotion/full-discount/full-discount-add.vue b/seller/src/views/promotion/full-discount/full-discount-add.vue index 134ef7d4..520a03a4 100644 --- a/seller/src/views/promotion/full-discount/full-discount-add.vue +++ b/seller/src/views/promotion/full-discount/full-discount-add.vue @@ -447,11 +447,14 @@ export default { delete params.promotionGoodsList; params.number = -1; } else { + let scopeId = []; params.number = 1; params.promotionGoodsList.forEach((e) => { - e.startTime = params.stratTime; + e.startTime = params.startTime; e.endTime = params.endTime; + scopeId.push(e.skuId); }); + params.scopeId = scopeId.toString(); } if (params.discountType == "fullMinusFlag") { params.fullMinusFlag = true;