doubleElevenIntroduce.vue 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. <template>
  2. <view>
  3. <ujp-navbar title="双11活动介绍"></ujp-navbar>
  4. <view class="top">
  5. <img class="cover" src="@/assets/img/topCover.png" alt="" />
  6. <img class="img1" src="@/assets/img/doubleEleven3x.png" alt="" />
  7. <img class="img2" src="@/assets/img/doubleElevenLogo.png" alt="" />
  8. </view>
  9. <view class="introduce">
  10. <view class="item">
  11. <view class="title">
  12. 活动时间:
  13. </view>
  14. <view class="value">
  15. 2024 年11 月10日至2024年11月12日
  16. </view>
  17. </view>
  18. <view class="item">
  19. <view class="title">
  20. 活动对象:
  21. </view>
  22. <view class="value">
  23. 优电联盟注册会员
  24. </view>
  25. </view>
  26. <view class="item">
  27. <view class="title">
  28. 活动内容:
  29. </view>
  30. <view class="value">
  31. <p> 1、2024 年 11 月10 日-11 月12 日,凡使用快充充电的平台用户均享受服务费7.5折优惠(电费、停车费及占桩费据实结算)。 </p>
  32. <p> 2、活动期间,凡使用快充充电达 30 度(含)以上的用户,有机会参加服务费名单抽奖。 </p>
  33. <p>3、活动结束后3个工作日内进行抽奖,用户参与点击抽奖,奖品为服务费免单券一张,数量待定。 </p>
  34. </view>
  35. </view>
  36. <view class="item">
  37. <view class="title">
  38. 活动场站:
  39. </view>
  40. <view class="value">
  41. 优电联盟所有站点
  42. </view>
  43. </view>
  44. <view class="item">
  45. <view class="title">
  46. 活动内容:
  47. </view>
  48. <view class="value" >
  49. <p>1、本活动以充电开始时间为准。</p>
  50. <p>2、本次活动仅适用优电联盟平台会员,不包含快电、新电途用户。</p>
  51. <p>3、本次活动最终解释权归湖北鹏育优电新能源科技有限公司所有。</p>
  52. </view>
  53. </view>
  54. </view>
  55. </view>
  56. </template>
  57. <script>
  58. export default {
  59. data() {
  60. return {
  61. }
  62. },
  63. methods: {
  64. }
  65. }
  66. </script>
  67. <style lang="scss" scoped>
  68. page{
  69. background-color: #DD3032;
  70. padding-bottom: 100rpx;
  71. }
  72. .cover{
  73. width:100%;
  74. height: 456rpx;
  75. position: relative;
  76. }
  77. .img1{
  78. width: 100%;
  79. height: 556rpx;
  80. position: absolute;
  81. top: 88rpx;
  82. left: 50%;
  83. transform: translateX(-50%);
  84. }
  85. .img2{
  86. width: 594rpx;
  87. height: 268rpx;
  88. position: absolute;
  89. top: 168rpx;
  90. left: 50%;
  91. transform: translateX(-50%);
  92. }
  93. .introduce{
  94. position: relative;
  95. border-radius: 20px;
  96. background-color: rgba(255, 255, 255, 1);
  97. padding: 40rpx 20rpx 8rpx;
  98. margin:-48rpx 24rpx 24rpx;
  99. .item{
  100. margin-bottom: 40rpx;
  101. .title{
  102. color: rgba(16, 16, 16, 1);
  103. font-size: 32rpx;
  104. }
  105. .value{
  106. color: rgba(51, 51, 51, 1);
  107. margin-top: 16rpx;
  108. p{
  109. margin-top: 8rpx;
  110. }
  111. }
  112. }
  113. }
  114. </style>