fix:组件优化

20240912_adapter
chenhc 5 months ago
parent 786f290156
commit da5fd400b3

@ -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,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

Loading…
Cancel
Save