fix:修复

20240912_adapter
chenhc 3 months ago
parent ccedf6cb62
commit 6949959198

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

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

Loading…
Cancel
Save