| | |
| | | <template> |
| | | <ContentScrollView style="background-color: transparent"> |
| | | <div v-if="isCertified" class="companyInfo-info-wrapper"> |
| | | <div v-if="enterpriseDetail?.isReal" class="companyInfo-info-wrapper"> |
| | | <div class="companyInfo-info-item"> |
| | | <div class="companyInfo-info-item-label">企业名称</div> |
| | | <div class="companyInfo-info-item-content">{{ enterpriseDetail?.enterpriseName }}</div> |
| | |
| | | }; |
| | | |
| | | const props = withDefaults(defineProps<Props>(), {}); |
| | | |
| | | /** |
| | | * TODO 企业是否认证 注册资本 |
| | | */ |
| | | const isCertified = ref(false); |
| | | |
| | | const { enterpriseDetail } = useEnterpriseDetail({ id: toRef(props, 'enterpriseId') }); |
| | | </script> |