Files
memind/miniapp/pages/legal/index/index.wxml
john 048f25f580 feat(miniapp): add privacy consent and legal pages
Show privacy popup on launch, gate login on legal consent, and link
user agreement and privacy policy pages in the mini program.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-12 12:18:54 +08:00

24 lines
1.0 KiB
Plaintext

<view class="page legal-hub-page">
<view class="panel legal-hub-card">
<text class="legal-hub-title">隐私与协议</text>
<text class="legal-hub-desc">
你可以随时查看 TKMind 的用户服务协议与隐私政策,了解我们如何收集、使用与保护你的个人信息。
</text>
<view class="legal-hub-item" bindtap="openTerms">
<text class="legal-hub-item-title">用户服务协议</text>
<text class="legal-hub-item-desc">服务范围、账号使用规范与免责声明</text>
</view>
<view class="legal-hub-item" bindtap="openPrivacy">
<text class="legal-hub-item-title">隐私政策</text>
<text class="legal-hub-item-desc">个人信息收集目的、方式、用途与您的权利</text>
</view>
<view class="legal-hub-item" bindtap="openWechatPrivacy">
<text class="legal-hub-item-title">微信用户隐私保护指引</text>
<text class="legal-hub-item-desc">查看微信平台提供的隐私保护说明</text>
</view>
</view>
</view>