From 98b6d298e541c366a97fadc4853160939e03a205 Mon Sep 17 00:00:00 2001 From: yangan <yangan0921@163.com> Date: 星期二, 29 十月 2024 10:30:35 +0800 Subject: [PATCH] feat:创建日计划参数修改 --- subPages/addDailyPlan/addDailyPlan.vue | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/subPages/addDailyPlan/addDailyPlan.vue b/subPages/addDailyPlan/addDailyPlan.vue index 07489af..d6c0073 100644 --- a/subPages/addDailyPlan/addDailyPlan.vue +++ b/subPages/addDailyPlan/addDailyPlan.vue @@ -304,7 +304,7 @@ if(this.isNumOk){ let tempArr = []; this.subDataList.forEach(item=>{ - tempArr.push(item.productId + ':' + item.surplusQuant); + tempArr.push(item.id + ':' + item.surplusQuant); this.isWeighing = item.isWeight; this.orderType = item.orderType; }) @@ -323,7 +323,7 @@ this.subDataList.forEach(item=>{ this.checkList.forEach(val=>{ if(item.id === val){ - tempArr.push(item.productId + ':' + item.nums); + tempArr.push(item.id + ':' + item.nums); } }) -- Gitblit v1.9.1