From da5fd400b375cfb7a1ac75d954fb1f9cc2e25e65 Mon Sep 17 00:00:00 2001 From: chenhc <2369838784@qq.com> Date: Wed, 6 Nov 2024 16:04:49 +0800 Subject: [PATCH] =?UTF-8?q?fix=EF=BC=9A=E7=BB=84=E4=BB=B6=E4=BC=98?= =?UTF-8?q?=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/ShelfDisplay/index.vue | 7 +++++++ src/views/basic/collectPoint/timerSetting.vue | 8 +++++++- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/src/components/ShelfDisplay/index.vue b/src/components/ShelfDisplay/index.vue index ba51f51e..1ddb6e19 100644 --- a/src/components/ShelfDisplay/index.vue +++ b/src/components/ShelfDisplay/index.vue @@ -11,6 +11,7 @@ :key="slot.id" class="shelf-slot" :style="{ width: `${100 / row.slots.length}%` }" + @click="handleSlotClick(slot)" > {{ slot.item }} @@ -27,6 +28,12 @@ export default { required: true, }, }, + methods: { + handleSlotClick(slot) { + // 发射一个名为 'slot-click' 的自定义事件,携带被点击的货位信息 + this.$emit('slot-click', slot); + }, + }, created() { this.shelfData = this.shelfData.sort((a, b) => a.row - b.row); } diff --git a/src/views/basic/collectPoint/timerSetting.vue b/src/views/basic/collectPoint/timerSetting.vue index e10bb0a8..49e298b6 100644 --- a/src/views/basic/collectPoint/timerSetting.vue +++ b/src/views/basic/collectPoint/timerSetting.vue @@ -134,6 +134,7 @@ > @@ -236,7 +237,12 @@ export default { ShelfDisplay }, methods: { - selectSysParam() { + handleSlotClick(slot) { + // 在这里处理被点击的货位信息 + console.log('被点击的货位:', slot); + // 你可以根据需要执行其他操作,例如更新父组件的状态或导航到另一个 + }, + selectSysParam() { getSet().then((response) => { if (response.code == 20000) { this.formData = response.data