Commit b206bb2b authored by jingnan's avatar jingnan 👀

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

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