Commit a7c0ccda authored by jingnan's avatar jingnan 👀

生产准备工确认增加ao基本信息

parent e665cc11
<template>
<div class="proPreConfirmRight">
<dee-as-com
:basic-data=" {...currentAo.joExecutePlan[0]}"
:lay-config="{ typeName: 'JoExecutePlan', layKey: 'batchSign_proPreConfirm_aoInfo'}"
/>
<dee-as-com
ref="outStorageMatch"
:basic-data=" { selectData: selectData }"
......@@ -24,6 +28,10 @@ export default {
selectData: {
type: Object,
default: () => {}
},
currentAo: {
type: Object,
default: () => {}
}
},
data() {
......
......@@ -23,6 +23,7 @@
v-show="subTypeName === '1'"
ref="right"
:select-data="selectData"
:current-ao="currentAo"
@left:init="() => this.$refs.left.init()"
/>
<!-- empty -->
......@@ -48,7 +49,8 @@ export default {
},
data() {
return {
subTypeName: ''
subTypeName: '',
currentAo: null
}
},
computed: {},
......@@ -60,6 +62,7 @@ export default {
methods: {
currentAoClick(currentAo) {
this.subTypeName = '1'
this.currentAo = currentAo
this.$refs.right.init(currentAo)
}
}
......
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