From 74b30234eb10be39eaef21e1d2cf8fb43b9b3958 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B8=B8=E7=86=9F=E5=90=B4=E5=BD=A6=E7=A5=96?= Date: Sun, 5 Oct 2025 13:03:13 +0800 Subject: [PATCH] 1 --- .../modules/automatedWarehouse/palletSorting.vue | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/views/modules/automatedWarehouse/palletSorting.vue b/src/views/modules/automatedWarehouse/palletSorting.vue index ed2ac95..89b369b 100644 --- a/src/views/modules/automatedWarehouse/palletSorting.vue +++ b/src/views/modules/automatedWarehouse/palletSorting.vue @@ -134,7 +134,7 @@ 条码数:{{detailList.length}}
@@ -1257,15 +1257,15 @@ export default { palletId: this.palletCode }).then(({ data }) => { if (data.code === 0) { - this.$message.success('组托完成,数据已推送到WCS系统'); + this.$message.success('数据已推送到WCS系统'); // 清空页面数据,初始化页面 - this.resetPage(); + // this.resetPage(); } else { - this.$message.error(data.msg || '完成组托失败'); + this.$message.error(data.msg || '本次分拣失败'); } }).catch(error => { - console.error('完成组托失败:', error); - this.$message.error('完成组托失败'); + console.error('本次分拣失败:', error); + this.$message.error('本次分拣失败'); }).finally(() => { // 无论成功或失败,都要恢复按钮状态 this.completeAssemblyLoading = false;