Files
tk-mini-program/pages/Mine/minecomponents/serviceProtocol.vue
pengxiaolong 7116e57fc3 优化
2025-07-21 22:10:59 +08:00

162 lines
5.5 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<view class="service-protocol">
<view class="bg">
<image class="bgImg" src="https://vv-1317974657.cos.ap-shanghai.myqcloud.com/util/HomeBackground.png" mode="scaleToFill" />
</view>
<view class="Return" @click="onBack">
<image class="ReturnImg" src="https://vv-1317974657.cos.ap-shanghai.myqcloud.com/util/Return.png" mode="scaleToFill" />
</view>
<view class="title">服务协议</view>
<view class="content">
<scroll-view show-scrollbar="false" scroll-y="true" class="scroll">
<view class="serviceProtocolContent">
<view class="spctitlecss">PK 助手 Global用户服务协议</view>
<view class="spccontent">欢迎您使用PK 助手 Global以下简称本小程序在使用本小程序提供的各项服务前请您务必认真阅读并充分理解本协议内容特别是免除或限制责任的条款您的使用行为即视为对本协议全部内容的认可</view>
<view class="spctitle">服务内容</view>
<view class="spccontent">本小程序为用户提供包括但不限于 TikTok PK 约战信息展示约定实时监控排行榜数据分析等辅助功能所有服务仅供用户个人学习交流或辅助使用不构成商业承诺或担保</view>
<view class="spctitle"> 用户使用规范</view>
<view class="spccontent"> 1. 用户不得利用本小程序进行任何违法违规或侵害他人合法权益的行为</view>
<view class="spccontent"> 2. 不得试图干扰破坏小程序正常运行</view>
<view class="spccontent"> 3. 不得逆向分析复制出售转让或非法传播小程序内容与技术</view>
<view class="spctitle"> 隐私与数据保护</view>
<view class="spccontent">我们高度重视您的隐私权本小程序可能会收集部分必要的设备信息或行为数据如使用频率操作日志仅用于优化产品功能我们承诺不收集任何个人敏感信息如身份证号支付信息联系人等不对外披露或转让任何用户数据除非法律法规要求</view>
<view class="spctitle"> 免责声明</view>
<view class="spccontent">1. 本小程序作为辅助工具不对第三方平台的可用性稳定性数据准确性做出保证</view>
<view class="spccontent">2. 如因网络平台变动设备问题等不可控因素造成服务中断或异常开发者不承担责任</view>
<view class="spccontent">3. 对于用户因使用本程序产生的任何直接或间接损失开发者不承担法律责任</view>
<view class="spctitle"> 知识产权</view>
<view class="spccontent">本小程序及其所有内容包括界面图标代码文案等归开发者所有受相关法律保护未经授权禁止任何形式的复制传播修改或商业使用</view>
<view class="spctitle"> 协议修改与终止</view>
<view class="spccontent">我们有权根据需要不时更新本协议并以适当方式通知用户修改后的协议一经公布即视为生效若您继续使用本程序则视为接受修改内容如您不同意本协议或其任何修改内容您应立即停止使用</view>
<view class="spctitle"> 适用法律与争议解决</view>
<view class="spccontent">本协议的订立执行与解释及争议的解决均应适用中华人民共和国法律因本协议产生的任何争议双方应友好协商解决协商不成的提交开发者所在地人民法院诉讼解决</view>
</view>
</scroll-view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
title: "Hello",
};
},
onLoad() {
// 页面加载时执行
},
onShareAppMessage(res) {
if (res.from === 'menu') {
return {
title: '分享',
path: "/pages/Home/Home"
}
}
},
methods: {
onBack() {
// 返回上一页
wx.navigateBack({
delta: 1,
});
},
},
};
</script>
<style scoped>
.bg {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: -1;
}
.bgImg {
width: 100%;
height: 100%;
}
.Return {
position: absolute;
top: 110rpx;
left: 35rpx;
width: 46rpx;
height: 46rpx;
}
.title {
position: absolute;
top: 120rpx;
left: 335rpx;
font-size: 34rpx;
color: #100e0f;
font-weight: bold;
}
.ReturnImg {
width: 100%;
height: 100%;
}
/* 建设中 */
.content{
position: absolute;
top: 250rpx;
left: 0rpx;
right: 0rpx;
bottom: 100rpx;
}
.building{
width: 100%;
height: 90%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.buildingTitle{
font-size: 40rpx;
color: #999999;
font-weight: bold;
text-align: center;
margin-top: 50rpx;
}
.scroll{
width: 100%;
height: 100%;
}
.scroll ::-webkit-scrollbar {
width: 0;
height: 0;
color: transparent;
display: none;
}
.serviceProtocolContent{
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
}
.spctitlecss{
font-size: 30rpx;
color: #100e0f;
font-weight: bold;
text-align: center;
margin-bottom: 40rpx;
}
.spctitle{
width: 650rpx;
font-size: 24rpx;
color: #100e0f;
font-weight: bold;
margin-top: 20rpx;
}
.spccontent{
width: 650rpx;
font-size: 20rpx;
color: #666666;
text-align: justify;
margin-top: 10rpx;
}
</style>