wupengfei
3 天以前 507131cbff30df768441a2167d1c7396ba5ceea2
1
2
3
4
5
6
7
8
9
10
11
12
13
<template>
  <PageLayoutWithBg class="enterpriseEmployeeDetail-page-wrapper" title="服务人员详情">
    <InnerPage />
  </PageLayoutWithBg>
</template>
 
<script setup lang="ts">
import InnerPage from './InnerPage.vue';
 
defineOptions({
  name: 'EnterpriseEmployeeDetail',
});
</script>