From 07d22776643129979b6d647844e230c817645ab9 Mon Sep 17 00:00:00 2001 From: ShenQiLun <97694732@qq.com> Date: Fri, 26 Jun 2026 12:03:05 +0800 Subject: [PATCH] =?UTF-8?q?fix:price=E6=9C=AA=E5=AE=9A=E4=B9=89=E4=BF=AE?= =?UTF-8?q?=E5=A4=8D,=E6=94=B9=E4=B8=BAsalePrice?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/upload/upload.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/upload/upload.vue b/pages/upload/upload.vue index 5917612..56b606b 100644 --- a/pages/upload/upload.vue +++ b/pages/upload/upload.vue @@ -2217,14 +2217,14 @@ export default { // 添加到待入库列表 var entry = { productId: productId, - price: price, + price: salePrice, stock: stock, warehouseData: warehouseData } this.pendingProductList.push(entry) this.pendingCount = this.pendingProductList.length // 创建/追加波次 - await this.appendWaveItem(warehouseData, productId, stock, price) + await this.appendWaveItem(warehouseData, productId, stock, salePrice) if (this.pendingCount >= 200) { uni.showToast({ title: '本波次已满200件,请先提交入库', icon: 'none', duration: 2000 }) }