#
Junjie
2024-11-28 a19133219811f9286fa71a0fb8c1deb628cf74a3
zy-asrs-admin/src/components/orderOut/orderOutMergePreview/index.vue
@@ -24,6 +24,7 @@
const open = ref(false);
const showWidth = ref("60%")
const records = ref([])
const waveId = ref(null)
const loading = ref(false)
const stockOutChild = ref(null)
@@ -115,9 +116,10 @@
    stockOutChild.value.open = true;
    stockOutChild.value.records = param;
    stockOutChild.value.waveId = waveId.value;
    stockOutChild.value.showWidth = '55%'
    emit('reload', true)
    // emit('reload', true)
}
const handleOrderMergePreview = () => {
@@ -143,12 +145,14 @@
const handleCloseParent = () => {
    open.value = false;
    emit('reload', true)
}
defineExpose({
    open,
    showWidth,
    records,
    waveId,
})
</script>