Parcourir la source

chore: auto bump version and changelog [skip ci]

iwt il y a 1 mois
Parent
commit
225b08cc59

+ 14 - 0
cfc-frontend/pages/body-detail/index.vue

@@ -678,4 +678,18 @@ export default {
   font-size: 22rpx;
   font-size: 22rpx;
   color: #bbb;
   color: #bbb;
 }
 }
+
+/* 品牌定位语 */
+.brand-strap {
+  margin: 16rpx 30rpx 0;
+  padding: 20rpx 28rpx;
+  background: linear-gradient(135deg, #FFF7ED, rgba(255,140,66,0.12));
+  border-radius: 16rpx;
+  border-left: 4rpx solid #FF8C42;
+}
+.brand-strap-text {
+  font-size: 26rpx;
+  color: #9A3412;
+  font-weight: 500;
+}
 </style>
 </style>

+ 23 - 4
cfc-frontend/pages/mind-detail/index.vue

@@ -8,6 +8,11 @@
       tagline="心智成长 · 智慧人生"
       tagline="心智成长 · 智慧人生"
       quote="知己知彼,百战不殆" />
       quote="知己知彼,百战不殆" />
 
 
+    <!-- 品牌定位语(登录前显示) -->
+    <view class="brand-strap" v-if="!isLoggedIn">
+      <text class="brand-strap-text">关注全家心理健康与情绪成长</text>
+    </view>
+
     <!-- ===== 家庭天盘模块(今日运势 / 今日心情 / 吉位) ===== -->
     <!-- ===== 家庭天盘模块(今日运势 / 今日心情 / 吉位) ===== -->
     <FamilyTianpanCard
     <FamilyTianpanCard
       v-if="isLoggedIn"
       v-if="isLoggedIn"
@@ -29,11 +34,11 @@
     <!-- 游客登录引导卡 -->
     <!-- 游客登录引导卡 -->
     <template v-if="!isLoggedIn">
     <template v-if="!isLoggedIn">
       <LoginGuideCard
       <LoginGuideCard
-        title="登录后查看心理成长报告"
+        title="解锁心理成长报告"
         :items="[
         :items="[
-          '查看EMI心理测评四维分析',
-          '查看大五人格分析报告',
-          '阅读专属文章、参与情绪打卡'
+          '完成 EMI 心理测评,查看四维分析报告',
+          '大五人格测评 · 情绪趋势追踪',
+          '阅读专属心理文章,参与每日情绪打卡'
         ]" />
         ]" />
     </template>
     </template>
 
 
@@ -1937,4 +1942,18 @@ components: { TabTransition, PageBanner, RadarChart, LoginGuideCard, FamilyEnerg
   color: #6366F1;
   color: #6366F1;
   padding: 8rpx 16rpx;
   padding: 8rpx 16rpx;
 }
 }
+
+/* 品牌定位语 */
+.brand-strap {
+  margin: 16rpx 30rpx 0;
+  padding: 20rpx 28rpx;
+  background: linear-gradient(135deg, #FFF0F5, rgba(255,107,157,0.12));
+  border-radius: 16rpx;
+  border-left: 4rpx solid #FF6B9D;
+}
+.brand-strap-text {
+  font-size: 26rpx;
+  color: #9D174D;
+  font-weight: 500;
+}
 </style>
 </style>

+ 30 - 2
cfc-frontend/pages/wealth/index.vue

@@ -9,10 +9,37 @@
         tagline="利他创富 · 价值共享"
         tagline="利他创富 · 价值共享"
         quote="富足源于利他与坚持" />
         quote="富足源于利他与坚持" />
 
 
+      <!-- 品牌定位语 -->
+      <view class="brand-strap">
+        <text class="brand-strap-text">分享价值,收获财富</text>
+      </view>
+
       <!-- 登录引导 -->
       <!-- 登录引导 -->
       <view class="login-guide-section">
       <view class="login-guide-section">
-        <text class="login-guide-text">登录后查看财富能量、推广收益、邀请返利等更多内容</text>
-        <button class="login-btn" @click="goLogin">登录 / 注册</button>
+        <LoginGuideCard
+          title="解锁财富能量与推广收益"
+          :items="[
+            '查看家庭财富能量仪表盘与推广收益',
+            '管理邀请返利,开通会员享专属折扣',
+            '浏览商城精选商品,一键加入购物车'
+          ]" />
+      </view>
+
+      <!-- 商城精选预览(无需登录) -->
+      <view class="section">
+        <view class="section-header">
+          <text class="section-title">🛍️ 商城精选</text>
+          <text class="section-more" @click="goToShop">查看全部 ›</text>
+        </view>
+        <scroll-view scroll-x class="product-scroll" show-scrollbar="false">
+          <view class="product-list">
+            <view class="product-card" v-for="(item, idx) in guestProducts" :key="idx" @click="goProductDetail(item.id)">
+              <image class="product-img" :src="item.image || '/static/default-product.png'" mode="aspectFill" />
+              <text class="product-name">{{ item.name }}</text>
+              <text class="product-price">¥{{ item.price || 0 }}</text>
+            </view>
+          </view>
+        </scroll-view>
       </view>
       </view>
     </template>
     </template>
 
 
@@ -230,6 +257,7 @@ export default {
       children: [],
       children: [],
       familyMembersVisible: [],
       familyMembersVisible: [],
       selectedMemberId: null,
       selectedMemberId: null,
+      guestProducts: [],
     }
     }
   },
   },
   computed: {
   computed: {

+ 23 - 4
cfc-frontend/pages/wisdom-detail/index.vue

@@ -8,6 +8,11 @@
       tagline="学以启智 · 慧及未来"
       tagline="学以启智 · 慧及未来"
       quote="知者不惑,仁者不忧" />
       quote="知者不惑,仁者不忧" />
 
 
+    <!-- 品牌定位语(登录前显示) -->
+    <view class="brand-strap" v-if="!isLoggedIn">
+      <text class="brand-strap-text">提升全家认知能力与学习效率</text>
+    </view>
+
     <!-- 2. 认知雷达图(始终显示,无数据时仅显示人群平均值) -->
     <!-- 2. 认知雷达图(始终显示,无数据时仅显示人群平均值) -->
     <view class="section">
     <view class="section">
       <view class="section-header">
       <view class="section-header">
@@ -36,11 +41,11 @@
     <!-- 3. 游客专属区块 -->
     <!-- 3. 游客专属区块 -->
     <template v-if="!isLoggedIn">
     <template v-if="!isLoggedIn">
       <LoginGuideCard
       <LoginGuideCard
-        title="登录后查看全家智慧成长数据"
+        title="解锁认知成长数据"
         :items="[
         :items="[
-          '查看全家认知能量数据和测评报告',
-          '记录每日成长,获取智慧能量',
-          '参与认知训练,提升综合能力'
+          '查看全家认知雷达图与测评报告',
+          '完成认知训练,持续提升思维能力',
+          '预约专业测评,获取个性化成长建议'
         ]" />
         ]" />
     </template>
     </template>
 
 
@@ -529,4 +534,18 @@ export default {
   color: #94A3B8;
   color: #94A3B8;
   margin-left: 12rpx;
   margin-left: 12rpx;
 }
 }
+
+/* 品牌定位语 */
+.brand-strap {
+  margin: 16rpx 30rpx 0;
+  padding: 20rpx 28rpx;
+  background: linear-gradient(135deg, #F0F0FF, rgba(99,102,241,0.12));
+  border-radius: 16rpx;
+  border-left: 4rpx solid #6366F1;
+}
+.brand-strap-text {
+  font-size: 26rpx;
+  color: #3730A3;
+  font-weight: 500;
+}
 </style>
 </style>

+ 1 - 1
cfc-web/.last_build_commit

@@ -1 +1 @@
-9a7a60b5f5c5e227f45965c956fb4299e2b6a50b
+87722f18746ebdc0bd1808657880f225ed7fe224