| | |
| | | <div v-if="isCertified" class="companyInfo-info-wrapper"> |
| | | <div class="companyInfo-info-item"> |
| | | <div class="companyInfo-info-item-label">企业名称</div> |
| | | <div class="companyInfo-info-item-content">江西君润商务服务有限公司</div> |
| | | <div class="companyInfo-info-item-content">{{ enterpriseDetail.enterpriseName }}</div> |
| | | </div> |
| | | <div class="companyInfo-info-item"> |
| | | <div class="companyInfo-info-item-label">统一社会信用代码</div> |
| | | <div class="companyInfo-info-item-content">420902197910211010</div> |
| | | <div class="companyInfo-info-item-content">{{ enterpriseDetail.societyCreditCode }}</div> |
| | | </div> |
| | | <div class="companyInfo-info-item"> |
| | | <div class="companyInfo-info-item-label">注册资本</div> |
| | |
| | | |
| | | <script setup lang="ts"> |
| | | import IconNoCertified from '@/assets/task/icon-no-certified.png'; |
| | | import { useEnterpriseDetail } from '@12333/hooks'; |
| | | |
| | | defineOptions({ |
| | | name: 'CompanyInfo', |
| | | }); |
| | | |
| | | const isCertified = ref(true); |
| | | type Props = { |
| | | enterpriseId?: string; |
| | | }; |
| | | |
| | | const props = withDefaults(defineProps<Props>(), {}); |
| | | |
| | | /** |
| | | * TODO 企业是否认证 注册资本 |
| | | */ |
| | | const isCertified = ref(false); |
| | | |
| | | const { enterpriseDetail } = useEnterpriseDetail({ id: toRef(props, 'enterpriseId') }); |
| | | </script> |
| | | |
| | | <style lang="scss"> |