Files
sundynix-pets/pets-fe/pages/agreement/agreement.wxml
T
Blizzard d3a3e9ad1e feat(fe): 隐藏「我的帖子」入口 + 设置新增用户协议/隐私政策页
- mine 页「我的帖子」入口随社区下线隐藏(代码注释保留,恢复社区时解开)
- 新增 pages/agreement:一页两用(type=user/privacy),含完整协议/政策文案
- 设置页新增「用户协议」「隐私政策」两个入口

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-08-04 10:03:20 +08:00

18 lines
660 B
Plaintext

<nav-bar title="{{doc.title}}" show-back="{{true}}"></nav-bar>
<scroll-view class="page-scroll" scroll-y="{{true}}" enhanced="{{true}}" show-scrollbar="{{false}}">
<view class="page-body no-fab ag-body">
<view class="ag-title">{{doc.title}}</view>
<view class="ag-updated">最后更新:{{updated}}</view>
<view class="ag-intro">{{doc.intro}}</view>
<view wx:for="{{doc.sections}}" wx:key="h" class="ag-sec">
<view class="ag-h">{{item.h}}</view>
<view wx:for="{{item.ps}}" wx:for-item="p" wx:key="*this" class="ag-p">{{p}}</view>
</view>
<view class="ag-foot">感谢你对「肉垫计划」的信任 🐾</view>
</view>
</scroll-view>