Commit a65d89f6 authored by jingnan's avatar jingnan 👀

批量签审供外出库流程开发

parent 1002b33c
<!--
* @Author: gjn
* @Date: 2023-08-23 14:01:22
* @Description:批量签审_供外出库批准
-->
<template>
<div class="outStorageOutApproval">
<dee-as-com
ref="applyTable"
class="list-table"
:basic-data=" { selectData,selectionRows }"
:lay-config="{ typeName: 'OutStorageOut', layKey: 'batchSign_outStorageOutApproval'}"
@selectionChange="selectionChange"
/>
</div>
</template>
<script>
export default {
name: 'OutStorageOutApproval',
components: {},
props: {
selectData: {
type: Object,
default: () => {}
}
},
data() {
return {
selectionRows: []
}
},
computed: {},
watch: {},
created() {},
mounted() {},
// 组件方法
methods: {
selectionChange(val) {
this.selectionRows = val
}
}
}
</script>
<style lang='scss'>
.outStorageOutApproval{
width: 100%;
height: 100%;
box-sizing: border-box;
padding:0 4px;
}
</style>
......@@ -9,7 +9,7 @@
ref="applyTable"
class="list-table"
:basic-data=" { selectData,selectionRows }"
:lay-config="{ typeName: 'OutStorageExpire', layKey: 'batchSign_outStorageOutConfirm'}"
:lay-config="{ typeName: 'OutStorageOut', layKey: 'batchSign_outStorageOutConfirm'}"
@selectionChange="selectionChange"
/>
</div>
......
<!--
* @Author: gjn
* @Date: 2023-08-23 10:13:39
* @Description:批量签审_供外出库审核
-->
<template>
<div class="outStorageOutExamine">
<dee-as-com
ref="applyTable"
class="list-table"
:basic-data=" { selectData,selectionRows }"
:lay-config="{ typeName: 'OutStorageOut', layKey: 'batchSign_outStorageOutExamine'}"
@selectionChange="selectionChange"
/>
</div>
</template>
<script>
export default {
name: 'OutStorageOutExamine',
components: {},
props: {
selectData: {
type: Object,
default: () => {}
}
},
data() {
return {
selectionRows: []
}
},
computed: {},
watch: {},
created() {},
mounted() {},
// 组件方法
methods: {
selectionChange(val) {
this.selectionRows = val
}
}
}
</script>
<style lang='scss'>
.outStorageOutExamine{
width: 100%;
height: 100%;
box-sizing: border-box;
padding:0 4px;
}
</style>
......@@ -18,8 +18,8 @@ export default {
OutStorageExpireConfirm: () => import('./outStorageExpireConfirm'), // 三期出库确认
OutStorageRecallConfirm: () => import('./outStorageRecallConfirm'), // 返厂出库确认
OutStorageOutApply: () => import('./outStorageOutApply'), // 供外出库申请
// OutStorageOutExamine: () => import('./outStorageOutExamine'), // 供外出库审核
// OutStorageOutApproval: () => import('./outStorageOutApproval'), // 供外出库批准
OutStorageOutExamine: () => import('./outStorageOutExamine'), // 供外出库审核
OutStorageOutApproval: () => import('./outStorageOutApproval'), // 供外出库批准
OutStorageOutConfirm: () => import('./outStorageOutConfirm')// 供外出库确认
},
props: {
......
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