修复企业详情页简介显示不完整问题
- 修改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:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user