From 7ed061afc2f66a5b47ca70a2a001ef8aee98c778 Mon Sep 17 00:00:00 2001 From: cody <648753004@qq.com> Date: Fri, 9 Jan 2026 12:45:22 +0800 Subject: [PATCH] update --- resources/views/company_search.blade.php | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/resources/views/company_search.blade.php b/resources/views/company_search.blade.php index 12533be..1988015 100644 --- a/resources/views/company_search.blade.php +++ b/resources/views/company_search.blade.php @@ -256,18 +256,13 @@ companies.forEach(company => { html += `
-

${escapeHtml(company.enterpriseName || company.name || '')}

+

${escapeHtml(company.name || '')}

${getInfoItem('统一社会信用代码', company.creditCode)} ${getInfoItem('法人代表', company.operName)} ${getInfoItem('注册状态', company.status)} ${getInfoItem('成立日期', company.startDate)} - ${getInfoItem('注册资本', formatRegistAmount(company.registAmount, company.registCapiType))} - ${getInfoItem('企业地址', company.address)} - ${getInfoItem('所属城市', company.city)} - ${getInfoItem('所属省份', company.province)} - ${getInfoItem('企业类型', company.enterpriseType)} - ${getInfoItem('经营范围', company.businessScope)} + ${getInfoItem('密钥编号', company.keyNo)}
`; @@ -288,10 +283,6 @@ `; } - function formatRegistAmount(amount, type) { - if (!amount) return ''; - return `${amount} ${type || ''}`; - } function showError(message) { const errorMsg = document.getElementById('errorMsg');