Commit 131d1961 authored by jingnan's avatar jingnan 👀

配套出库确认增加调整占用操作

parent 5204b27b
......@@ -121,6 +121,9 @@ export default {
this.$refs.adjustOccupyJobResponse.$refs.asCom.getData()
if (this.basicData && (this.basicData.fromPage === 'OutStorageUseConfirm' || this.basicData.fromPage === 'OutStorageOutConfirm')) { // 领用出库确认流程节点展示
this.$bus.$emit('refreshUseItemConfirm')
}
if (this.basicData && this.basicData.fromPage === 'OutStorageMatchConfirm') { // 领用出库确认流程节点展示
this.$bus.$emit('refreshMatchConfirm')
} else if (this.basicData && (this.basicData.fromPage === 'MatchRequestItems')) {
this.$bus.$emit('refreshMatchItems')
}
......
......@@ -43,6 +43,12 @@ export default {
watch: {},
created() {},
mounted() {
this.$bus.$on('refreshMatchConfirm', (hasFlag) => {
this.$nextTick(() => {
this.selectionChange(this.selectionRows)
this.selectionChange_item(this.selectionItemRows)
})
})
},
// 组件方法
methods: {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment