1234567891011121314151617181920 |
- <!--index.wxml-->
- <import src="../common/header.wxml" />
- <import src="../common/footer.wxml" />
- <view class="page">
- <template is="head" />
- <view class="page__bd">
- <view class="section">
- <view class="button-wrapper">
- <navigator class="button" url="/pages/add/add">写密件</navigator>
- </view>
- </view>
- <view class="section">
- <view class="article">
- <text>密件是一个在微信中使用的小程序,你可以把需要保密发送图片文字的内容通过密件发送。对方只有5秒钟观看的时间,观看之后就会被销毁,不能再转发给他人。</text>
- </view>
- </view>
- </view>
- <template is="foot" />
- </view>
|