Commit 2e01e64e authored by jingnan's avatar jingnan 👀

配套需求单明细开发

parent 11ad0da7
<!--
* @Author: gjn
* @Date: 2023-09-15 14:22:41
* @Description:签审对象_检验环节
-->
<template>
<div class="MatchRequestItemsCon">
<dee-as-com
ref="table"
:lay-config="cmpOptions"
/>
</div>
</template>
<script>
export default {
name: 'MatchRequestItemsCon',
components: {},
props: {
},
data() {
return {
cmpOptions: {
typeName: 'OutStorageMatchItem',
layKey: 'matchRequestItems'
}
}
},
computed: {},
watch: {},
created() {
this.$bus.$on('refreshMatchItems', (data) => {
this.$refs.table && this.$refs.table.$refs.asCom.getData()
})
},
mounted() {},
// 组件方法
methods: {}
}
</script>
<style lang='scss'>
.MatchRequestItemsCon{
height: 100%;
}
</style>
...@@ -121,6 +121,8 @@ export default { ...@@ -121,6 +121,8 @@ export default {
this.$refs.adjustOccupyJobResponse.$refs.asCom.getData() this.$refs.adjustOccupyJobResponse.$refs.asCom.getData()
if (this.basicData && (this.basicData.fromPage === 'OutStorageUseConfirm' || this.basicData.fromPage === 'OutStorageOutConfirm')) { // 领用出库确认流程节点展示 if (this.basicData && (this.basicData.fromPage === 'OutStorageUseConfirm' || this.basicData.fromPage === 'OutStorageOutConfirm')) { // 领用出库确认流程节点展示
this.$bus.$emit('refreshUseItemConfirm') this.$bus.$emit('refreshUseItemConfirm')
} else if (this.basicData && (this.basicData.fromPage === 'MatchRequestItems')) {
this.$bus.$emit('refreshMatchItems')
} }
}, },
onRequestSuccess(res) { onRequestSuccess(res) {
......
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