常熟吴彦祖 3 months ago
parent
commit
93b4a482bf
  1. 4
      src/views/modules/automatedWarehouse/palletAssembly.vue
  2. 14
      src/views/modules/automatedWarehouse/palletPacking.vue

4
src/views/modules/automatedWarehouse/palletAssembly.vue

@ -1508,11 +1508,11 @@ export default {
grid-auto-flow: column; 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 { .position-grid.position-grid-9 {
grid-template-columns: repeat(3, 1fr); grid-template-columns: repeat(3, 1fr);
grid-template-rows: repeat(3, 1fr); grid-template-rows: repeat(3, 1fr);
grid-auto-flow: column;
grid-auto-flow: row;
} }
/* 加载中的遮罩效果 - rqrq */ /* 加载中的遮罩效果 - rqrq */

14
src/views/modules/automatedWarehouse/palletPacking.vue

@ -23,7 +23,10 @@
class="form-input" class="form-input"
style="flex: 0.75;" style="flex: 0.75;"
clearable clearable
@focus.native="$event.target.setAttribute('inputmode', 'none')"
inputmode="none"
autocomplete="off"
autocorrect="off"
spellcheck="false"
@keyup.enter.native="handlePalletScan" @keyup.enter.native="handlePalletScan"
ref="palletInput" ref="palletInput"
/> />
@ -262,7 +265,10 @@
clearable clearable
:disabled="operationType === 'in' && !currentSelectedPosition" :disabled="operationType === 'in' && !currentSelectedPosition"
@keyup.enter.native="handleLabelScan" @keyup.enter.native="handleLabelScan"
@focus.native="$event.target.setAttribute('inputmode', 'none')"
inputmode="none"
autocomplete="off"
autocorrect="off"
spellcheck="false"
ref="scanInput" ref="scanInput"
/> />
</div> </div>
@ -1635,11 +1641,11 @@ export default {
grid-auto-flow: column; 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 { .position-grid.position-grid-9 {
grid-template-columns: repeat(3, 1fr); grid-template-columns: repeat(3, 1fr);
grid-template-rows: repeat(3, 1fr); grid-template-rows: repeat(3, 1fr);
grid-auto-flow: column;
grid-auto-flow: row;
} }
/* 加载中的遮罩效果 - rqrq */ /* 加载中的遮罩效果 - rqrq */

Loading…
Cancel
Save