nw-cqdevicemgt-ui/src/views/stquery/outboundPreview/index.vue

16 lines
273 B
Vue
Raw Normal View History

<template>
<!-- 领料出库页面查询 -->
<div class="app-container">
<OutboundTable />
</div>
</template>
<script>
import OutboundTable from './components/outbound-table'
export default {
components: {
OutboundTable,
},
}
</script>