160 lines
5.0 KiB
Vue
160 lines
5.0 KiB
Vue
<template>
|
||
<view class="agreement-page">
|
||
|
||
|
||
<!-- 协议内容 -->
|
||
<scroll-view class="agreement-content" scroll-y>
|
||
<view class="content-wrap">
|
||
<view class="title">用户协议</view>
|
||
<view class="date-info">
|
||
<view class="date-item">更新日期:2026年06月18日</view>
|
||
<view class="date-item">生效日期:2026年06月18日</view>
|
||
</view>
|
||
|
||
<view class="section">
|
||
<view class="section-text">
|
||
欢迎使用我们的产品/服务(以下统称"服务")。请您在使用我们的服务前,仔细阅读并充分理解本协议的全部内容。
|
||
一旦您使用我们的服务,即视为您已阅读并同意接受本协议所有条款的约束。
|
||
</view>
|
||
</view>
|
||
|
||
<view class="section">
|
||
<view class="section-title">一、账户注册与使用</view>
|
||
<view class="section-text">
|
||
1. 您在注册账户时应提供真实、准确的个人信息,并确保及时更新。因信息不真实或不准确产生的一切后果由您自行承担。
|
||
</view>
|
||
<view class="section-text">
|
||
2. 您应妥善保管您的账户及密码,因账户或密码泄露导致的一切损失,由您自行承担。
|
||
</view>
|
||
<view class="section-text">
|
||
3. 您不得将账户借给他人使用,每个账户仅供您个人使用。
|
||
</view>
|
||
</view>
|
||
|
||
<view class="section">
|
||
<view class="section-title">二、服务内容</view>
|
||
<view class="section-text">
|
||
1. 我们为您提供物业服务相关的各项功能,包括但不限于:物业缴费、在线报修、访客邀请、小区公告、投诉建议等。
|
||
</view>
|
||
<view class="section-text">
|
||
2. 我们有权根据业务需要对服务内容进行调整、优化,并在应用内公示。
|
||
</view>
|
||
</view>
|
||
|
||
<view class="section">
|
||
<view class="section-title">三、用户行为规范</view>
|
||
<view class="section-text">
|
||
1. 您在使用服务过程中应遵守国家法律法规,不得从事违法违规行为。
|
||
</view>
|
||
<view class="section-text">
|
||
2. 您不得利用服务进行任何危害网络安全的行为,包括但不限于:传播病毒、攻击服务器、非法获取他人信息等。
|
||
</view>
|
||
<view class="section-text">
|
||
3. 如发现任何违法或不当内容,请及时通过应用内的"联系物业"功能向我们举报。
|
||
</view>
|
||
</view>
|
||
|
||
<view class="section">
|
||
<view class="section-title">四、知识产权</view>
|
||
<view class="section-text">
|
||
本服务涉及的软件、界面设计、文字、图片、音频、视频等内容的知识产权归我们所有,未经书面许可,任何人不得以任何方式进行使用、复制、修改或传播。
|
||
</view>
|
||
</view>
|
||
|
||
<view class="section">
|
||
<view class="section-title">五、免责声明</view>
|
||
<view class="section-text">
|
||
1. 因不可抗力或不可预见的原因导致服务中断或数据丢失,我们不承担责任,但将尽力减少因此给您带来的损失。
|
||
</view>
|
||
<view class="section-text">
|
||
2. 您理解并同意,使用本服务可能存在风险,我们不对因使用本服务导致的任何间接损失承担责任。
|
||
</view>
|
||
</view>
|
||
|
||
<view class="section">
|
||
<view class="section-title">六、协议变更</view>
|
||
<view class="section-text">
|
||
我们有权根据需要修改本协议条款,修改后的协议将在应用内公布。如您继续使用服务,即表示您同意接受修改后的协议。
|
||
</view>
|
||
</view>
|
||
|
||
<view class="section">
|
||
<view class="section-title">七、联系我们</view>
|
||
<view class="section-text">
|
||
如果您对本协议有任何疑问或建议,请通过应用内的"联系物业"功能与我们取得联系。
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</scroll-view>
|
||
</view>
|
||
</template>
|
||
|
||
<script setup>
|
||
const goBack = () => {
|
||
uni.navigateBack({ delta: 1 })
|
||
}
|
||
</script>
|
||
|
||
<style scoped>
|
||
.agreement-page {
|
||
height: 100vh;
|
||
display: flex;
|
||
flex-direction: column;
|
||
background-color: #fff;
|
||
}
|
||
|
||
.agreement-content {
|
||
flex: 1;
|
||
overflow-y: auto;
|
||
}
|
||
|
||
.content-wrap {
|
||
padding: 30rpx;
|
||
}
|
||
|
||
.title {
|
||
font-size: 32rpx;
|
||
font-weight: 600;
|
||
text-align: center;
|
||
margin-bottom: 24rpx;
|
||
color: #333;
|
||
}
|
||
|
||
.date-info {
|
||
text-align: center;
|
||
margin-bottom: 40rpx;
|
||
}
|
||
|
||
.date-item {
|
||
font-size: 24rpx;
|
||
color: #999;
|
||
line-height: 1.8;
|
||
}
|
||
|
||
.title {
|
||
font-size: 32rpx;
|
||
font-weight: 600;
|
||
text-align: center;
|
||
margin-bottom: 40rpx;
|
||
color: #333;
|
||
}
|
||
|
||
.section {
|
||
margin-bottom: 30rpx;
|
||
}
|
||
|
||
.section-title {
|
||
font-size: 28rpx;
|
||
font-weight: 500;
|
||
color: #333;
|
||
margin-bottom: 16rpx;
|
||
}
|
||
|
||
.section-text {
|
||
font-size: 26rpx;
|
||
line-height: 1.8;
|
||
color: #666;
|
||
margin-bottom: 12rpx;
|
||
}
|
||
</style>
|