12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <view class="page">
- <view class="a-title">{{turntableDetail.title}}</view>
- <view class="a-time">
- <view class="color384855">活动时间:{{turntableDetail.start_date}} / {{turntableDetail.end_date}}</view>
- <view class="color249DFA">{{turntableDetail.status == 1 ? '进行中': '已结束'}}</view>
- </view>
- <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="{{turntableDetail.share_count}}" />
- </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="winningClient">我的中奖</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.company.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.company.company_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">{{prizesText}}</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>
- <view class="a-fixed-bottom">
- <button open-type="share" class="flex-sub font32 bg249DFA colorfff flex align-center justify-center">活动转发</button>
- <button class="flex-sub flex align-center font32 justify-center" bindtap="lotteryClient">抽奖客户</button>
- </view>
- </view>
|