hookehuyr

style(PointsCollector): 更新背景图为正式图片

style(PointsDetail): 替换策略卡片图标为自定义图片并调整样式
......@@ -461,7 +461,8 @@ const handleGoToRewards = () => {
height: 100vh;
// background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
// TODO: 等待正式背景图
background-image: url('https://cdn.ipadbiz.cn/lls_prog/images/bg-test-2.png');
// background-image: url('https://cdn.ipadbiz.cn/lls_prog/images/bg-test-2.png');
background-image: url('https://cdn.ipadbiz.cn/lls_prog/images/dashboard_bg.png');
background-size: cover;
background-position: center bottom;
overflow: hidden;
......
......@@ -22,8 +22,8 @@
<!-- Strategy cards -->
<view class="space-y-3 mb-6">
<view class="bg-white border border-gray-100 p-4 rounded-lg flex items-start shadow-sm">
<view class="w-10 h-10 bg-blue-100 rounded-full flex items-center justify-center mr-3">
<My size="20" class="text-blue-500" />
<view class="flex items-center justify-center mr-3">
<IconFont size="50" name="https://cdn.ipadbiz.cn/lls_prog/images/points_details_1.png" ></IconFont>
</view>
<view>
<h4 class="font-medium">每日同步步数可获得积分</h4>
......@@ -33,8 +33,8 @@
</view>
</view>
<view class="bg-white border border-gray-100 p-4 rounded-lg flex items-start shadow-sm">
<view class="w-10 h-10 bg-blue-100 rounded-full flex items-center justify-center mr-3">
<My size="20" class="text-blue-500" />
<view class="flex items-center justify-center mr-3">
<IconFont size="50" name="https://cdn.ipadbiz.cn/lls_prog/images/points_details_2.png" ></IconFont>
</view>
<view>
<h4 class="font-medium">家人陪伴健步有奖励积分</h4>
......@@ -44,8 +44,8 @@
</view>
</view>
<view class="bg-white border border-gray-100 p-4 rounded-lg flex items-start shadow-sm">
<view class="w-10 h-10 bg-blue-100 rounded-full flex items-center justify-center mr-3">
<My size="20" class="text-blue-500" />
<view class="flex items-center justify-center mr-3">
<IconFont size="50" name="https://cdn.ipadbiz.cn/lls_prog/images/points_details_3.png" ></IconFont>
</view>
<view>
<h4 class="font-medium">邀请家人加入家庭,人数达标奖励</h4>
......@@ -110,7 +110,7 @@ import Taro, { useDidShow } from '@tarojs/taro';
import AppHeader from '../../components/AppHeader.vue';
import BottomNav from '../../components/BottomNav.vue';
import BackToTop from '../../components/BackToTop.vue';
import { Right, My } from '@nutui/icons-vue-taro';
import { Right, My, IconFont } from '@nutui/icons-vue-taro';
import { getPointListAPI } from '../../api/points';
const activeTab = ref('all');
......