|
|
@@ -9,10 +9,37 @@
|
|
|
tagline="利他创富 · 价值共享"
|
|
|
quote="富足源于利他与坚持" />
|
|
|
|
|
|
+ <!-- 品牌定位语 -->
|
|
|
+ <view class="brand-strap">
|
|
|
+ <text class="brand-strap-text">分享价值,收获财富</text>
|
|
|
+ </view>
|
|
|
+
|
|
|
<!-- 登录引导 -->
|
|
|
<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>
|
|
|
</template>
|
|
|
|
|
|
@@ -230,6 +257,7 @@ export default {
|
|
|
children: [],
|
|
|
familyMembersVisible: [],
|
|
|
selectedMemberId: null,
|
|
|
+ guestProducts: [],
|
|
|
}
|
|
|
},
|
|
|
computed: {
|