62 lines
1.8 KiB
Vue
62 lines
1.8 KiB
Vue
<template>
|
||
<scroll-view class="agreement-page" scroll-y :show-scrollbar="false">
|
||
<view class="container">
|
||
<view class="title">灵犀学用户协议</view>
|
||
<view class="date">更新日期:2026-05-30</view>
|
||
<view class="content">
|
||
<text>
|
||
欢迎使用灵犀学。为保障您的合法权益,请在使用前仔细阅读本协议。您在注册、登录或使用服务时,
|
||
即视为已阅读并同意本协议全部内容。
|
||
</text>
|
||
<text>1. 服务内容:我们提供学习任务、作业练习、学情分析等功能。</text>
|
||
<text>2. 账号安全:请妥善保管账号信息,因保管不善造成的风险由用户自行承担。</text>
|
||
<text>3. 合规使用:不得利用本服务从事违法违规活动,不得侵犯他人合法权益。</text>
|
||
<text>4. 服务变更:我们可能根据业务需要调整服务内容,并通过合理方式通知。</text>
|
||
<text>5. 联系方式:如有问题请联系平台运营方或学校管理员。</text>
|
||
</view>
|
||
</view>
|
||
</scroll-view>
|
||
</template>
|
||
|
||
<script setup lang="ts">
|
||
</script>
|
||
|
||
<style scoped lang="scss">
|
||
.agreement-page {
|
||
height: 100vh;
|
||
background: #f8fafc;
|
||
}
|
||
|
||
.container {
|
||
padding: 32rpx;
|
||
}
|
||
|
||
.title {
|
||
font-size: 40rpx;
|
||
font-weight: 800;
|
||
color: #0f172a;
|
||
}
|
||
|
||
.date {
|
||
margin-top: 12rpx;
|
||
font-size: 24rpx;
|
||
color: #64748b;
|
||
}
|
||
|
||
.content {
|
||
margin-top: 28rpx;
|
||
background: #ffffff;
|
||
border-radius: 24rpx;
|
||
padding: 28rpx;
|
||
display: flex;
|
||
flex-direction: column;
|
||
gap: 16rpx;
|
||
|
||
text {
|
||
font-size: 28rpx;
|
||
color: #334155;
|
||
line-height: 1.7;
|
||
}
|
||
}
|
||
</style>
|