Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Hooke
/
lls_program
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
hookehuyr
2025-09-16 11:18:52 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
3adbebda2673f6a136d7b4bd3db4ce0db83323af
3adbebda
1 parent
da4f77dd
style(components): 更新家庭页面和积分显示组件的样式
- 修改家庭页面中当前家庭和创建者标签的背景和文字颜色 - 更新积分显示组件的背景图配置
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
6 deletions
src/components/TotalPointsDisplay.vue
src/pages/MyFamily/index.vue
src/components/TotalPointsDisplay.vue
View file @
3adbebd
...
...
@@ -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 {
...
...
src/pages/MyFamily/index.vue
View file @
3adbebd
<!--
* @Date: 2022-09-19 14:11:06
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2025-09-1
1 20:23:2
3
* @LastEditTime: 2025-09-1
6 11:16:5
3
* @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>
...
...
Please
register
or
login
to post a comment