Commit a7c0ccda authored by jingnan's avatar jingnan 👀

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

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