| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
 | | <script setup> |  | import OrderView from '@/components/order/index.vue'; |  | </script> |  |   |  | <script> |  | export default { |  |   name: '入库订单' |  | } |  | </script> |  |   |  | <template> |  |   <div> |  |     <OrderView ioModel="in"  /> |  |   </div> |  | </template> |  |   |  | <style></style> | 
 |