index.vue 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. <template>
  2. <page-meta :page-style="lock ? 'overflow: hidden' : 'overflow: auto'" />
  3. <page title="冲刺牛人" light nav-color="transparent">
  4. <view class="bg"></view>
  5. <image :src="resource.sprint_bg" class="bg-2" />
  6. <view class="index" @click="$router.index()">首页</view>
  7. <view style="height: 40rpx"></view>
  8. <view v-if="data && data.length > 0" style="padding-bottom: 160rpx">
  9. <view class="flex-wrap flex-align-center">
  10. <view
  11. v-for="(item, index) in data"
  12. :key="index"
  13. class="item flex-align-center"
  14. @click="showSpu(item)"
  15. >
  16. <image :src="item.cover" class="image" mode="aspectFit" />
  17. <image v-if="rank[index + 1]" :src="rank[index + 1]" class="flag" />
  18. </view>
  19. </view>
  20. <view class="content paddingX15">
  21. <view class="title-wrapper translateX">
  22. <image :src="resource.popularize_content_bg" class="image" />
  23. <view class="relative font4 color-white bold">规则</view>
  24. </view>
  25. <view class="flex paddingT30 paddingB20">
  26. <image
  27. class="flex-shrink0 marginT4"
  28. :src="resource.weal_activity_flag"
  29. style="width: 28rpx; height: 28rpx"
  30. />
  31. <view class="font5 paddingL10 color-theme bold">
  32. 活动期间(自1月20日0时-29日24时),无论新老用户,凡
  33. <text style="color: #ff5055">【宝箱实际消费】</text>
  34. 即可计入榜单,1元=1牛气值,榜单实时更新。
  35. </view>
  36. </view>
  37. </view>
  38. <view class="content paddingX15">
  39. <view class="title-wrapper translateX">
  40. <image :src="resource.popularize_content_bg" class="image" />
  41. <view class="relative font4 color-white bold">奖励领取要求</view>
  42. </view>
  43. <view class="flex paddingT30 paddingB20">
  44. <image
  45. class="flex-shrink0 marginT4"
  46. :src="resource.weal_activity_flag"
  47. style="width: 28rpx; height: 28rpx"
  48. />
  49. <view class="font5 paddingL10 color-theme bold">
  50. 榜单
  51. <text style="color: #ff5055">前十名</text>
  52. 可依名次获得相应奖品,结果于@燚火漫域SuperMarts公众号中公布,奖品均于活动结束后三个工作日内发放。
  53. </view>
  54. </view>
  55. </view>
  56. </view>
  57. <view class="bottom paddingB25 flex-align-center">
  58. <image
  59. :src="resource.sprint_btn"
  60. style="width: 336rpx; height: 108rpx"
  61. @click="$router.index()"
  62. />
  63. <image
  64. :src="resource.popularize_btn_2"
  65. class="marginL10"
  66. style="width: 336rpx; height: 108rpx"
  67. @click="showRank"
  68. />
  69. </view>
  70. <goods-detail ref="goodsDetailRef" />
  71. <rank ref="rankRef" />
  72. </page>
  73. </template>
  74. <script>
  75. import resource from '@/utils/resource'
  76. import goodsDetail from './../store/goods_detail'
  77. import store from '@/store'
  78. import rank from './rank'
  79. const RANK_FLAG = {
  80. 1: resource.rank_1,
  81. 2: resource.rank_2,
  82. 3: resource.rank_3,
  83. 4: resource.rank_4,
  84. 5: resource.rank_5,
  85. 6: resource.rank_6,
  86. 7: resource.rank_7,
  87. 8: resource.rank_8,
  88. 9: resource.rank_9,
  89. 10: resource.rank_10
  90. }
  91. export default {
  92. components: { goodsDetail, rank },
  93. data() {
  94. return {
  95. resource,
  96. data: null,
  97. rank: RANK_FLAG,
  98. lock: false
  99. }
  100. },
  101. mounted() {
  102. this.getData()
  103. },
  104. methods: {
  105. async getData() {
  106. const res = await this.$service.weal.sprint()
  107. this.data = res
  108. },
  109. showSpu(spu) {
  110. this.$refs.goodsDetailRef.show(spu)
  111. },
  112. showRank() {
  113. this.$refs.rankRef.show()
  114. }
  115. }
  116. }
  117. </script>
  118. <style lang="scss" scoped>
  119. .bg {
  120. position: fixed;
  121. left: 0;
  122. right: 0;
  123. top: 0;
  124. bottom: 0;
  125. background: linear-gradient(180deg, #ff4743 0%, #230782 100%);
  126. z-index: -1;
  127. }
  128. .bg-2 {
  129. position: fixed;
  130. z-index: -1;
  131. left: 0;
  132. top: 0;
  133. width: 100%;
  134. height: 1624rpx;
  135. z-index: 0;
  136. }
  137. .image-1 {
  138. position: fixed;
  139. left: 0;
  140. top: 200rpx;
  141. width: 100%;
  142. height: 100rpx;
  143. }
  144. .index {
  145. position: fixed;
  146. top: 180rpx;
  147. right: 0;
  148. width: 96rpx;
  149. height: 48rpx;
  150. background: linear-gradient(315deg, #0bd1ce 0%, #3ba1ff 100%);
  151. border-radius: 200rpx 0px 0px 200rpx;
  152. line-height: 48rpx;
  153. text-align: center;
  154. color: #fff;
  155. font-size: 28rpx;
  156. z-index: 100;
  157. }
  158. .item {
  159. margin: 10rpx 12rpx;
  160. position: relative;
  161. width: 152rpx;
  162. height: 180rpx;
  163. background: #ffffff;
  164. box-shadow: inset 0px 0px 30rpx 0px rgba(125, 84, 255, 0.5);
  165. border-radius: 12rpx;
  166. .image {
  167. width: 132rpx;
  168. height: 150rpx;
  169. }
  170. .flag {
  171. width: 60rpx;
  172. height: 26rpx;
  173. position: absolute;
  174. right: 0;
  175. bottom: 0;
  176. }
  177. }
  178. .content {
  179. position: relative;
  180. background: #ffffff;
  181. box-shadow: inset 0px 0px 30rpx 0px rgba(84, 14, 142, 0.5);
  182. border-radius: 16rpx;
  183. border: 4rpx solid #4f0c8f;
  184. margin: 30rpx 30rpx;
  185. .title-wrapper {
  186. position: absolute;
  187. top: -8rpx;
  188. width: 250rpx;
  189. height: 50rpx;
  190. line-height: 50rpx;
  191. text-align: center;
  192. .image {
  193. position: absolute;
  194. left: 0;
  195. top: 0;
  196. width: 250rpx;
  197. height: 50rpx;
  198. z-index: 0;
  199. }
  200. }
  201. }
  202. .bottom {
  203. position: fixed;
  204. left: 0;
  205. right: 0;
  206. bottom: 0;
  207. .share-btn {
  208. position: absolute;
  209. left: 0;
  210. right: 0;
  211. top: 0;
  212. bottom: 0;
  213. }
  214. }
  215. </style>