hookehuyr

feat(ui): 优化多设备适配和文字大小一致性

为Profile页面添加iPad设备检测和响应式UI调整
统一PointsDetail、PrivacyPolicy和UserAgreement页面的文字大小为text-sm
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
26 <IconFont size="50" name="https://cdn.ipadbiz.cn/lls_prog/images/points_details_1.png" ></IconFont> 26 <IconFont size="50" name="https://cdn.ipadbiz.cn/lls_prog/images/points_details_1.png" ></IconFont>
27 </view> 27 </view>
28 <view> 28 <view>
29 - <h4 class="font-medium">每日同步步数可获得积分</h4> 29 + <h4 class="font-medium text-sm">每日同步步数可获得积分</h4>
30 <p class="text-sm text-gray-600"> 30 <p class="text-sm text-gray-600">
31 每100步可兑换1积分,每日上限200积分 31 每100步可兑换1积分,每日上限200积分
32 </p> 32 </p>
...@@ -37,7 +37,7 @@ ...@@ -37,7 +37,7 @@
37 <IconFont size="50" name="https://cdn.ipadbiz.cn/lls_prog/images/points_details_2.png" ></IconFont> 37 <IconFont size="50" name="https://cdn.ipadbiz.cn/lls_prog/images/points_details_2.png" ></IconFont>
38 </view> 38 </view>
39 <view> 39 <view>
40 - <h4 class="font-medium">家人陪伴健步有奖励积分</h4> 40 + <h4 class="font-medium text-sm">家人陪伴健步有奖励积分</h4>
41 <p class="text-sm text-gray-600"> 41 <p class="text-sm text-gray-600">
42 一起健步晒合影每天可获得额外100积分 42 一起健步晒合影每天可获得额外100积分
43 </p> 43 </p>
...@@ -48,7 +48,7 @@ ...@@ -48,7 +48,7 @@
48 <IconFont size="50" name="https://cdn.ipadbiz.cn/lls_prog/images/points_details_3.png" ></IconFont> 48 <IconFont size="50" name="https://cdn.ipadbiz.cn/lls_prog/images/points_details_3.png" ></IconFont>
49 </view> 49 </view>
50 <view> 50 <view>
51 - <h4 class="font-medium">邀请家人加入家庭,人数达标奖励</h4> 51 + <h4 class="font-medium text-sm">邀请家人加入家庭,人数达标奖励</h4>
52 <p class="text-sm text-gray-600"> 52 <p class="text-sm text-gray-600">
53 邀请的家人达到5位,获得500奖励积分 53 邀请的家人达到5位,获得500奖励积分
54 </p> 54 </p>
...@@ -59,13 +59,13 @@ ...@@ -59,13 +59,13 @@
59 <!-- <nut-sticky top="0"> --> 59 <!-- <nut-sticky top="0"> -->
60 <view class="border-b border-gray-200 bg-white"> 60 <view class="border-b border-gray-200 bg-white">
61 <view class="flex space-x-8"> 61 <view class="flex space-x-8">
62 - <view :class="['py-3 font-medium', activeTab === 'all' ? 'text-blue-500 border-b-2 border-blue-500' : 'text-gray-500']" @click="activeTab = 'all'"> 62 + <view :class="['py-3 font-medium text-sm', activeTab === 'all' ? 'text-blue-500 border-b-2 border-blue-500' : 'text-gray-500']" @click="activeTab = 'all'">
63 全部 63 全部
64 </view> 64 </view>
65 - <view :class="['py-3 font-medium', activeTab === 'earned' ? 'text-blue-500 border-b-2 border-blue-500' : 'text-gray-500']" @click="activeTab = 'earned'"> 65 + <view :class="['py-3 font-medium text-sm', activeTab === 'earned' ? 'text-blue-500 border-b-2 border-blue-500' : 'text-gray-500']" @click="activeTab = 'earned'">
66 已发放 66 已发放
67 </view> 67 </view>
68 - <view :class="['py-3 font-medium', activeTab === 'spent' ? 'text-blue-500 border-b-2 border-blue-500' : 'text-gray-500']" @click="activeTab = 'spent'"> 68 + <view :class="['py-3 font-medium text-sm', activeTab === 'spent' ? 'text-blue-500 border-b-2 border-blue-500' : 'text-gray-500']" @click="activeTab = 'spent'">
69 已消耗 69 已消耗
70 </view> 70 </view>
71 </view> 71 </view>
...@@ -82,10 +82,10 @@ ...@@ -82,10 +82,10 @@
82 <view v-if="pointsHistory && pointsHistory.length > 0"> 82 <view v-if="pointsHistory && pointsHistory.length > 0">
83 <view v-for="item in pointsHistory" :key="item.id" class="py-4 border-b border-gray-100 flex justify-between"> 83 <view v-for="item in pointsHistory" :key="item.id" class="py-4 border-b border-gray-100 flex justify-between">
84 <view> 84 <view>
85 - <h4 class="font-medium">{{ item.title }}</h4> 85 + <h4 class="font-medium text-sm">{{ item.title }}</h4>
86 <p class="text-sm text-gray-500">{{ item.date }}</p> 86 <p class="text-sm text-gray-500">{{ item.date }}</p>
87 </view> 87 </view>
88 - <span :class="['font-medium', item.type === 'earned' ? 'text-green-500' : 'text-red-500']"> 88 + <span :class="['font-medium text-sm', item.type === 'earned' ? 'text-green-500' : 'text-red-500']">
89 {{ item.type === 'earned' ? '+' : '-' }} 89 {{ item.type === 'earned' ? '+' : '-' }}
90 {{ item.points }} 90 {{ item.points }}
91 </span> 91 </span>
......
1 <!-- 1 <!--
2 * @Date: 2025-08-27 17:49:58 2 * @Date: 2025-08-27 17:49:58
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2025-09-17 13:57:30 4 + * @LastEditTime: 2025-09-20 10:18:43
5 * @FilePath: /lls_program/src/pages/PrivacyPolicy/index.vue 5 * @FilePath: /lls_program/src/pages/PrivacyPolicy/index.vue
6 * @Description: 文件描述 6 * @Description: 文件描述
7 --> 7 -->
...@@ -11,63 +11,63 @@ ...@@ -11,63 +11,63 @@
11 <view class="flex-1 px-4 py-6 pb-20"> 11 <view class="flex-1 px-4 py-6 pb-20">
12 <view class="max-w-none"> 12 <view class="max-w-none">
13 <view class="text-xl font-bold mb-4">SH老来赛 小程序隐私保护指引</view> 13 <view class="text-xl font-bold mb-4">SH老来赛 小程序隐私保护指引</view>
14 - <view class="text-gray-600 mb-4"> 14 + <view class="text-gray-600 mb-4 text-sm">
15 本指引是SH老来赛小程序开发者 上海公益新媒体中心(以下简称“开发者”)为处理你的个人信息而制定。 15 本指引是SH老来赛小程序开发者 上海公益新媒体中心(以下简称“开发者”)为处理你的个人信息而制定。
16 </view> 16 </view>
17 17
18 <view class="text-lg font-semibold mt-6 mb-2">开发者处理的信息</view> 18 <view class="text-lg font-semibold mt-6 mb-2">开发者处理的信息</view>
19 - <view class="text-gray-600 mb-4"> 19 + <view class="text-gray-600 mb-4 text-sm">
20 根据法律规定,开发者仅处理实现小程序功能所必要的信息。 20 根据法律规定,开发者仅处理实现小程序功能所必要的信息。
21 </view> 21 </view>
22 - <view class="text-gray-600 mb-4"> 22 + <view class="text-gray-600 mb-4 text-sm">
23 开发者将在获取你的明示同意后,收集你的微信运动步数,用途是【用户互动】; 23 开发者将在获取你的明示同意后,收集你的微信运动步数,用途是【用户互动】;
24 </view> 24 </view>
25 - <view class="text-gray-600 mb-4"> 25 + <view class="text-gray-600 mb-4 text-sm">
26 开发者将在获取你的明示同意后,收集你的位置信息,用途是【用户互动】。 26 开发者将在获取你的明示同意后,收集你的位置信息,用途是【用户互动】。
27 </view> 27 </view>
28 28
29 <view class="text-lg font-semibold mt-6 mb-2">你的权益</view> 29 <view class="text-lg font-semibold mt-6 mb-2">你的权益</view>
30 - <view class="text-gray-600 mb-4"> 30 + <view class="text-gray-600 mb-4 text-sm">
31 关于你的个人信息,你可以通过以下方式与开发者联系,行使查阅、复制、更正、删除等法定权利。 31 关于你的个人信息,你可以通过以下方式与开发者联系,行使查阅、复制、更正、删除等法定权利。
32 </view> 32 </view>
33 - <view class="text-gray-600 mb-4"> 33 + <view class="text-gray-600 mb-4 text-sm">
34 若你在小程序中注册了账号,你可以通过以下方式与开发者联系,申请注销你在小程序中使用的账号。在受理你的申请后,开发者承诺在十五个工作日内完成核查和处理,并按照法律法规要求处理你的相关信息。 34 若你在小程序中注册了账号,你可以通过以下方式与开发者联系,申请注销你在小程序中使用的账号。在受理你的申请后,开发者承诺在十五个工作日内完成核查和处理,并按照法律法规要求处理你的相关信息。
35 </view> 35 </view>
36 - <view class="text-gray-600 mb-4 font-semibold"> 36 + <view class="text-gray-600 mb-4 font-semibold text-sm">
37 电话:021-61517073 37 电话:021-61517073
38 </view> 38 </view>
39 39
40 <view class="text-lg font-semibold mt-6 mb-2">开发者对信息的存储</view> 40 <view class="text-lg font-semibold mt-6 mb-2">开发者对信息的存储</view>
41 - <view class="text-gray-600 mb-4"> 41 + <view class="text-gray-600 mb-4 text-sm">
42 开发者承诺,除法律法规另有规定外,开发者对你的信息的保存期限应当为实现处理目的所必要的最短时间。 42 开发者承诺,除法律法规另有规定外,开发者对你的信息的保存期限应当为实现处理目的所必要的最短时间。
43 </view> 43 </view>
44 44
45 <view class="text-lg font-semibold mt-6 mb-2">信息的使用规则</view> 45 <view class="text-lg font-semibold mt-6 mb-2">信息的使用规则</view>
46 - <view class="text-gray-600 mb-4"> 46 + <view class="text-gray-600 mb-4 text-sm">
47 开发者将会在本指引所明示的用途内使用收集的信息 47 开发者将会在本指引所明示的用途内使用收集的信息
48 </view> 48 </view>
49 - <view class="text-gray-600 mb-4"> 49 + <view class="text-gray-600 mb-4 text-sm">
50 如开发者使用你的信息超出本指引目的或合理范围,开发者必须在变更使用目的或范围前,再次以弹窗或其他适当的方式告知并征得你的明示同意。 50 如开发者使用你的信息超出本指引目的或合理范围,开发者必须在变更使用目的或范围前,再次以弹窗或其他适当的方式告知并征得你的明示同意。
51 </view> 51 </view>
52 52
53 <view class="text-lg font-semibold mt-6 mb-2">信息对外提供</view> 53 <view class="text-lg font-semibold mt-6 mb-2">信息对外提供</view>
54 - <view class="text-gray-600 mb-4"> 54 + <view class="text-gray-600 mb-4 text-sm">
55 开发者承诺,不会主动共享或转让你的信息至任何第三方,如存在确需共享或转让时,开发者应当直接征得或确认第三方征得你的单独同意。 55 开发者承诺,不会主动共享或转让你的信息至任何第三方,如存在确需共享或转让时,开发者应当直接征得或确认第三方征得你的单独同意。
56 </view> 56 </view>
57 - <view class="text-gray-600 mb-4"> 57 + <view class="text-gray-600 mb-4 text-sm">
58 开发者承诺,不会对外公开披露你的信息,如必须公开披露时,开发者应当向你告知公开披露的目的、披露信息的类型及可能涉及的信息,并征得你的单独同意。 58 开发者承诺,不会对外公开披露你的信息,如必须公开披露时,开发者应当向你告知公开披露的目的、披露信息的类型及可能涉及的信息,并征得你的单独同意。
59 </view> 59 </view>
60 - <view class="text-gray-600 mb-4"> 60 + <view class="text-gray-600 mb-4 text-sm">
61 你认为开发者未遵守上述约定,或有其他的投诉建议、或未成年人个人信息保护相关问题,可通过以下方式与开发者联系;或者向微信进行投诉。 61 你认为开发者未遵守上述约定,或有其他的投诉建议、或未成年人个人信息保护相关问题,可通过以下方式与开发者联系;或者向微信进行投诉。
62 </view> 62 </view>
63 - <view class="text-gray-600 mb-4 font-semibold"> 63 + <view class="text-gray-600 mb-4 font-semibold text-sm">
64 电话:021-61517073 64 电话:021-61517073
65 </view> 65 </view>
66 66
67 - <view class="text-center text-gray-600 mt-8 mb-4"> 67 + <view class="text-center text-gray-600 mt-8 mb-4 text-sm">
68 更新日期:2025-09-16 68 更新日期:2025-09-16
69 </view> 69 </view>
70 - <view class="text-center text-gray-600 mb-4"> 70 + <view class="text-center text-gray-600 mb-4 text-sm">
71 本小程序已对用户的信息处理进行了逐一、如实的说明,并保证如有变更会及时更新指引。 71 本小程序已对用户的信息处理进行了逐一、如实的说明,并保证如有变更会及时更新指引。
72 </view> 72 </view>
73 73
......
1 <!-- 1 <!--
2 * @Date: 2025-08-27 17:47:46 2 * @Date: 2025-08-27 17:47:46
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2025-09-19 23:01:49 4 + * @LastEditTime: 2025-09-20 10:19:41
5 * @FilePath: /lls_program/src/pages/Profile/index.vue 5 * @FilePath: /lls_program/src/pages/Profile/index.vue
6 * @Description: 文件描述 6 * @Description: 文件描述
7 --> 7 -->
...@@ -28,11 +28,11 @@ ...@@ -28,11 +28,11 @@
28 <view class="space-y-px"> 28 <view class="space-y-px">
29 <template v-for="(item, index) in menuItems" :key="item.id"> 29 <template v-for="(item, index) in menuItems" :key="item.id">
30 <view class="flex items-center py-4 cursor-pointer" @click="item.onClick"> 30 <view class="flex items-center py-4 cursor-pointer" @click="item.onClick">
31 - <view :class="['w-10 h-10', item.color, 'rounded-full flex items-center justify-center mr-4']"> 31 + <view :class="[iconContainerSize, item.color, 'rounded-full flex items-center justify-center mr-4']">
32 - <component :is="item.icon" size="20" class="text-white" /> 32 + <component :is="item.icon" :size="iconSize" class="text-white" />
33 </view> 33 </view>
34 - <span class="flex-1 text-lg">{{ item.label }}</span> 34 + <span :class="['flex-1', textSize]">{{ item.label }}</span>
35 - <Right size="20" class="text-gray-400" /> 35 + <Right :size="arrowIconSize" class="text-gray-400" />
36 </view> 36 </view>
37 <view v-if="index < menuItems.length - 1" class="h-px bg-gray-100" /> 37 <view v-if="index < menuItems.length - 1" class="h-px bg-gray-100" />
38 </template> 38 </template>
...@@ -44,7 +44,7 @@ ...@@ -44,7 +44,7 @@
44 </template> 44 </template>
45 45
46 <script setup> 46 <script setup>
47 -import { ref, shallowRef } from 'vue'; 47 +import { ref, shallowRef, computed, onMounted } from 'vue';
48 import Taro, { useDidShow } from '@tarojs/taro'; 48 import Taro, { useDidShow } from '@tarojs/taro';
49 import BottomNav from '../../components/BottomNav.vue'; 49 import BottomNav from '../../components/BottomNav.vue';
50 import { My, Shop3, Cart, Message, Tips, Right, Ask } from '@nutui/icons-vue-taro'; 50 import { My, Shop3, Cart, Message, Tips, Right, Ask } from '@nutui/icons-vue-taro';
...@@ -53,6 +53,69 @@ const defaultAvatar = 'https://cdn.ipadbiz.cn/mlaj/images/icon_1.jpeg' ...@@ -53,6 +53,69 @@ const defaultAvatar = 'https://cdn.ipadbiz.cn/mlaj/images/icon_1.jpeg'
53 // 获取接口信息 53 // 获取接口信息
54 import { getUserProfileAPI } from '@/api/user' 54 import { getUserProfileAPI } from '@/api/user'
55 55
56 +// 系统信息
57 +const systemInfo = ref({});
58 +
59 +/**
60 + * 获取系统信息
61 + */
62 +const getSystemInfo = () => {
63 + try {
64 + const info = Taro.getWindowInfo();
65 + systemInfo.value = info;
66 + } catch (error) {
67 + console.error('获取系统信息失败:', error);
68 + }
69 +};
70 +
71 +/**
72 + * 检测是否为 iPad 类型设备
73 + */
74 +const isTabletDevice = computed(() => {
75 + if (!systemInfo.value.screenWidth) {
76 + return false;
77 + }
78 +
79 + const { screenWidth, screenHeight } = systemInfo.value;
80 + const screenRatio = screenWidth / screenHeight;
81 +
82 + // iPad 类型设备通常屏幕比例在 0.7-0.8 之间(4:3 约为 0.75)
83 + // 普通手机设备比例通常在 0.4-0.6 之间
84 + return screenRatio > 0.65;
85 +});
86 +
87 +/**
88 + * 计算图标容器尺寸类名
89 + */
90 +const iconContainerSize = computed(() => {
91 + // iPad 类型设备使用更大的容器尺寸
92 + return isTabletDevice.value ? 'w-14 h-14' : 'w-10 h-10';
93 +});
94 +
95 +/**
96 + * 计算图标尺寸
97 + */
98 +const iconSize = computed(() => {
99 + // iPad 类型设备使用更大的图标尺寸
100 + return isTabletDevice.value ? '48' : '20';
101 +});
102 +
103 +/**
104 + * 计算文字尺寸类名
105 + */
106 +const textSize = computed(() => {
107 + // iPad 类型设备使用更大的文字尺寸
108 + return isTabletDevice.value ? 'text-xl' : 'text-lg';
109 +});
110 +
111 +/**
112 + * 计算右箭头图标尺寸
113 + */
114 +const arrowIconSize = computed(() => {
115 + // iPad 类型设备使用更大的箭头图标尺寸
116 + return isTabletDevice.value ? '24' : '20';
117 +});
118 +
56 const allMenuItems = [ 119 const allMenuItems = [
57 { 120 {
58 id: 'family', 121 id: 'family',
...@@ -112,6 +175,9 @@ const goToEditProfile = () => { ...@@ -112,6 +175,9 @@ const goToEditProfile = () => {
112 }; 175 };
113 176
114 const initPageData = async () => { 177 const initPageData = async () => {
178 + // 获取系统信息
179 + getSystemInfo();
180 +
115 // 获取用户信息 181 // 获取用户信息
116 const { code, data } = await getUserProfileAPI() 182 const { code, data } = await getUserProfileAPI()
117 if (code) { 183 if (code) {
......
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-17 13:56:49 4 + * @LastEditTime: 2025-09-20 10:16:55
5 * @FilePath: /lls_program/src/pages/UserAgreement/index.vue 5 * @FilePath: /lls_program/src/pages/UserAgreement/index.vue
6 * @Description: 文件描述 6 * @Description: 文件描述
7 --> 7 -->
...@@ -11,28 +11,28 @@ ...@@ -11,28 +11,28 @@
11 <view class="flex-1 px-4 py-6 pb-20"> 11 <view class="flex-1 px-4 py-6 pb-20">
12 <view class="max-w-none"> 12 <view class="max-w-none">
13 <view class="text-xl font-bold mb-4">SH老来赛用户协议</view> 13 <view class="text-xl font-bold mb-4">SH老来赛用户协议</view>
14 - <view class="text-gray-600 mb-4"> 14 + <view class="text-gray-600 mb-4 text-sm">
15 欢迎您使用SH老来赛应用服务。在使用SH老来赛应用服务之前,请您务必仔细阅读并透彻理解本用户协议。 15 欢迎您使用SH老来赛应用服务。在使用SH老来赛应用服务之前,请您务必仔细阅读并透彻理解本用户协议。
16 </view> 16 </view>
17 17
18 <view class="text-lg font-semibold mt-6 mb-2">一、协议的范围</view> 18 <view class="text-lg font-semibold mt-6 mb-2">一、协议的范围</view>
19 - <view class="text-gray-600 mb-4"> 19 + <view class="text-gray-600 mb-4 text-sm">
20 本协议是您与SH老来赛应用之间关于您使用SH老来赛应用服务所订立的协议。“SH老来赛” 是指SH老来赛应用及其开发者。“用户” 是指注册、登录、使用本服务的个人或组织。 20 本协议是您与SH老来赛应用之间关于您使用SH老来赛应用服务所订立的协议。“SH老来赛” 是指SH老来赛应用及其开发者。“用户” 是指注册、登录、使用本服务的个人或组织。
21 </view> 21 </view>
22 22
23 <view class="text-lg font-semibold mt-6 mb-2">二、账号注册与使用</view> 23 <view class="text-lg font-semibold mt-6 mb-2">二、账号注册与使用</view>
24 - <view class="text-gray-600 mb-4"> 24 + <view class="text-gray-600 mb-4 text-sm">
25 • 用户在使用本服务前需要注册一个SH老来赛账号。SH老来赛账号应当使用微信号绑定注册,请用户使用尚未与SH老来赛账号绑定的微信号,以及未被SH老来赛根据本协议封禁的微信号注册SH老来赛账号。 25 • 用户在使用本服务前需要注册一个SH老来赛账号。SH老来赛账号应当使用微信号绑定注册,请用户使用尚未与SH老来赛账号绑定的微信号,以及未被SH老来赛根据本协议封禁的微信号注册SH老来赛账号。
26 </view> 26 </view>
27 - <view class="text-gray-600 mb-4"> 27 + <view class="text-gray-600 mb-4 text-sm">
28 • 用户应当对账号信息的真实性、合法性、有效性承担全部责任。用户不得冒充他人或利用他人的名义注册账号,不得使用可能侵犯他人合法权益的账号名称。 28 • 用户应当对账号信息的真实性、合法性、有效性承担全部责任。用户不得冒充他人或利用他人的名义注册账号,不得使用可能侵犯他人合法权益的账号名称。
29 </view> 29 </view>
30 30
31 <view class="text-lg font-semibold mt-6 mb-2">三、用户行为规范</view> 31 <view class="text-lg font-semibold mt-6 mb-2">三、用户行为规范</view>
32 - <view class="text-gray-600 mb-4"> 32 + <view class="text-gray-600 mb-4 text-sm">
33 • 用户在使用SH老来赛服务时,必须遵守中华人民共和国相关法律法规的规定,不得利用本服务进行任何违法或不正当的活动,包括但不限于: 33 • 用户在使用SH老来赛服务时,必须遵守中华人民共和国相关法律法规的规定,不得利用本服务进行任何违法或不正当的活动,包括但不限于:
34 </view> 34 </view>
35 - <view class="mb-4 text-gray-600 ml-4"> 35 + <view class="mb-4 text-gray-600 ml-4 text-sm">
36 <view class="flex flex-row mb-2"><view class="mr-2">•</view><view>发布、传送、传播、储存违反国家法律法规禁止的内容</view></view> 36 <view class="flex flex-row mb-2"><view class="mr-2">•</view><view>发布、传送、传播、储存违反国家法律法规禁止的内容</view></view>
37 <view class="flex flex-row mb-2"><view class="mr-2">•</view><view>发布、传送、传播、储存侵害他人名誉权、肖像权、知识产权、商业秘密等合法权利的内容</view></view> 37 <view class="flex flex-row mb-2"><view class="mr-2">•</view><view>发布、传送、传播、储存侵害他人名誉权、肖像权、知识产权、商业秘密等合法权利的内容</view></view>
38 <view class="flex flex-row mb-2"><view class="mr-2">•</view><view>虚构事实、隐瞒真相以误导、欺骗他人</view></view> 38 <view class="flex flex-row mb-2"><view class="mr-2">•</view><view>虚构事实、隐瞒真相以误导、欺骗他人</view></view>
...@@ -40,48 +40,48 @@ ...@@ -40,48 +40,48 @@
40 </view> 40 </view>
41 41
42 <view class="text-lg font-semibold mt-6 mb-2">四、服务变更、中断或终止</view> 42 <view class="text-lg font-semibold mt-6 mb-2">四、服务变更、中断或终止</view>
43 - <view class="text-gray-600 mb-4"> 43 + <view class="text-gray-600 mb-4 text-sm">
44 • 鉴于网络服务的特殊性,SH老来赛有权根据实际情况随时变更、中断或终止部分或全部的服务而无需对用户或第三方负责。 44 • 鉴于网络服务的特殊性,SH老来赛有权根据实际情况随时变更、中断或终止部分或全部的服务而无需对用户或第三方负责。
45 </view> 45 </view>
46 - <view class="text-gray-600 mb-4"> 46 + <view class="text-gray-600 mb-4 text-sm">
47 • 如发生下列任何一种情形,SH老来赛有权随时中断或终止向用户提供本协议项下的服务而无需对用户或任何第三方承担责任: 47 • 如发生下列任何一种情形,SH老来赛有权随时中断或终止向用户提供本协议项下的服务而无需对用户或任何第三方承担责任:
48 </view> 48 </view>
49 - <view class="mb-4 text-gray-600 ml-4"> 49 + <view class="mb-4 text-gray-600 ml-4 text-sm">
50 <view class="flex flex-row mb-2"><view class="mr-2">•</view><view>用户提供的个人资料不真实</view></view> 50 <view class="flex flex-row mb-2"><view class="mr-2">•</view><view>用户提供的个人资料不真实</view></view>
51 <view class="flex flex-row mb-2"><view class="mr-2">•</view><view>用户违反本协议中规定的使用规则</view></view> 51 <view class="flex flex-row mb-2"><view class="mr-2">•</view><view>用户违反本协议中规定的使用规则</view></view>
52 <view class="flex flex-row"><view class="mr-2">•</view><view>用户在使用SH老来赛服务时有违法行为</view></view> 52 <view class="flex flex-row"><view class="mr-2">•</view><view>用户在使用SH老来赛服务时有违法行为</view></view>
53 </view> 53 </view>
54 54
55 <view class="text-lg font-semibold mt-6 mb-2">五、免责声明</view> 55 <view class="text-lg font-semibold mt-6 mb-2">五、免责声明</view>
56 - <view class="text-gray-600 mb-4"> 56 + <view class="text-gray-600 mb-4 text-sm">
57 • 用户明确同意其使用SH老来赛服务所存在的风险将完全由其自己承担;因其使用SH老来赛服务而产生的一切后果也由其自己承担,SH老来赛对用户不承担任何责任。 57 • 用户明确同意其使用SH老来赛服务所存在的风险将完全由其自己承担;因其使用SH老来赛服务而产生的一切后果也由其自己承担,SH老来赛对用户不承担任何责任。
58 </view> 58 </view>
59 - <view class="text-gray-600 mb-4"> 59 + <view class="text-gray-600 mb-4 text-sm">
60 • SH老来赛不保证服务一定能满足用户的要求,也不保证服务不会中断,对服务的及时性、安全性、准确性也都不作保证。 60 • SH老来赛不保证服务一定能满足用户的要求,也不保证服务不会中断,对服务的及时性、安全性、准确性也都不作保证。
61 </view> 61 </view>
62 62
63 <view class="text-lg font-semibold mt-6 mb-2">六、协议修改</view> 63 <view class="text-lg font-semibold mt-6 mb-2">六、协议修改</view>
64 - <view class="text-gray-600 mb-4"> 64 + <view class="text-gray-600 mb-4 text-sm">
65 • SH老来赛有权随时修改本协议的任何条款,一旦本协议的内容发生变动,SH老来赛将会在应用内更新并提示修改内容。 65 • SH老来赛有权随时修改本协议的任何条款,一旦本协议的内容发生变动,SH老来赛将会在应用内更新并提示修改内容。
66 </view> 66 </view>
67 - <view class="text-gray-600 mb-4"> 67 + <view class="text-gray-600 mb-4 text-sm">
68 • 如果不同意SH老来赛对本协议相关条款所做的修改,用户有权停止使用SH老来赛服务。如果用户继续使用服务,则视为用户接受SH老来赛对本协议相关条款所做的修改。 68 • 如果不同意SH老来赛对本协议相关条款所做的修改,用户有权停止使用SH老来赛服务。如果用户继续使用服务,则视为用户接受SH老来赛对本协议相关条款所做的修改。
69 </view> 69 </view>
70 70
71 <view class="text-lg font-semibold mt-6 mb-2">七、通知送达</view> 71 <view class="text-lg font-semibold mt-6 mb-2">七、通知送达</view>
72 - <view class="text-gray-600 mb-4"> 72 + <view class="text-gray-600 mb-4 text-sm">
73 • 本协议项下SH老来赛对于用户所有的通知均可通过网页公告、微信通知等方式进行。 73 • 本协议项下SH老来赛对于用户所有的通知均可通过网页公告、微信通知等方式进行。
74 </view> 74 </view>
75 75
76 <view class="text-lg font-semibold mt-6 mb-2">八、法律适用与争议解决</view> 76 <view class="text-lg font-semibold mt-6 mb-2">八、法律适用与争议解决</view>
77 - <view class="text-gray-600 mb-4"> 77 + <view class="text-gray-600 mb-4 text-sm">
78 • 本协议的订立、执行和解释及争议的解决均应适用中华人民共和国法律。 78 • 本协议的订立、执行和解释及争议的解决均应适用中华人民共和国法律。
79 </view> 79 </view>
80 - <view class="text-gray-600 mb-4"> 80 + <view class="text-gray-600 mb-4 text-sm">
81 • 如双方就本协议内容或其执行发生任何争议,双方应尽量友好协商解决;协商不成时,任何一方均可向SH老来赛所在地的人民法院提起诉讼。 81 • 如双方就本协议内容或其执行发生任何争议,双方应尽量友好协商解决;协商不成时,任何一方均可向SH老来赛所在地的人民法院提起诉讼。
82 </view> 82 </view>
83 83
84 - <view class="text-center text-gray-600 mt-8 mb-4"> 84 + <view class="text-center text-gray-600 mt-8 mb-4 text-sm">
85 本协议最终解释权归SH老来赛所有。 85 本协议最终解释权归SH老来赛所有。
86 </view> 86 </view>
87 </view> 87 </view>
......