Просмотр исходного кода

fix: 修复人才详情页CSS选择器缺失导致微信小程序构建失败

修复问题:
- 企业小程序微信版本 (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>
yourname 1 день назад
Родитель
Сommit
8bb3cabc47
1 измененных файлов с 1 добавлено и 0 удалено
  1. 1 0
      mini/src/pages/yongren/talent/detail/TalentDetail.css

+ 1 - 0
mini/src/pages/yongren/talent/detail/TalentDetail.css

@@ -6,6 +6,7 @@
 }
 }
 
 
 /* 卡片样式 */
 /* 卡片样式 */
+.card {
   border-radius: 12px;
   border-radius: 12px;
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
 }
 }