12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <view>
- <view class='topCard'>
- <view class='user'>
- <view class='avatar'>
- <image src="{{userInfo.avatar}}"></image>
- </view>
- <view class='name'>{{userInfo.nickname}}</view>
- <button class="record" bindtap="routeTo" data-url="/pages/record/index">明细</button>
- </view>
- <view class='balance'>
- <view class='balance_item'>
- <image class='balance_icon' src='/image/zhuanpan_jinbi.png'></image>
- <view class='balance_num'>{{lotteryInfo.my_integral}}</view>
- </view>
- <view class='balance_item'>
- <image class='balance_icon' src='/image/zhuanpan_hongbao.png'></image>
- <view class='balance_num'>¥{{lotteryInfo.balance}}元</view>
- <button class='balance_btn reward' bindtap="OpenWithdraw" data-status="1">提现</button>
- </view>
- </view>
- </view>
- <view class='main'>
- <view class='dial' id='dial'>
- <image class='bg' src='/image/zhuanpan_dipan{{bgFlag ? "2" : ""}}.png'></image>
- <image class='prize' animation="{{animationData}}" src='{{lotteryInfo.roulette_img}}'></image>
- <image class='play' bindtap='start' src='{{lotteryInfo.pointer_img}}'></image>
- </view>
- </view>
- <view class='prompt'>
- {{lotteryInfo.cost_integral * 1}}金币抽奖一次
- </view>
- <view class='earn'>
- <swiper class='Carousel' circular="true" indicator-dots="{{false}}" interval="{{3000}}" duration="{{500}}" previous-margin="{{0}}" autoplay="{{true}}">
- <block wx:for="{{lotteryInfo.award_ad.list}}" wx:key="{{index}}">
- <swiper-item class="Carousel_item">
- <image class='icon' src='{{item.avatar}}'></image>
- <view class='text'>
- <text class='name'>{{item.username}}</text> 成功抽取 <text class='text-color-money'>{{item.award_name}}</text>
- </view>
- </swiper-item>
- </block>
- </swiper>
- <view class='to' bindtap='routeTo' data-url="/pages/tips/tips">
- <button>获取金币</button>
- </view>
- </view>
- <view class='rule'>
- <text class='title'>活动规则</text>
- <view class="cell" wx:for="{{lotteryInfo.desc_list}}" wx:key="{{index}}" wx:>{{item}}</view>
- <!-- <view class='cell'>活动长期有效,结束时间以公众号通知为准。</view>
- <view class='cell'>每20金币抽奖一次,每日不限次数。</view>
- <view class='cell'>红包奖励直接发放到账户余额,可关注公众号“{{mpGzh}}”提现。</view>
- <view class='cell'>实物奖励请联系公众号客服登记中奖信息,核实信息后奖品将于7个工作日发放。</view> -->
- </view>
- <component-modal title="{{ModalConfig.title}}"
- content="{{ModalConfig.content}}"
- ModalType="{{ModalConfig.ModalType}}"
- ShowModal="{{ModalConfig.visible}}"
- bind:click="hideModal">
- <view class="lottery__content" wx:if="{{lotteryInfo.has_award === 2 && lotteryInfo.is_real == 1}}">
- <text>恭喜获得</text>
- <image class="lottery__img" src="{{lotteryInfo.original_img}}"></image>
- <text class="lottery__name">{{lotteryInfo.award_name}}</text>
- </view>
- </component-modal>
- </view>
- <view class="to-withdraw" wx:if="{{howToWithdraw}}" bindtap="hideWithdraw">
- <view class="to-withdraw_inner">
- <image src='{{qrCode}}' class="to-withdraw_img"></image>
- <button class="to-withdraw_btn" bindtap="CloseWithdraw" data-status="0" open-type="contact" send-message-title='回复"1"获取关注链接' send-message-img="/image/fenxaingluodi.png" send-message-path="/pages/user/index?id={{userInfo.mem_id}}" bindcontact='contact'
- show-message-card>
- 继续
- </button>
- </view>
- </view>
|