hookehuyr

fix: 修正用户协议页面引号格式并更新奖励分类页面

- 将用户协议中的英文引号替换为中文引号
- 移除奖励分类页面中注释掉的标题和描述代码块
- 更新奖励分类图片链接为CDN地址
1 <!-- 1 <!--
2 * @Date: 2025-08-27 17:47:03 2 * @Date: 2025-08-27 17:47:03
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2025-08-28 16:35:59 4 + * @LastEditTime: 2025-09-05 10:38:16
5 * @FilePath: /lls_program/src/pages/RewardCategories/index.vue 5 * @FilePath: /lls_program/src/pages/RewardCategories/index.vue
6 * @Description: 文件描述 6 * @Description: 文件描述
7 --> 7 -->
...@@ -12,12 +12,12 @@ ...@@ -12,12 +12,12 @@
12 <view class="p-4 space-y-4"> 12 <view class="p-4 space-y-4">
13 <view v-for="(category, index) in categories" :key="category.id" class="rounded-lg overflow-hidden shadow-sm" @click="goToRewards(index)"> 13 <view v-for="(category, index) in categories" :key="category.id" class="rounded-lg overflow-hidden shadow-sm" @click="goToRewards(index)">
14 <view class="relative h-40"> 14 <view class="relative h-40">
15 - <view class="absolute inset-0 bg-black bg-opacity-30 flex flex-col justify-end p-4 text-white" :style="{ background: category.bgColor || 'linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.6))' }"> 15 + <!-- <view class="absolute inset-0 bg-black bg-opacity-30 flex flex-col justify-end p-4 text-white">
16 <h3 class="text-xl font-bold mb-1">{{ category.title }}</h3> 16 <h3 class="text-xl font-bold mb-1">{{ category.title }}</h3>
17 <p class="text-sm text-white text-opacity-90"> 17 <p class="text-sm text-white text-opacity-90">
18 {{ category.description }} 18 {{ category.description }}
19 </p> 19 </p>
20 - </view> 20 + </view> -->
21 <image :src="category.image" :alt="category.title" class="w-full h-full object-cover" :style="{ objectPosition: category.bgPosition || 'center' }" /> 21 <image :src="category.image" :alt="category.title" class="w-full h-full object-cover" :style="{ objectPosition: category.bgPosition || 'center' }" />
22 <view v-if="category.iconUrl" class="absolute top-4 left-4 w-12 h-12 bg-white bg-opacity-90 rounded-full flex items-center justify-center"> 22 <view v-if="category.iconUrl" class="absolute top-4 left-4 w-12 h-12 bg-white bg-opacity-90 rounded-full flex items-center justify-center">
23 <image :src="category.iconUrl" alt="" class="w-8 h-8" /> 23 <image :src="category.iconUrl" alt="" class="w-8 h-8" />
...@@ -33,16 +33,14 @@ ...@@ -33,16 +33,14 @@
33 <script setup> 33 <script setup>
34 import { ref } from 'vue'; 34 import { ref } from 'vue';
35 import Taro from '@tarojs/taro'; 35 import Taro from '@tarojs/taro';
36 -import AppHeader from '../../components/AppHeader.vue';
37 import BottomNav from '../../components/BottomNav.vue'; 36 import BottomNav from '../../components/BottomNav.vue';
38 -import { Right } from '@nutui/icons-vue-taro';
39 37
40 const categories = ref([ 38 const categories = ref([
41 { 39 {
42 id: 'health', 40 id: 'health',
43 title: '银龄健康特色兑换区', 41 title: '银龄健康特色兑换区',
44 description: '南京商圈线下实体店消费积分兑换', 42 description: '南京商圈线下实体店消费积分兑换',
45 - image: "/static/images/rewards/reward-banner.png", 43 + image: "https://cdn.ipadbiz.cn/lls_prog/images/%E6%97%A0logo%E7%A7%AF%E5%88%86%E5%85%91%E6%8D%A2%E5%95%86%E5%9F%8E.png",
46 bgPosition: 'center' 44 bgPosition: 'center'
47 }, 45 },
48 { 46 {
...@@ -57,7 +55,7 @@ const categories = ref([ ...@@ -57,7 +55,7 @@ const categories = ref([
57 id: 'merchants', 55 id: 'merchants',
58 title: '人驻商户多元场景广覆盖', 56 title: '人驻商户多元场景广覆盖',
59 description: '丰富商户积分兑换', 57 description: '丰富商户积分兑换',
60 - image: 'https://images.unsplash.com/photo-1607082349566-187342175e2f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1740&q=80', 58 + image: 'https://cdn.ipadbiz.cn/lls_prog/images/%E6%97%A0logo%E9%93%B6%E9%BE%84%E8%B4%AD%E6%B5%B7%E6%8A%A5.png',
61 bgPosition: 'center', 59 bgPosition: 'center',
62 bgColor: 'linear-gradient(135deg, #007bff, #0056b3)', 60 bgColor: 'linear-gradient(135deg, #007bff, #0056b3)',
63 } 61 }
......
1 <!-- 1 <!--
2 * @Date: 2025-08-27 17:50:27 2 * @Date: 2025-08-27 17:50:27
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2025-09-02 14:26:36 4 + * @LastEditTime: 2025-09-05 10:18:24
5 * @FilePath: /lls_program/src/pages/UserAgreement/index.vue 5 * @FilePath: /lls_program/src/pages/UserAgreement/index.vue
6 * @Description: 文件描述 6 * @Description: 文件描述
7 --> 7 -->
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
16 </view> 16 </view>
17 <view class="text-lg font-semibold mt-6 mb-2">一、协议的范围</view> 17 <view class="text-lg font-semibold mt-6 mb-2">一、协议的范围</view>
18 <view class="text-gray-600 mb-4"> 18 <view class="text-gray-600 mb-4">
19 - 本协议是您与老来赛应用之间关于您使用老来赛应用服务所订立的协议。"老来赛"是指老来赛应用及其开发者。"用户"是指注册、登录、使用本服务的个人或组织。本服务包括老来赛应用及相关网站。 19 + 本协议是您与老来赛应用之间关于您使用老来赛应用服务所订立的协议。“老来赛”是指老来赛应用及其开发者。“用户”是指注册、登录、使用本服务的个人或组织。本服务包括老来赛应用及相关网站。
20 </view> 20 </view>
21 <view class="text-lg font-semibold mt-6 mb-2"> 21 <view class="text-lg font-semibold mt-6 mb-2">
22 二、账号注册与使用 22 二、账号注册与使用
......