lotteryRule.vue 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <template>
  2. <view class="page" :style="{height:windowHeight + 'px'}">
  3. <view class="content" :style="{height:windowHeight * 0.95 + 'px'}">
  4. <view class="flex-row justify-center" >
  5. <image :src="'/static/img/1712667932387.jpg'" mode="widthFix" class="titlePhoto"></image>
  6. </view>
  7. <view class="flex-col">
  8. <text class="itemTitle">活动时间</text>
  9. <text class="textCent">2021年1月18日-2021年1月31日</text>
  10. <text class="itemTitle">参与方式</text>
  11. <text class="textCent">1、活动期间,所有用户登陆江苏114便民平台,每天都可获得一次抽奖机会,当天使用,不累计。
  12. 2、活动期间,凡是通过江苏114便民平台,使用线上支付方式(不含使用按次抵用券方式支付)下单并支付成功的用户,均可在线参与活动抽奖。 0<用户下单实际支付金额<50元,可获得一次抽奖机会; 50≤用户下单实际支付金额<100元,可获得两次抽奖机会; 100≤用户下单实际支付金额<150元,可获得三次抽奖机会; 抽奖机会以50元递增,以此类推。
  13. 3、每天首次抽奖机会默认使用登陆获得的抽奖机会。</text>
  14. <text class="itemTitle">活动奖项设置</text>
  15. <text class="textCent">特等奖(1个):小米扫地机器人一部,价值3899元;
  16. 一等奖(50个):50元江苏114便民平台无门槛代金券一张,价值50元;
  17. 二等奖(300个):30元江苏114便民平台无门槛代金券一张,价值30元;
  18. 三等奖(300个):20元江苏114便民平台无门槛代金券一张,价值20元。
  19. </text>
  20. <text class="itemTitle">奖项领取</text>
  21. <text class="textCent">活动结束后,将由江苏号百对符合活动要求的订单进行统计和奖品发放,一个账户多次下单可增加中奖概率。 奖项发布后,将有客服人员对获得特等奖、一等奖和二等奖的用户进行回访,告知获奖情况,获得特等奖的用户,将通过上门的方式将礼品送至获奖用户手中;获得代金券奖励的用户,代金券将在奖项发布后5个工作日内发放至用户账户中进行短信通知。</text>
  22. <text class="itemTitle">客服咨询电话</text>
  23. <text class="textCent">4008937018(服务时间9:00-18:00)
  24. *在法律允许范围内,114便民对此活动拥有解释权</text>
  25. </view>
  26. </view>
  27. </view>
  28. </template>
  29. <script>
  30. export default {
  31. data() {
  32. return {
  33. windowHeight:''
  34. }
  35. },
  36. onLoad(){
  37. let sysinfo = uni.getSystemInfoSync()
  38. this.windowHeight = sysinfo.windowHeight
  39. },
  40. methods: {
  41. }
  42. }
  43. </script>
  44. <style scoped lang="scss">
  45. @import './index.rpx.scss';
  46. </style>