hookehuyr

style(components): 更新家庭页面和积分显示组件的样式

- 修改家庭页面中当前家庭和创建者标签的背景和文字颜色
- 更新积分显示组件的背景图配置
......@@ -136,6 +136,9 @@ const handleGoToPointsRule = () => {
box-shadow: 0 4rpx 20rpx rgba(0, 0, 0, 0.08);
margin: 32rpx;
overflow: hidden;
background-image: url('https://cdn.ipadbiz.cn/lls_prog/images/dashboard_bg.png');
background-size: cover;
background-position: center bottom;
}
.total-points-display-header {
......@@ -156,9 +159,9 @@ const handleGoToPointsRule = () => {
justify-content: center;
align-items: center;
// TODO: 等待正式背景图
background-image: url('https://cdn.ipadbiz.cn/lls_prog/images/bg-test-2.png');
background-size: cover;
background-position: center bottom;
// background-image: url('https://cdn.ipadbiz.cn/lls_prog/images/bg-test-2.png');
// background-size: cover;
// background-position: center bottom;
}
// .points-rule-tip {
......
<!--
* @Date: 2022-09-19 14:11:06
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2025-09-11 20:23:23
* @LastEditTime: 2025-09-16 11:16:53
* @FilePath: /lls_program/src/pages/MyFamily/index.vue
* @Description: 我的家庭页面 - 展示用户加入的家庭列表
-->
......@@ -19,7 +19,7 @@
<!-- 当前家庭标记 -->
<view
v-if="family.is_current_family"
class="absolute top-2 right-2 bg-blue-500 text-white text-xs px-2 py-1 rounded-sm z-10"
class="absolute top-2 right-2 bg-[rgba(229,231,235,0.85)] text-blue-500 text-xs px-2 py-1 rounded-sm z-10"
>
当前家庭
</view>
......@@ -27,7 +27,7 @@
<!-- 创建者标记 -->
<view
v-if="family.is_my"
class="absolute top-2 left-2 bg-yellow-500 text-white text-xs px-2 py-1 rounded-sm z-10"
class="absolute top-2 left-2 bg-[rgba(229,231,235,0.85)] text-blue-500 text-xs px-2 py-1 rounded-sm z-10"
>
创建者
</view>
......