findme-miniprogram-frontend/subpackages/settings/about/about.wxml
2025-12-27 17:16:03 +08:00

36 lines
No EOL
1.2 KiB
Text

<!-- pages/settings/about/about.wxml -->
<view class="about-container">
<!-- 头部Logo区域 -->
<view class="header">
<image class="app-logo" src="/images/findme-logo.png" mode="aspectFit"></image>
<text class="app-name">FindMe</text>
<text class="app-version">FindMe 1.0.0</text>
</view>
<!-- 功能入口 -->
<view class="function-list">
<view class="function-item" bindtap="checkUpdate">
<text class="function-text">检查更新</text>
<view class="arrow-right"></view>
</view>
<view class="function-item" bindtap="showUpdateLog">
<text class="function-text">更新日志</text>
<view class="arrow-right"></view>
</view>
</view>
<!-- 发送日志按钮 -->
<button class="send-log-btn" bindtap="sendLog">发送日志给FINDME</button>
<!-- 链接区域 -->
<view class="links">
<text class="link-item" bindtap="openPrivacyPolicy">《Findme服务条款》</text>
<text class="link-item" bindtap="openTermsOfService">《Findme隐私政策》</text>
<text class="link-item" bindtap="openCommunityRules">《Findme社区规范》</text>
</view>
<!-- 官网链接 -->
<view class="official-website">
<text>https://www.findme.cn</text>
</view>
</view>