@ -11,6 +11,7 @@
:key="slot.id"
class="shelf-slot"
:style="{ width: `${100 / row.slots.length}%` }"
@click="handleSlotClick(slot)"
>
{{ slot.item }}
</div>
@ -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);
}
@ -134,6 +134,7 @@
<ShelfDisplay
:shelfData="this.shelfData"
@slot-click="handleSlotClick"
</ShelfDisplay>
</el-dialog>
@ -236,6 +237,11 @@ export default {
ShelfDisplay
// 在这里处理被点击的货位信息
console.log('被点击的货位:', slot);
// 你可以根据需要执行其他操作,例如更新父组件的状态或导航到另一个
selectSysParam() {
getSet().then((response) => {
if (response.code == 20000) {