修复企业详情页简介显示不完整问题

- 修改DetailInterface.js使用完整的description字段
- 新增updateLogos.js脚本用于logo墙更新

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
KQL
2025-11-25 11:48:33 +08:00
parent ab50931347
commit db6b5627a3
2 changed files with 171 additions and 1 deletions

View File

@@ -128,7 +128,7 @@ export class DetailInterface {
document.getElementById('d-tags').innerHTML = company.tags
.map(t => `<span class="tag-badge">${t}</span>`)
.join(' ');
document.getElementById('d-intro').innerText = company.intro;
document.getElementById('d-intro').innerText = company.description;
document.getElementById('d-reason').innerText = company.reason;
document.getElementById('d-region').innerText = company.region;