_id.vue 375 B

123456789101112131415161718
  1. <template>
  2. <div class="com-main com-margin-auto">
  3. <order-detail-part :isShow="false"></order-detail-part>
  4. </div>
  5. </template>
  6. <script>
  7. import orderDetailPart from '@/pages/home/myDetail/components/orderDetailPart'
  8. export default {
  9. components: { orderDetailPart },
  10. layout: 'blank_layout',
  11. head() {
  12. return {
  13. title: 'Trackship'
  14. };
  15. }
  16. };
  17. </script>