| | |
| | | BASE_URL: '"http://localhost:53780"', |
| | | BASE_URL_JX: '"https://api.jx818.com"', |
| | | |
| | | APP_ENV: '"development"', |
| | | |
| | | OSS_URL: '"https://waterdroptest2.oss-cn-hangzhou.aliyuncs.com/"', |
| | | WEMAP_KEY: 'T2UBZ-N563J-ZCHFF-XDOXN-VCH7S-CJB2T', |
| | | }, |
| | |
| | | |
| | | OSS_URL: '"https://parkmanagement.oss-cn-hangzhou.aliyuncs.com"', |
| | | |
| | | APP_ENV: '"production"', |
| | | |
| | | WEMAP_KEY: 'DYRBZ-ZGPCF-X3OJN-N2AA3-JWUCE-HEBXJ', |
| | | }, |
| | | defineConstants: {}, |
| | |
| | | { showLoading: false, getResponse: true } |
| | | ); |
| | | |
| | | if (res) { |
| | | if (res && process.env.APP_ENV === 'staging') { |
| | | // @ts-ignore |
| | | form.verificationCode = res?.data?.extras?.code ?? ''; |
| | | } |
| | |
| | | :showArrow="false" |
| | | :enterpriseName="enterpriseDetail?.enterpriseName ?? ''" |
| | | :taskCount="enterpriseDetail?.taskCount ?? 0" |
| | | :isReal="enterpriseDetail?.isReal ?? false" |
| | | ></CompanyDesc> |
| | | </ContentView> |
| | | <div style="flex: 1; min-height: 0"> |
| | |
| | | <div class="taskDetail-company-title">{{ enterpriseName }}</div> |
| | | <RectRight v-if="showArrow" :size="8" class="taskDetail-company-arrow" /> |
| | | </div> |
| | | <div class="taskDetail-company-info" v-if="isCertified"> |
| | | <div class="taskDetail-company-info" v-if="isReal"> |
| | | <img :src="IconSafe" class="safe-company-info-icon" /> |
| | | <div class="taskDetail-company-info-text">已认证 | {{ taskCount }}个岗位在招</div> |
| | | </div> |
| | |
| | | |
| | | type Props = { |
| | | showArrow?: boolean; |
| | | isCertified?: boolean; |
| | | isReal?: boolean; |
| | | enterpriseName?: string; |
| | | taskCount?: number; |
| | | /** |
| | |
| | | <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> |
| | |
| | | @click="goCompanyDetail" |
| | | :enterpriseName="detail?.enterpriseName ?? ''" |
| | | :taskCount="detail?.taskCount ?? 0" |
| | | :isReal="detail?.isReal ?? false" |
| | | ></CompanyDesc> |
| | | </CellChunk> |
| | | </Cell> |
| | |
| | | TARO_ENV: 'weapp' | 'swan' | 'alipay' | 'h5' | 'rn' | 'tt' | 'quickapp' | 'qq' | 'jd' |
| | | |
| | | NODE_ENV: 'development' | 'production'; |
| | | APP_ENV: 'staging'; |
| | | APP_ENV: 'staging'| 'development' | 'production'; |
| | | |
| | | BASE_URL: string; |
| | | TEST_BASE_URL: string; |