12345678910111213141516171819202122232425262728 |
- <view class="content">
- <view class="title">
- <view class="leftTitle">获取方式说明</view>
- </view>
- <view class="rich">
- <video class="video" id="myVideo-{{index}}" wx:for="{{viode}}" wx:if="{{viode && index < 3}}" wx:key="unique" src="{{item}}"></video>
- <rich-text nodes="{{content.description}}"></rich-text>
- </view>
- <view class="title" wx:if="{{content.shareContent}}">
- <view class="leftTitle">发圈文案</view>
- <view class="rightBtn" data-article="{{content.shareContent}}" bindtap="copyContent">点击复制></view>
- </view>
- <view class="article" style="font-size:28rpx;color:#999;padding-bottom:40rpx">{{content.shareContent || ''}}</view>
- <view class="title" wx:if="{{content.sharePisList}}">
- <view class="leftTitle">发圈图片</view>
- <view class="rightBtn" data-pic="{{content.sharePisList}}" bindtap="savePic">点击保存></view>
- </view>
- <view class="imagelist article">
- <view class="img" wx:for="{{content. sharePisList || []}}" wx:key="index">
- <image src="{{item}}" mode="widthFix" data-pic="{{item}}" bindtap="lookImg"></image>
- </view>
- </view>
- <view class="btn {{theam}}">
- <button type="warn" plain bindtap="jumpPage" style="margin-right: 20rpx;">上传发圈证明</button>
- <button type="warn" plain bindtap="connect" style="flex: 1;">联系客服</button>
- </view>
- </view>
- <contact show="{{showQrcode}}" bind:close="closeTip"></contact>
|