From 28ee68d7d372e549defea542f65350495f86197e 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: Tue, 3 Feb 2026 13:29:38 +0800 Subject: [PATCH] =?UTF-8?q?fix(mesTidEpcLog):=20=E4=BF=AE=E5=A4=8D?= =?UTF-8?q?=E5=AF=BC=E5=85=A5=E5=BC=B9=E7=AA=97=E5=B8=83=E5=B1=80=E5=92=8C?= =?UTF-8?q?=E6=95=B0=E6=8D=AE=E6=8F=90=E4=BA=A4=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 调整导入弹窗宽度从500px改为400px - 设置表单宽度为100%并调整布局样式 - 将BU选择列从12跨度改为24跨度以适应窄窗口 - 增加备注输入框和选择框的宽度适配 - 修改备注区域上方边距从10px改为30px - 在文件上传前从选中的BU对象中获取正确的site值 - 使用正确的site值进行数据提交避免数据错误 --- src/views/modules/mes/mesTidEpcLog.vue | 26 +++++++++++++++----------- 1 file changed, 15 insertions(+), 11 deletions(-) diff --git a/src/views/modules/mes/mesTidEpcLog.vue b/src/views/modules/mes/mesTidEpcLog.vue index c1295de..31aed36 100644 --- a/src/views/modules/mes/mesTidEpcLog.vue +++ b/src/views/modules/mes/mesTidEpcLog.vue @@ -92,17 +92,17 @@ - - - + + + - + - + - - - - + + + + - + item.buNo === this.importData.buNo) + const site = selectedBu ? selectedBu.site : this.importData.site + const formData = new FormData() formData.append('file', this.fileList[0].raw) - formData.append('site', this.importData.site) + formData.append('site', site) formData.append('buNo', this.importData.buNo) formData.append('remark', this.importData.remark || '') formData.append('username', this.$store.state.user.name)