修复问题: - 企业小程序微信版本 (dev:weapp) 构建失败 - 错误信息: TypeError: Cannot read properties of undefined (reading 'source') - 根本原因: TalentDetail.css 中卡片样式缺少选择器名称 修复内容: - 为 .card 样式块添加缺失的选择器名称 - 此问题是在提取 NameAvatar 共享组件时遗留的 Generated with [Claude Code](https://claude.ai/code) via [Happy](https://happy.engineering) Co-Authored-By: Claude <noreply@anthropic.com> Co-Authored-By: Happy <yesreply@happy.engineering>
@@ -6,6 +6,7 @@
}
/* 卡片样式 */
+.card {
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);