14 lines
294 B
Vue
14 lines
294 B
Vue
|
<template>
|
||
|
<div style="flex: 1;">
|
||
|
<Container name="订单完成情况" size="small" style="">
|
||
|
digndna
|
||
|
</Container>
|
||
|
</div>
|
||
|
</template>
|
||
|
<script>
|
||
|
import Container from '../components/Container.vue';
|
||
|
export default {
|
||
|
name: 'OrderStatus',
|
||
|
components: { Container },
|
||
|
}
|
||
|
</script>
|