|
|
|
@ -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" |
|
|
|
/> |
|
|
|
</div> |
|
|
|
@ -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 */ |
|
|
|
|