Commit ca7a2d55 authored by jingnan's avatar jingnan 👀

领用出库申请/审核批量签审界面开发

parent df158af7
<!--
* @Author: gjn
* @Date: 2024-01-10 11:02:39
* @Description:批量签审_领用出库申请
-->
<template>
<div class="outStorageUseApply">
<dee-as-com
ref="applyTable"
class="list-table"
:basic-data=" { selectData: selectData }"
:lay-config="{ typeName: 'OutStorageUse', layKey: 'batchSign_outStorageUseApply'}"
/>
</div>
</template>
<script>
export default {
name: 'OutStorageUseApply',
components: {},
props: {
selectData: {
type: Object,
default: () => {}
}
},
data() {
return {}
},
computed: {},
watch: {},
created() {},
mounted() {
this.$bus.$on('cancelAndRefresh', (data) => {
this.$refs.applyTable && this.$refs.applyTable.$refs.asCom.getData()
})
},
// 组件方法
methods: {}
}
</script>
<style lang='scss'>
.outStorageUseApply{
width: 100%;
height: 100%;
box-sizing: border-box;
padding:0 4px;
}
</style>
<!--
* @Author: gjn
* @Date: 2024-01-10 13:43:39
* @Description:批量签审_领用出库审核
-->
<template>
<div class="outStorageUseExamine">
<dee-as-com
ref="applyTable"
class="list-table"
:basic-data=" { selectData,selectionRows }"
:lay-config="{ typeName: 'OutStorageUse', layKey: 'batchSign_outStorageUseExamine'}"
@selectionChange="selectionChange"
/>
</div>
</template>
<script>
export default {
name: 'OutStorageUseExamine',
components: {},
props: {
selectData: {
type: Object,
default: () => {}
}
},
data() {
return {
selectionRows: []
}
},
computed: {},
watch: {},
created() {},
mounted() {},
// 组件方法
methods: {
selectionChange(val) {
this.selectionRows = val
}
}
}
</script>
<style lang='scss'>
.outStorageUseExamine{
width: 100%;
height: 100%;
box-sizing: border-box;
padding:0 4px;
}
</style>
......@@ -22,8 +22,8 @@ export default {
OutStorageOutExamine: () => import('./outStorageOutExamine'), // 供外出库审核
OutStorageOutApproval: () => import('./outStorageOutApproval'), // 供外出库批准
OutStorageOutConfirm: () => import('./outStorageOutConfirm'), // 供外出库确认
// OutStorageUseApply: () => import('./outStorageOutConfirm'), // 领用出库申请
// OutStorageUseExamine: () => import('./outStorageOutConfirm'), // 领用出库审核
OutStorageUseApply: () => import('./outStorageUseApply'), // 领用出库申请
OutStorageUseExamine: () => import('./outStorageUseExamine'), // 领用出库审核
OutStorageUseConfirm: () => import('./outStorageOutConfirm'), // 领用出库确认
InStorageMatchBackApply: () => import('./inStorageMatchBackApply'), // 配套退库申请
InStorageMatchBackExamin: () => import('./inStorageMatchBackExamine'), // 配套退库审核
......
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