diff --git a/src/components/ShelfDisplay/index.vue b/src/components/ShelfDisplay/index.vue index ae3fd5f0..327592c0 100644 --- a/src/components/ShelfDisplay/index.vue +++ b/src/components/ShelfDisplay/index.vue @@ -17,28 +17,38 @@ @click="handleSlotClick(slot)" >
-
-
-
-
-
-
+
+ {{ slot.cpmctymc ? slot.cpmctymc: "暂未绑定"}} +
+
+ +
+
+
+
+ + +
+ +
+
+ 0) { - var str = this.altBuf.join(""); - var num = parseInt(str); - var c = String.fromCharCode(num); - this.appendChar(c); - this.altBuf = []; - } - } else if (ev.key == "Shift") { - this.isShift = false; - } - }; - KeyScaner.prototype.completeInput = function () { - var text = this.keybufs.join(""); - this.keybufs = []; - if (this.onInput) { - this.onInput.bind(this)(text); - } - }; - KeyScaner.prototype.onTick = function () { - if (this.keybufs && this.keybufs.length > 0 && (!this.altBuf || this.altBuf.length == 0) && new Date().getTime() - this.lastTime > 500) { - //有缓存的字符,且没有缓存的alt字符 且 与上次按键时间超过500毫秒。 收集输入 - // this.completeInput(); + this.appendChar(ev.key); } - }; + } + //忽略其他控制键 + } + }; + KeyScaner.prototype.onKeyUp = function (ev) { + this.lastTime = new Date().getTime(); + if (ev.charCode === 29) { + var str = this.altBuf.join(""); + var num = parseInt(str); + var c = String.fromCharCode(num); + this.appendChar(c); + this.altBuf = []; + console.log('onKeyUp success:', ev.charCode, this.keybufs); + } else if (ev.key == "Alt") { + if (this.altBuf && this.altBuf.length > 0) { + var str = this.altBuf.join(""); + var num = parseInt(str); + var c = String.fromCharCode(num); + this.appendChar(c); + this.altBuf = []; + } + } else if (ev.key == "Shift") { + this.isShift = false; + } + }; + + KeyScaner.prototype.onKeyPress = function (ev) { + this.lastTime = new Date().getTime(); + const char = String.fromCharCode(ev.charCode); + console.log('KeyPress:', ev.charCode, char); /** - * 释放资源 + * if (ev.charCode === 29) { + this.appendChar(char); + // console.log('KeyPress success:', ev.charCode, this.keybufs); + } else */ - KeyScaner.prototype.dispose = function () { - this.dom.removeEventListener('keydown', this.onKeyDown); - this.dom.removeEventListener('keyup', this.onKeyUp); - clearInterval(this.interval); - }; - return KeyScaner; + if (char == '\n') { + this.completeInput(); + } + + // if (ev.charCode === 49) { + // const char = String.fromCharCode(ev.charCode); + // this.appendChar(char); + // } + }; + + KeyScaner.prototype.completeInput = function () { + var text = this.keybufs.join(""); + this.keybufs = []; + if (this.onInput) { + this.onInput.bind(this)(text); + } + }; + KeyScaner.prototype.onTick = function () { + if (this.keybufs && this.keybufs.length > 0 && (!this.altBuf || this.altBuf.length == 0) && new Date().getTime() - this.lastTime > 500) { + //有缓存的字符,且没有缓存的alt字符 且 与上次按键时间超过500毫秒。 收集输入 + // this.completeInput(); + } + }; + /** + * 释放资源 + */ + KeyScaner.prototype.dispose = function () { + this.dom.removeEventListener('keydown', this.onKeyDown); + this.dom.removeEventListener('keyup', this.onKeyUp); + this.dom.removeEventListener('keypress', this.onKeyPress); + clearInterval(this.interval); + }; + return KeyScaner; }()); export default { - KeyScaner + KeyScaner } diff --git a/src/views/basic/workplace/rackManage.vue b/src/views/basic/workplace/rackManage.vue index 9d4763d2..fb89536b 100644 --- a/src/views/basic/workplace/rackManage.vue +++ b/src/views/basic/workplace/rackManage.vue @@ -26,16 +26,29 @@ >

{{ slot.name }}

- {{ slot.reCount <= 0? '无库存': slot.reCount <= slot.remindCount?'低库存':'正常' }} - +
+
+
+
+ + + + + + + + + +
@@ -215,8 +228,8 @@ export default { .shelf-slot { margin-right: 10px; /* 增加槽位之间的间距 */ margin-bottom: 10px; /* 增加槽位之间的间距 */ - width: 180px; /* 固定槽位宽度 */ - height: 100px; /* 固定槽位高度 */ + width: 200px; /* 固定槽位宽度 */ + height: 200px; /* 固定槽位高度 */ display: flex; align-items: center; /* 垂直居中 */ justify-content: space-between; /* 水平居中 */ @@ -226,6 +239,18 @@ export default { z-index: 10; } + +.shelf-slot-Queue { + margin: 2px; + display: flex; + align-items: center; /* 垂直居中 */ + justify-content: space-between; /* 水平居中 */ + transition: transform 0.3s ease; /* 平滑的过渡效果 */ + transform-style: preserve-3d; /* 保持3D变换的子元素在3D空间中 */ + perspective: 800px; /* 设置透视效果,模拟3D深度 */ + z-index: 66; +} + .shelf-slot:hover { z-index: 25; transform: perspective(800px) rotateX(0deg) rotateY(0deg) scale(1.1); /* 悬停时应用3D变换和放大效果 */ @@ -233,7 +258,7 @@ export default { .slot-card { width: 100%; /* 确保卡片宽度与槽位一致 */ height: 100%; /* 确保卡片高度与槽位一致 */ - box-sizing: border-box; /* 确保宽度和高度包含内边距和边框 */ + /*box-sizing: border-box; !* 确保宽度和高度包含内边距和边框 *!*/ /* 应用从白色到淡淡绿色的线性渐变背景 */ background: linear-gradient(to bottom, white, #d4edda); /* #d4edda 是一个浅绿色,接近于 Bootstrap 中的成功提示背景色 */ @@ -241,5 +266,4 @@ export default { box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* 可选:为卡片添加阴影,增加立体感 */ position: relative; /* 为了让内部的绝对定位元素相对于卡片定位 */ } - diff --git a/src/views/collect/CollectOrderAllotCardComponents.vue b/src/views/collect/CollectOrderAllotCardComponents.vue index 4b21c80f..67409bbf 100644 --- a/src/views/collect/CollectOrderAllotCardComponents.vue +++ b/src/views/collect/CollectOrderAllotCardComponents.vue @@ -772,7 +772,7 @@ export default { this.filterQuery.endTime = null; } let query = JSON.parse(JSON.stringify(this.filterQuery)); - query.workPlaceCode = null + // query.workPlaceCode = null orderPage(query).then(res => { this.loading = false this.list = res.data.list || [] diff --git a/src/views/collect/DealOrder.vue b/src/views/collect/DealOrder.vue index 40d035ed..c5518157 100644 --- a/src/views/collect/DealOrder.vue +++ b/src/views/collect/DealOrder.vue @@ -324,7 +324,7 @@ >