index.wxml 1.6 KB

123456789101112131415161718192021222324252627282930313233
  1. <!--index.wxml-->
  2. <import src="../../common/header.wxml" />
  3. <import src="../../common/footer.wxml" />
  4. <view class="page">
  5. <template is="head" />
  6. <view class="page__bd">
  7. <view class="section" style="display:inline-block;width:100%;margin-bottom:20px;" wx:if="{{active}}">
  8. <view class="button-wrapper" style="margin-left:40px;float:none;width:38%;margin:0 auto;">
  9. <view class="button" bindtap="show" style="background-color:#000;color:#50B7E3;">有奖活动</view>
  10. </view>
  11. </view>
  12. <view class="section" style="display:inline-block;width:100%;margin-bottom:0;">
  13. <view class="button-wrapper" style="margin-left:40px;float:left;width:38%;">
  14. <navigator class="button" url="/pages/person/image/add/add" >制作图片密件</navigator>
  15. </view>
  16. <view class="button-wrapper" style="margin-right:40px;float:right;width:38%;">
  17. <navigator class="button" url="/pages/person/video/add/add">制作视频密件</navigator>
  18. </view>
  19. </view>
  20. <view class="section">
  21. <view class="article">
  22. <text>密件是一个在微信中使用的小程序,你可以把需要保密发送的内容通过密件发给你的朋友们。观看之后就会被销毁。不能再转发给他人。</text>
  23. </view>
  24. </view>
  25. </view>
  26. <template is="foot" data="{{...item1}}" />
  27. <view class="active" hidden="{{hidden}}">
  28. <view style="display:inline-block;width:100%;vertical-align: middle;">
  29. <image src="{{item[0]}}" style="width:100%;" mode="widthFix" bindtap="hidden" ></image>
  30. </view>
  31. </view>
  32. </view>