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