12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- <view class="page">
- <view class="a-turntable">
- <image src="{{imgUrl}}xcx/activitybg.png" class="d-bg-turntable"></image>
- <image src="../../img/luckytitle.png" class="a-turntable-title" mode="widthFix"></image>
- <view class="a-van-notice-bar">
- <van-notice-bar background="#C6001E" radius="40rpx" height="48rpx" color="#ffffff" left-icon="volume-o" text="{{textContent}}" />
- </view>
- <view class="a-lucky-wheel">
- <lucky-wheel id="myLucky" width="670rpx" height="670rpx" blocks="{{blocks}}" prizes="{{prizes}}" buttons="{{buttons}}" bindstart="start" bindend="end" />
- <image src="../../img/luckyBottom.png" class="a-lucky-bottom" mode="widthFix"></image>
- <image src="../../img/luckyBtn.png" class="a-lucky-btn" mode="widthFix"></image>
- <view class="a-lucky-text" bindtap="myWinning">我的中奖</view>
- </view>
- <view class="flex-column">
- <view class="flex-sub flex align-center">
- <image src="../../../img/mobile12.png" class="phone" mode="widthFix"></image>
- <text>联系方式:{{turntableDetail.lottery_tel?turntableDetail.lottery_tel:''}}</text>
- </view>
- <view class="flex-sub flex align-center mt10">
- <image src="../../../img/address12.png" class="phone" mode="widthFix"></image>
- <view class="flex-sub flex align-center">
- <text>公司地址:</text>
- <text class="flex-sub">{{turntableDetail.lottery_address?turntableDetail.lottery_address:''}}</text>
- </view>
- </view>
- <view class="flex-sub flex align-center mt10">
- <image src="../../../img/prizeContent.png" class="phone" mode="widthFix"></image>
- <view class="flex-sub flex align-center">
- <text>奖品内容:</text>
- <text class="flex-sub">{{prizesContent}}</text>
- </view>
- </view>
- <view class="flex-sub flex align-center mt10">
- <image src="../../../img/duihuan.png" class="phone" mode="widthFix"></image>
- <text>兑奖方式:核销码到店核销领取奖品</text>
- </view>
- </view>
- <image src="../../img/lucky1.png" class="absolute-bottom"></image>
- </view>
- <!-- 中奖 -->
- <cover-view hidden="{{showWinning}}" class="winning" bindtap="closeMask">
- <cover-view class="winning-box" catchtap="preventEvent">
- <cover-view class="winning-title">恭喜您中奖</cover-view>
- <cover-image wx:if="{{prizesImage!=''}}" src="{{prizesImage}}" class="luckyCommon"></cover-image>
- <cover-image wx:else="" src="../../img/luckyCommon.png" class="luckyCommon"></cover-image>
- <cover-view class="winning-tips">恭喜您抽中{{prizesText||'--'}}</cover-view>
- <cover-image src="../../img/sanlucky.png" class="sanlucky"></cover-image>
- <cover-image src="../../img/winningbg.png" class="winningbg"></cover-image>
- <cover-view class="again-btn" bindtap="againPlayTurntable">再抽一次</cover-view>
- </cover-view>
- </cover-view>
- <!-- 未中奖 -->
- <cover-view hidden="{{showNoWinning}}" class="winning" bindtap="closeMask">
- <cover-view class="winning-box" catchtap="preventEvent">
- <cover-view class="winning-title">抱歉本次未中奖</cover-view>
- <cover-image src="../../img/noPrize.png" class="noPrize"></cover-image>
- <cover-view class="winning-tips">继续努力,相信下一个就是你</cover-view>
- <cover-image src="../../img/sanlucky.png" class="sanlucky"></cover-image>
- <cover-image src="../../img/winningbg.png" class="winningbg"></cover-image>
- <cover-view class="again-btn" bindtap="againPlayTurntable">再抽一次</cover-view>
- </cover-view>
- </cover-view>
- <!-- 抽奖次数为0 -->
- <cover-view hidden="{{showNoCount}}" class="winning" bindtap="closeMask">
- <cover-view class="winning-box" catchtap="preventEvent">
- <cover-view class="winning-title">抽奖次数为0</cover-view>
- <cover-view class="textshow">您的抽奖次数为0,朋友圈转发下面内容并截图上传可获得1次抽奖机会</cover-view>
- <cover-view class="copy-box">
- <cover-view class="copyText">
- {{turntableDetail.share_count||''}}
- </cover-view>
- <cover-view class="copy-btn">
- <cover-view class="copy-btn1" data-text="{{turntableDetail.share_count}}" bindtap="copyTextContent">复制内容</cover-view>
- <cover-view class="copy-btn2" bindtap="cutUpload">{{uploadText}}</cover-view>
- </cover-view>
- </cover-view>
- <cover-view class="tipsMsg">此条朋友圈在未兑奖前请不要删除,可作为兑奖凭证</cover-view>
- <cover-image src="../../img/winningbg.png" class="winningbg"></cover-image>
- <cover-view class="again-btn" bindtap="closeMask">确定</cover-view>
- </cover-view>
- </cover-view>
- <mustlogin loginFlag="{{loginFlag}}" mobileflag="{{mobileflag}}" orgname="{{companyobj.company_name}}" logo="{{companyobj.logo}}" id="loginbox" bind:run="unreadMsg"></mustlogin>
- <!-- 隐私协议授权 -->
- <privacy-popup bind:agree="agreePrivacy"></privacy-popup>
- </view>
|