zhengyiming
4 天以前 3244c36d38913cda0a2fe6ae6c2f0dba785626cd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<template>
  <div></div>
</template>
 
<script setup lang="ts">
import Taro from '@tarojs/taro';
// import CompanyDesc from '../components/CompanyDesc.vue';
// import CompanyTaskList from '../components/CompanyTaskList.vue';
// import CompanyInfo from '../components/CompanyInfo.vue';
import { ProTabs, ProTabPane } from '@12333/components';
// import { useEnterpriseDetail } from '@12333/hooks';
 
defineOptions({
  name: 'InnerPage',
});
 
const router = Taro.useRouter();
const enterpriseId = router.params?.id ?? '';
</script>
 
<style lang="scss">
@import '@/styles/common.scss';
</style>