activitydetail.wxml 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <view class="page">
  2. <view class="a-title">{{turntableDetail.title}}</view>
  3. <view class="a-time">
  4. <view class="color384855">活动时间:{{turntableDetail.start_date}} / {{turntableDetail.end_date}}</view>
  5. <view class="color249DFA">{{turntableDetail.status == 1 ? '进行中': '已结束'}}</view>
  6. </view>
  7. <view class="a-turntable">
  8. <image src="{{imgUrl}}xcx/activitybg.png" class="d-bg-turntable"></image>
  9. <image src="../../../img/luckytitle.png" class="a-turntable-title" mode="widthFix"></image>
  10. <view class="a-van-notice-bar">
  11. <van-notice-bar background="#C6001E" radius="40rpx" height="48rpx" color="#ffffff" left-icon="volume-o" text="{{turntableDetail.share_count}}" />
  12. </view>
  13. <view class="a-lucky-wheel">
  14. <lucky-wheel id="myLucky" width="670rpx" height="670rpx" blocks="{{blocks}}" prizes="{{prizes}}" buttons="{{buttons}}" bindstart="start" bindend="end" />
  15. <image src="../../../img/luckyBottom.png" class="a-lucky-bottom" mode="widthFix"></image>
  16. <image src="../../../img/luckyBtn.png" class="a-lucky-btn" mode="widthFix"></image>
  17. <view class="a-lucky-text" bindtap="winningClient">我的中奖</view>
  18. </view>
  19. <view class="flex-column">
  20. <view class="flex-sub flex align-center">
  21. <image src="../../../img/mobile12.png" class="phone" mode="widthFix"></image>
  22. <text>联系方式:{{turntableDetail.company.tel}}</text>
  23. </view>
  24. <view class="flex-sub flex align-center mt10">
  25. <image src="../../../img/address12.png" class="phone" mode="widthFix"></image>
  26. <view class="flex-sub flex align-center">
  27. <text>公司地址:</text>
  28. <text class="flex-sub">{{turntableDetail.company.company_address}}</text>
  29. </view>
  30. </view>
  31. <view class="flex-sub flex align-center mt10">
  32. <image src="../../../img/prizeContent.png" class="phone" mode="widthFix"></image>
  33. <view class="flex-sub flex align-center">
  34. <text>奖品内容:</text>
  35. <text class="flex-sub">{{prizesText}}</text>
  36. </view>
  37. </view>
  38. <view class="flex-sub flex align-center mt10">
  39. <image src="../../../img/duihuan.png" class="phone" mode="widthFix"></image>
  40. <text>兑奖方式:核销码到店核销领取奖品</text>
  41. </view>
  42. </view>
  43. <image src="../../../img/lucky1.png" class="absolute-bottom"></image>
  44. </view>
  45. <view class="a-fixed-bottom">
  46. <button open-type="share" class="flex-sub font32 bg249DFA colorfff flex align-center justify-center">活动转发</button>
  47. <button class="flex-sub flex align-center font32 justify-center" bindtap="lotteryClient">抽奖客户</button>
  48. </view>
  49. </view>