123456789101112131415161718192021222324252627282930313233 |
- <!--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" style="display:inline-block;width:100%;margin-bottom:20px;" wx:if="{{active}}">
- <view class="button-wrapper" style="margin-left:40px;float:none;width:38%;margin:0 auto;">
- <view class="button" bindtap="show" style="background-color:#000;color:#50B7E3;">有奖活动</view>
- </view>
- </view>
- <view class="section" style="display:inline-block;width:100%;margin-bottom:0;">
- <view class="button-wrapper" style="margin-left:40px;float:left;width:38%;">
- <navigator class="button" url="/pages/person/image/add/add" >制作图片密件</navigator>
- </view>
- <view class="button-wrapper" style="margin-right:40px;float:right;width:38%;">
- <navigator class="button" url="/pages/person/video/add/add">制作视频密件</navigator>
- </view>
- </view>
- <view class="section">
- <view class="article">
- <text>密件是一个在微信中使用的小程序,你可以把需要保密发送的内容通过密件发给你的朋友们。观看之后就会被销毁。不能再转发给他人。</text>
- </view>
- </view>
- </view>
- <template is="foot" data="{{...item1}}" />
- <view class="active" hidden="{{hidden}}">
- <view style="display:inline-block;width:100%;vertical-align: middle;">
- <image src="{{item[0]}}" style="width:100%;" mode="widthFix" bindtap="hidden" ></image>
- </view>
- </view>
- </view>
|