|
|
|
@ -38,6 +38,7 @@ |
|
|
|
<script> |
|
|
|
<script> |
|
|
|
// import { updateProcess } from '../../api/flowManagement/index'; |
|
|
|
// import { updateProcess } from '../../api/flowManagement/index'; |
|
|
|
import { getQuantityLocation } from '@/api/logisticsManagement/materialPacking'; |
|
|
|
import { getQuantityLocation } from '@/api/logisticsManagement/materialPacking'; |
|
|
|
|
|
|
|
import { time } from 'echarts'; |
|
|
|
export default { |
|
|
|
export default { |
|
|
|
props: { |
|
|
|
props: { |
|
|
|
showDialog: { |
|
|
|
showDialog: { |
|
|
|
@ -133,7 +134,9 @@ export default { |
|
|
|
methods: { |
|
|
|
methods: { |
|
|
|
init() { |
|
|
|
init() { |
|
|
|
getQuantityLocation({ boxBarcode: this.rowData.boxBarcode }).then(res => { |
|
|
|
getQuantityLocation({ boxBarcode: this.rowData.boxBarcode }).then(res => { |
|
|
|
this.data = res.data.data.yieldOrderList; |
|
|
|
let data_= res.data.data; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
this.data = data_.yieldOrderList.filter(item=>item.cardNo==this.rowData.cardNo) |
|
|
|
}); |
|
|
|
}); |
|
|
|
}, |
|
|
|
}, |
|
|
|
closeDialog() { |
|
|
|
closeDialog() { |
|
|
|
|