diff --git a/src/api/credit/creditCompany/index.ts b/src/api/credit/creditCompany/index.ts index 5d3306e..a51eec1 100644 --- a/src/api/credit/creditCompany/index.ts +++ b/src/api/credit/creditCompany/index.ts @@ -124,3 +124,22 @@ export async function importCreditCompany(file: File) { } return Promise.reject(new Error(res.data.message)); } + +/** + * 根据企业匹配名称查询关联信息 + */ +export async function getCompanyRelatedInfo(params: { + type: string; + keywords: string; +}) { + const res = await request.get[]>>( + '/credit/credit-company/related', + { + params + } + ); + if (res.data.code === 0) { + return res.data.data ?? []; + } + return Promise.reject(new Error(res.data.message)); +} diff --git a/src/views/credit/creditCompany/components/creditCompanyInfo.vue b/src/views/credit/creditCompany/components/creditCompanyInfo.vue index c57233f..cf2f720 100644 --- a/src/views/credit/creditCompany/components/creditCompanyInfo.vue +++ b/src/views/credit/creditCompany/components/creditCompanyInfo.vue @@ -8,442 +8,205 @@ :title="data?.name" :body-style="{ paddingBottom: '28px' }" @update:visible="updateVisible" - @ok="save" > - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + {{ formatValue(form.name) }} + + + {{ formatValue(form.matchName) }} + + + {{ formatValue(form.code) }} + + + {{ formatValue(form.registrationStatus) }} + + + {{ formatValue(form.legalPerson) }} + + + {{ formatValue(form.registeredCapital) }} + + + {{ formatValue(form.paidinCapital) }} + + + {{ formatValue(form.establishDate) }} + + + {{ formatValue(form.address) }} + + + {{ formatValue(form.tel) }} + + + {{ formatValue(form.moreTel) }} + + + {{ formatValue(form.email) }} + + + {{ formatValue(form.moreEmail) }} + + + {{ formatValue(form.country) }} + + + {{ formatValue(form.province) }} + + + {{ formatValue(form.city) }} + + + {{ formatValue(form.region) }} + + + {{ formatValue(form.institutionType) }} + + + {{ formatValue(form.taxpayerCode) }} + + + {{ formatValue(form.registrationNumber) }} + + + {{ formatValue(form.organizationalCode) }} + + + {{ formatValue(form.numberOfInsuredPersons) }} + + + {{ formatValue(form.annualReport) }} + + + {{ formatValue(form.businessTerm) }} + + + {{ formatValue(form.nationalStandardIndustryCategories) }} + + + {{ formatValue(form.nationalStandardIndustryCategories2) }} + + + {{ formatValue(form.nationalStandardIndustryCategories3) }} + + + {{ formatValue(form.nationalStandardIndustryCategories4) }} + + + {{ formatValue(form.nationalStandardIndustryCategories5) }} + + + {{ formatValue(form.nationalStandardIndustryCategories6) }} + + + {{ formatValue(form.nationalStandardIndustryCategories7) }} + + + {{ formatValue(form.nationalStandardIndustryCategories8) }} + + + {{ formatValue(form.companySize) }} + + + {{ formatValue(form.formerName) }} + + + {{ formatValue(form.englishName) }} + + + {{ formatValue(form.domain) }} + + + {{ formatValue(form.mailingAddress) }} + + + {{ formatValue(form.companyProfile) }} + + + {{ formatValue(form.natureOfBusiness) }} + + + {{ formatValue(form.registrationAuthority) }} + + + {{ formatValue(form.taxpayerQualification) }} + + + {{ formatValue(form.latestAnnualReportYear) }} + + + {{ formatValue(form.latestAnnualReportOnOperatingRevenue) }} + + + {{ formatValue(form.enterpriseScoreCheck) }} + + + {{ formatValue(form.creditRating) }} + + + {{ formatValue(form.cechnologyScore) }} + + + {{ formatValue(form.cechnologyLevel) }} + + + {{ formatValue(form.smallEnterprise) }} + + + {{ formatValue(form.comments) }} + + + {{ formatValue(form.sortNumber) }} + + + {{ formatStatus(form.status) }} + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 显示 - 隐藏 - - - + +