Commit b206bb2b authored by jingnan's avatar jingnan 👀

移库入库增加批量操作审核操作,原来的审核节点变为确认节点

parent 36deb26d
<!--
* @Author: gjn
* @Date: 2024-03-05 13:49:39
* @Description:移库入库库房审核
* @Description:移库入库库房审核/确认
-->
<template>
<div class="inStorageMoveExamine">
......@@ -9,7 +9,7 @@
ref="applyTable"
class="list-table"
:basic-data=" { selectData,selectionRows }"
:lay-config="{ typeName: 'InStorageMoveItem', layKey: 'batchSign_inStorageMoveExamine'}"
:lay-config="{ typeName: 'InStorageMoveItem', layKey:layKey }"
@selectionChange="selectionChange"
/>
</div>
......@@ -27,11 +27,24 @@ export default {
},
data() {
return {
selectionRows: []
selectionRows: [],
layKey: 'batchSign_inStorageMoveExamine'
}
},
computed: {},
watch: {},
watch: {
'selectData.router': {
immediate: true,
deep: true,
handler(val) {
if (val === 'InStorageMoveAuditing') {
this.layKey = 'batchSign_InStorageMoveAuditing'
} else {
this.layKey = 'batchSign_inStorageMoveExamine'
}
}
}
},
created() {},
mounted() {
this.$bus.$on('refreshUseItemConfirm', (data) => {
......
......@@ -44,7 +44,8 @@ export default {
InstructionIdentificationBatch: () => import('./instructionIdentificationBatch'), // 指令标识
InstructionIdentificationBatchInfo: () => import('./instructionIdentificationBatch'), // 指令标识不编辑
ReturnToFactoryBatch: () => import('./returnToFactoryBatch'), // 返厂处理
InStorageMoveExamine: () => import('./inStorageMoveExamine') // 移库入库库房审核
InStorageMoveAuditing: () => import('./inStorageMoveExamine'), // 移库入库库房审核
InStorageMoveExamine: () => import('./inStorageMoveExamine') // 移库入库库房确认
},
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