123456789101112131415161718192021222324 |
- <!--invitationCode/index.wxml-->
- <view class="main" style="background-image: url({{appAssetsUrl}}/images/invitationCode/bg.png);">
- <image mode="widthFix" src="{{appAssetsUrl}}/images/invitationCode/top-left.png" class="top-left"></image>
- <image mode="widthFix" src="{{appAssetsUrl}}/images/invitationCode/top-right.png" class="top-right"></image>
- <image mode="widthFix" src="{{appAssetsUrl}}/images/invitationCode/bottom-left.png" class="bottom-left" style="bottom: calc(113rpx + {{bottomLeft}}px);"></image>
- <image mode="widthFix" src="{{appAssetsUrl}}/images/invitationCode/bottom-right.png" class="bottom-right" style="bottom: calc(113rpx + {{bottomLeft}}px);"></image>
-
- <view class="qrcode-box" style="background-image: url({{appAssetsUrl}}/images/invitationCode/qrcode-bg.png);height: calc(78vh + {{bottomLeft}}px);">
- <image mode="aspectFill" src="{{memberphoto?memberphoto:(appAssetsUrl+'/images/bz1_nor.png')}}" class="head"></image>
- <view class="name">{{name==null?'--':name}}</view>
- <view class="code" bindtap="copyText">邀请码: {{inviteCode}} 复制</view>
- <view class="qr-box">
- <image src="{{invitationCodeImg}}"></image>
- </view>
- <view class="tip">邀请二维码</view>
- </view>
- <view class="bottom" style="height: calc(12vh + {{bottomLeft}}px);">
- <button class="btn1" bindtap="downloadQR">保存图片</button>
- <button class="btn2" open-type="share">分享</button>
- </view>
- </view>
- <!-- <button class="custCare" open-type="contact" session-from="sessionFrom">
- <image mode="aspectFill" src="{{appAssetsUrl}}/images/custCare.png"></image>
- </button> -->
|