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