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 }) }