2026-05-30 17:07:53 +08:00

62 lines
1.8 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>
<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>