Commit 33b7656d authored by jingnan's avatar jingnan 👀

Merge branch 'dev' into rubberPaint-dev

parents 8e1d66ca 9eed4403
<!--
* @Author: gjn
* @Date: 2023-11-02 09:29:39
* @Description:配套退库入库申请
-->
<template>
<div class="inStorageTkdBackApply">
<dee-as-com
ref="applyTable"
class="list-table"
:basic-data=" { selectData: selectData }"
:lay-config="{ typeName: 'InStorageBackItem', layKey: 'batchSign_InStorageMatchBackApply'}"
/>
</div>
</template>
<script>
export default {
name: 'InStorageTkdBackApply',
components: {},
props: {
selectData: {
type: Object,
default: () => {}
}
},
data() {
return {}
},
computed: {},
watch: {},
created() {},
mounted() {},
// 组件方法
methods: {}
}
</script>
<style lang='scss'>
.inStorageMatchBackApply{
width: 100%;
height: 100%;
box-sizing: border-box;
padding:0 4px;
}
</style>
<!--
* @Author: gjn
* @Date: 2023-11-02 09:29:39
* @Description:配套退库入库申请
-->
<template>
<div class="InStorageTkdBackConfirm">
<dee-as-com
ref="applyTable"
class="list-table"
:basic-data=" { selectData: selectData }"
:lay-config="{ typeName: 'InStorageBackItem', layKey: 'batchSign_InStorageMatchBackConfirm'}"
/>
</div>
</template>
<script>
export default {
name: 'InStorageTkdBackConfirm',
components: {},
props: {
selectData: {
type: Object,
default: () => {}
}
},
data() {
return {}
},
computed: {},
watch: {},
created() {},
mounted() {},
// 组件方法
methods: {}
}
</script>
<style lang='scss'>
.inStorageMatchBackApply{
width: 100%;
height: 100%;
box-sizing: border-box;
padding:0 4px;
}
</style>
......@@ -4,12 +4,13 @@
* @Description:配套退库入库申请
-->
<template>
<div class="InStorageTkdBackCraftsmenExamin">
<div class="inStorageTkdBackCraftsmenExamin">
<dee-as-com
ref="applyTable"
class="list-table"
:basic-data=" { selectData: selectData }"
:basic-data=" { selectData,selectionRows }"
:lay-config="{ typeName: 'InStorageBackItem', layKey: 'e6e40243-8be1-4d38-a978-ed1ce3a6ceda'}"
@selectionChange="selectionChange"
/>
</div>
</template>
......@@ -25,14 +26,20 @@ export default {
}
},
data() {
return {}
return {
selectionRows: []
}
},
computed: {},
watch: {},
created() {},
mounted() {},
// 组件方法
methods: {}
methods: {
selectionChange(val) {
this.selectionRows = val
}
}
}
</script>
......
......@@ -4,12 +4,13 @@
* @Description:配套退库入库申请
-->
<template>
<div class="InStorageTkdBackDesignerExamin">
<div class="inStorageTkdBackDesignerExamin">
<dee-as-com
ref="applyTable"
class="list-table"
:basic-data=" { selectData: selectData }"
:basic-data=" { selectData,selectionRows }"
:lay-config="{ typeName: 'InStorageBackItem', layKey: '8ef52f63-266c-4d66-9ee7-a6be91d9d610'}"
@selectionChange="selectionChange"
/>
</div>
</template>
......@@ -25,14 +26,20 @@ export default {
}
},
data() {
return {}
return {
selectionRows: []
}
},
computed: {},
watch: {},
created() {},
mounted() {},
// 组件方法
methods: {}
methods: {
selectionChange(val) {
this.selectionRows = val
}
}
}
</script>
......
<!--
* @Author: gjn
* @Date: 2023-11-02 09:29:39
* @Description:配套退库入库申请
-->
<template>
<div class="InStorageTkdBackInTest">
<dee-as-com
ref="applyTable"
class="list-table"
:basic-data=" { selectData: selectData }"
:lay-config="{ typeName: 'InStorageBackItem', layKey: 'batchSign_InStorageMatchBackInTest'}"
/>
</div>
</template>
<script>
export default {
name: 'InStorageTkdBackInTest',
components: {},
props: {
selectData: {
type: Object,
default: () => {}
}
},
data() {
return {}
},
computed: {},
watch: {},
created() {},
mounted() {},
// 组件方法
methods: {}
}
</script>
<style lang='scss'>
.inStorageMatchBackApply{
width: 100%;
height: 100%;
box-sizing: border-box;
padding:0 4px;
}
</style>
......@@ -46,11 +46,8 @@ export default {
ReturnToFactoryBatch: () => import('./returnToFactoryBatch'), // 返厂处理
InStorageMoveAuditing: () => import('./inStorageMoveExamine'), // 移库入库库房审核
InStorageMoveExamine: () => import('./inStorageMoveExamine'), // 移库入库库房确认
InStorageTkdBackApply: () => import('./InStorageTkdBackApply'), // 退库单退库申请
InStorageTkdBackCraftsmenExamin: () => import('./InStorageTkdBackCraftsmenExamin'), // 退库单退库工艺审核
InStorageTkdBackDesignerExamin: () => import('./InStorageTkdBackDesignerExamin'), // 退库单退库设计审核
InStorageTkdBackInTest: () => import('./InStorageTkdBackInTest'), // 退库单退库检验
InStorageTkdBackConfirm: () => import('./InStorageTkdBackConfirm') // 退库单退库确认
InStorageTkdBackCraftsmenExamin: () => import('./inStorageTkdBackCraftsmenExamin'), // 退库单退库工艺审核
InStorageTkdBackDesignerExamin: () => import('./inStorageTkdBackDesignerExamin') // 退库单退库设计审核
},
props: {
selectData: {
......
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