Преглед изворни кода

Merge branch 'cfclub' of https://git.iwintrue.com/liaoxg/cfc into cfclub

Xiaogang Liao пре 2 месеци
родитељ
комит
cbe8c5760a

+ 1 - 1
cfc-web/.last_build_commit

@@ -1 +1 @@
-f1af53c630c19d7811cd54b15a92effbdc856ccf
+31c130ae59578e57c5331c9b7b02e5cf409f8dce

+ 2 - 2
cfc-web/package-lock.json

@@ -1,12 +1,12 @@
 {
   "name": "cfc-web",
-  "version": "1.0.464",
+  "version": "1.0.466",
   "lockfileVersion": 3,
   "requires": true,
   "packages": {
     "": {
       "name": "cfc-web",
-      "version": "1.0.464",
+      "version": "1.0.466",
       "dependencies": {
         "@wangeditor/editor": "^5.1.23",
         "@wangeditor/editor-for-vue": "^1.0.2",

+ 1 - 1
cfc-web/package.json

@@ -1,6 +1,6 @@
 {
   "name": "cfc-web",
-  "version": "1.0.465",
+  "version": "1.0.467",
   "private": true,
   "scripts": {
     "dev": "vue-cli-service serve",

+ 28 - 0
cfc-web/public/CHANGELOG-v1.0.md

@@ -4,6 +4,34 @@
 
 ---
 
+## v1.0.467 (2026-07-21)
+
+### 新功能
+- 首页 Hero 添加家庭幸福健康抽象插画背景
+
+### 其他
+- - 包含:屋顶/成长树/太阳/彩虹弧/家庭五人剪影/心形/草地祥云
+- - 暖色调大地色系(棕#C4956A / 浅绿#8DB48E / 淡黄#F5D89A / 蓝#A8D4E6)
+- - .hero-bg 加 SVG 背景图 + 左侧渐变遮罩确保文字可读性
+- 
+
+
+## v1.0.466 (2026-07-21)
+
+### 文档
+- unified execution plan v1.0 + PROJECT-OVERVIEW v1.2 status corrections
+
+### 其他
+-   Phase 1 completion (5 items), Phase 2 launch (4 items), 6 tech debt items,
+-   4-sprint timeline with dependencies and risk analysis
+- - Updated PROJECT-OVERVIEW.md: 12 completed features corrected from
+-   🚧/🟡 to ✅ based on code verification (profile redesign, action pages,
+-   pre-login experience, emotion check-in, article center, flora report,
+-   membership frontend, family graph, member detail sections, mind dual-tab,
+-   parent homepage, homepage overhaul)
+- 
+
+
 ## v1.0.465 (2026-07-21)
 
 ### 其他

+ 29 - 1
cfc-web/public/CHANGELOG.md

@@ -1,6 +1,6 @@
 # 更新日志
 
-> 当前版本: v1.0.465
+> 当前版本: v1.0.467
 
 ## 历史版本
 
@@ -8,6 +8,34 @@
 
 ---
 
+## v1.0.467 (2026-07-21)
+
+### 新功能
+- 首页 Hero 添加家庭幸福健康抽象插画背景
+
+### 其他
+- - 包含:屋顶/成长树/太阳/彩虹弧/家庭五人剪影/心形/草地祥云
+- - 暖色调大地色系(棕#C4956A / 浅绿#8DB48E / 淡黄#F5D89A / 蓝#A8D4E6)
+- - .hero-bg 加 SVG 背景图 + 左侧渐变遮罩确保文字可读性
+- 
+
+
+## v1.0.466 (2026-07-21)
+
+### 文档
+- unified execution plan v1.0 + PROJECT-OVERVIEW v1.2 status corrections
+
+### 其他
+-   Phase 1 completion (5 items), Phase 2 launch (4 items), 6 tech debt items,
+-   4-sprint timeline with dependencies and risk analysis
+- - Updated PROJECT-OVERVIEW.md: 12 completed features corrected from
+-   🚧/🟡 to ✅ based on code verification (profile redesign, action pages,
+-   pre-login experience, emotion check-in, article center, flora report,
+-   membership frontend, family graph, member detail sections, mind dual-tab,
+-   parent homepage, homepage overhaul)
+- 
+
+
 ## v1.0.465 (2026-07-21)
 
 ### 其他

+ 15 - 0
web/css/style.css

@@ -428,12 +428,27 @@ ul { list-style: none; }
   position: absolute;
   inset: 0;
   background:
+    url(../img/hero-family-bg.png) center/cover no-repeat,
     radial-gradient(ellipse 80% 50% at 50% -10%, rgba(74, 155, 215, .10), transparent),
     radial-gradient(ellipse 60% 40% at 80% 80%, rgba(78, 205, 196, .08), transparent),
     radial-gradient(ellipse 50% 50% at 20% 70%, rgba(255, 217, 61, .06), transparent);
   pointer-events: none;
 }
 
+.hero-bg::after {
+  content: '';
+  position: absolute;
+  inset: 0;
+  background: linear-gradient(
+    to right,
+    rgba(254, 249, 240, 0.82) 0%,
+    rgba(254, 249, 240, 0.65) 45%,
+    rgba(254, 249, 240, 0.10) 70%,
+    transparent 100%
+  );
+  pointer-events: none;
+}
+
 .hero-inner {
   display: grid;
   grid-template-columns: 1fr 1fr;

BIN
web/img/hero-family-bg.png