fix:修复

20240912_adapter
chenhc 3 months ago
parent ccedf6cb62
commit 6949959198

@ -1,7 +1,7 @@
<template>
<div class="shelf-container">
<div class="shelf">
<el-divider>取货架编号:{{ freightCode }}</el-divider>
<el-divider>{{ freightName }}--{{ freightCode }}</el-divider>
<div style="margin-top: 20px">
<div
v-for="(row, rowIndex) in shelfData"
@ -91,6 +91,10 @@ export default {
freightCode: {
type: Object,
required: true
},
freightName: {
type: Object,
required: true
}
},
methods: {

@ -38,7 +38,7 @@
<!-- <el-button type="primary" @click.native="saveTest()">测试货架组件</el-button>-->
<!--</el-button-group>-->
<el-dialog
title="查看取货架"
:title=this.title
:visible.sync="ShelfDisplayFlag"
width="75%"
v-if="ShelfDisplayFlag"
@ -49,6 +49,7 @@
:shelfData="this.layerList"
@slot-click="handleSlotClick"
:freightCode="freightCode"
:freightName="freightName"
>
</ShelfDisplay>
</el-dialog>
@ -80,6 +81,7 @@ export default {
],
layerList:[],
list:[],
title:"",
freightQuery: {
// page: 1,
// limit: 10,
@ -91,6 +93,7 @@ export default {
// deptCode: this.$store.getters.locDeptCode
},
freightCode: '',
freightName: '',
}
},
methods: {
@ -137,7 +140,9 @@ export default {
},
handleClick(info){
this.title = info.name
this.freightCode = info.code
this.freightName = info.name
this.ShelfDisplayFlag = true
this.getFreights()
},

Loading…
Cancel
Save