|
|
|
@ -134,6 +134,7 @@
|
|
|
|
|
>
|
|
|
|
|
<ShelfDisplay
|
|
|
|
|
:shelfData="this.shelfData"
|
|
|
|
|
@slot-click="handleSlotClick"
|
|
|
|
|
>
|
|
|
|
|
</ShelfDisplay>
|
|
|
|
|
</el-dialog>
|
|
|
|
@ -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
|
|
|
|
|