wupengfei
昨天 50a6acc57bc79c99e0f24b4983cceffa77d878a2
1
2
3
4
5
6
7
8
9
10
11
12
13
<template>
  <PageLayout class="appointmentManageDetail-page-wrapper" title="预约详情" has-border>
    <InnerPage />
  </PageLayout>
</template>
 
<script setup lang="ts">
import InnerPage from './InnerPage.vue';
 
defineOptions({
  name: 'appointmentManageDetail',
});
</script>