From 93b4a482bfb93d33fa308fc93567dfb01bfb53c5 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: Sat, 4 Oct 2025 09:47:38 +0800 Subject: [PATCH] 1 --- .../modules/automatedWarehouse/palletAssembly.vue | 4 ++-- .../modules/automatedWarehouse/palletPacking.vue | 14 ++++++++++---- 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/src/views/modules/automatedWarehouse/palletAssembly.vue b/src/views/modules/automatedWarehouse/palletAssembly.vue index f877443..4abadbe 100644 --- a/src/views/modules/automatedWarehouse/palletAssembly.vue +++ b/src/views/modules/automatedWarehouse/palletAssembly.vue @@ -1508,11 +1508,11 @@ export default { grid-auto-flow: column; } -/* 9宫格:3行3列,按列排列(1,2,3 | 4,5,6 | 7,8,9) - rqrq */ +/* 9宫格:3行3列,按行排列(1,2,3 | 4,5,6 | 7,8,9) - rqrq */ .position-grid.position-grid-9 { grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(3, 1fr); - grid-auto-flow: column; + grid-auto-flow: row; } /* 加载中的遮罩效果 - rqrq */ diff --git a/src/views/modules/automatedWarehouse/palletPacking.vue b/src/views/modules/automatedWarehouse/palletPacking.vue index 11eaca1..da94d2c 100644 --- a/src/views/modules/automatedWarehouse/palletPacking.vue +++ b/src/views/modules/automatedWarehouse/palletPacking.vue @@ -23,7 +23,10 @@ class="form-input" style="flex: 0.75;" clearable - @focus.native="$event.target.setAttribute('inputmode', 'none')" + inputmode="none" + autocomplete="off" + autocorrect="off" + spellcheck="false" @keyup.enter.native="handlePalletScan" ref="palletInput" /> @@ -262,7 +265,10 @@ clearable :disabled="operationType === 'in' && !currentSelectedPosition" @keyup.enter.native="handleLabelScan" - @focus.native="$event.target.setAttribute('inputmode', 'none')" + inputmode="none" + autocomplete="off" + autocorrect="off" + spellcheck="false" ref="scanInput" /> @@ -1635,11 +1641,11 @@ export default { grid-auto-flow: column; } -/* 9宫格:3行3列,按列排列(1,2,3 | 4,5,6 | 7,8,9) - rqrq */ +/* 9宫格:3行3列,按行排列(1,2,3 | 4,5,6 | 7,8,9) - rqrq */ .position-grid.position-grid-9 { grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(3, 1fr); - grid-auto-flow: column; + grid-auto-flow: row; } /* 加载中的遮罩效果 - rqrq */