hookehuyr

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

- 将用户协议中的英文引号替换为中文引号
- 移除奖励分类页面中注释掉的标题和描述代码块
- 更新奖励分类图片链接为CDN地址
<!--
* @Date: 2025-08-27 17:47:03
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2025-08-28 16:35:59
* @LastEditTime: 2025-09-05 10:38:16
* @FilePath: /lls_program/src/pages/RewardCategories/index.vue
* @Description: 文件描述
-->
......@@ -12,12 +12,12 @@
<view class="p-4 space-y-4">
<view v-for="(category, index) in categories" :key="category.id" class="rounded-lg overflow-hidden shadow-sm" @click="goToRewards(index)">
<view class="relative h-40">
<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))' }">
<!-- <view class="absolute inset-0 bg-black bg-opacity-30 flex flex-col justify-end p-4 text-white">
<h3 class="text-xl font-bold mb-1">{{ category.title }}</h3>
<p class="text-sm text-white text-opacity-90">
{{ category.description }}
</p>
</view>
</view> -->
<image :src="category.image" :alt="category.title" class="w-full h-full object-cover" :style="{ objectPosition: category.bgPosition || 'center' }" />
<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">
<image :src="category.iconUrl" alt="" class="w-8 h-8" />
......@@ -33,16 +33,14 @@
<script setup>
import { ref } from 'vue';
import Taro from '@tarojs/taro';
import AppHeader from '../../components/AppHeader.vue';
import BottomNav from '../../components/BottomNav.vue';
import { Right } from '@nutui/icons-vue-taro';
const categories = ref([
{
id: 'health',
title: '银龄健康特色兑换区',
description: '南京商圈线下实体店消费积分兑换',
image: "/static/images/rewards/reward-banner.png",
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",
bgPosition: 'center'
},
{
......@@ -57,7 +55,7 @@ const categories = ref([
id: 'merchants',
title: '人驻商户多元场景广覆盖',
description: '丰富商户积分兑换',
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',
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',
bgPosition: 'center',
bgColor: 'linear-gradient(135deg, #007bff, #0056b3)',
}
......
<!--
* @Date: 2025-08-27 17:50:27
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2025-09-02 14:26:36
* @LastEditTime: 2025-09-05 10:18:24
* @FilePath: /lls_program/src/pages/UserAgreement/index.vue
* @Description: 文件描述
-->
......@@ -16,7 +16,7 @@
</view>
<view class="text-lg font-semibold mt-6 mb-2">一、协议的范围</view>
<view class="text-gray-600 mb-4">
本协议是您与老来赛应用之间关于您使用老来赛应用服务所订立的协议。"老来赛"是指老来赛应用及其开发者。"用户"是指注册、登录、使用本服务的个人或组织。本服务包括老来赛应用及相关网站。
本协议是您与老来赛应用之间关于您使用老来赛应用服务所订立的协议。“老来赛”是指老来赛应用及其开发者。“用户”是指注册、登录、使用本服务的个人或组织。本服务包括老来赛应用及相关网站。
</view>
<view class="text-lg font-semibold mt-6 mb-2">
二、账号注册与使用
......