Files
klp-oa/klp-ui/src/views/wms/order/pre.vue

16 lines
213 B
Vue
Raw Normal View History

2025-08-12 14:39:56 +08:00
<template>
2025-08-25 18:06:32 +08:00
<div>
<OrderPage :isPre="true" />
2025-08-12 14:39:56 +08:00
</div>
</template>
<script>
2025-08-25 18:06:32 +08:00
import OrderPage from './panels/orderPage.vue';
2025-08-12 14:39:56 +08:00
export default {
2025-08-25 18:06:32 +08:00
name: 'OrderPre',
components: {
OrderPage
2025-08-12 14:39:56 +08:00
}
2025-08-25 18:06:32 +08:00
}
</script>