From a8dd2ccdaf943008b6ac219b2fa501a8c691526e 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: Thu, 4 Dec 2025 13:19:41 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=A0=87=E7=AD=BE=E5=8A=9F?= =?UTF-8?q?=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/modules/warehouse/changeHUSpecialItem.vue | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/views/modules/warehouse/changeHUSpecialItem.vue b/src/views/modules/warehouse/changeHUSpecialItem.vue index 3574608..78b1b26 100644 --- a/src/views/modules/warehouse/changeHUSpecialItem.vue +++ b/src/views/modules/warehouse/changeHUSpecialItem.vue @@ -593,6 +593,14 @@ export default { ] } }, + watch: { + wdrFormData: { + deep: true, + handler: function (newV, oldV) { + this.wdrFormData.toWdr = this.wdrFormData.toWdr.toUpperCase() + } + } + }, mounted() { this.$nextTick(() => { this.height = window.innerHeight - 220; @@ -1031,7 +1039,7 @@ export default { if (failCount > 0 && failedUnitIds.length > 0) { // 失败序列号(用逗号分隔)- rqrq htmlContent += `

失败序列号:${failedUnitIds.join(', ')}

` - + // 失败报错(只显示第一个)- rqrq const firstError = failedReasons.length > 0 ? failedReasons[0] : '未知错误' htmlContent += `

失败报错:${firstError}

`