index.vue 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  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.popularize_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: 200rpx;">
  9. <view class="flex-wrap flex-align-center">
  10. <view v-for="(item, index) in data" :key="index" class="item flex-align-center" @click="showSpu(item)">
  11. <image :src="item.cover" class="image" mode="aspectFit" />
  12. <image v-if="rank[index + 1]" :src="rank[index + 1]" class="flag" />
  13. </view>
  14. </view>
  15. <view class="content paddingX15">
  16. <view class="title-wrapper translateX">
  17. <image :src="resource.popularize_content_bg" class="image" />
  18. <view class="relative font4 color-white bold">规则</view>
  19. </view>
  20. <!-- <view class="flex paddingT28">
  21. <image class="flex-shrink0 marginT4" :src="resource.weal_activity_flag" style="width: 28rpx; height: 28rpx" />
  22. <view class="font5 paddingL10 color-theme bold">
  23. 活动时间:2月9日-2月15日
  24. </view>
  25. </view> -->
  26. <view class="flex paddingT28">
  27. <image class="flex-shrink0 marginT4" :src="resource.weal_activity_flag"
  28. style="width: 28rpx; height: 28rpx" />
  29. <view class="font5 paddingL10 color-theme bold">
  30. 活动期间(自4月22日0时-4月28日24时),无论新老用户,凡邀请新人【注册+消费任意金额】即可计入榜单,榜单实时更新。
  31. </view>
  32. </view>
  33. <view class="flex paddingT10">
  34. <image class="flex-shrink0 marginT4" :src="resource.weal_activity_flag"
  35. style="width: 28rpx; height: 28rpx" />
  36. <view class="font5 paddingL10 color-theme bold">
  37. 榜单前十名,且累计成功邀请20人以上(含20人),即可依名次获得相应奖品;榜单前三名,且累计成功邀请50人以上(含50人),即可获得相应前三奖品。奖品均于活动结束后三个工作日内(周末及节假日除外)发放。
  38. </view>
  39. </view>
  40. <view class="paddingY10 font3 color-theme">
  41. tips:邀请方式包括但不限于任何形式,活动最终解释权归平台所有。
  42. </view>
  43. </view>
  44. </view>
  45. <view class="bottom paddingB25 flex-align-center">
  46. <view class="relative flex-align-center">
  47. <image :src="resource.popularize_btn_1" style="width: 336rpx; height: 108rpx" />
  48. <button open-type="share" class="share-btn btn-clear"></button>
  49. </view>
  50. <image :src="resource.popularize_btn_2" class="marginL10" style="width: 336rpx; height: 108rpx"
  51. @click="showRank" />
  52. </view>
  53. <goods-detail ref="goodsDetailRef" />
  54. <rank ref="rankRef" />
  55. </page>
  56. </template>
  57. <script>
  58. import resource from '@/utils/resource'
  59. import goodsDetail from './../store/goods_detail'
  60. import store from '@/store'
  61. import rank from './rank'
  62. const RANK_FLAG = {
  63. 1: resource.rank_1,
  64. 2: resource.rank_2,
  65. 3: resource.rank_3,
  66. 4: resource.rank_4,
  67. 5: resource.rank_5,
  68. 6: resource.rank_6,
  69. 7: resource.rank_7,
  70. 8: resource.rank_8,
  71. 9: resource.rank_9,
  72. 10: resource.rank_10
  73. }
  74. export default {
  75. components: { goodsDetail, rank },
  76. data () {
  77. return {
  78. resource,
  79. data: null,
  80. rank: RANK_FLAG,
  81. lock: false
  82. }
  83. },
  84. mounted () {
  85. this.getData()
  86. },
  87. onShareAppMessage (res) {
  88. if (this.$common.isLogin()) {
  89. const user = store.getters.user
  90. return {
  91. title: `燚火漫域,新人首抽1.9!`,
  92. path: '/pages/award/index?pid=' + user.username
  93. }
  94. }
  95. return {
  96. title: `燚火漫域,新人首抽1.9!`,
  97. path: '/pages/award/index'
  98. }
  99. },
  100. methods: {
  101. async getData () {
  102. const res = await this.$service.weal.popularize()
  103. this.data = res
  104. },
  105. showSpu (spu) {
  106. this.$refs.goodsDetailRef.show(spu)
  107. },
  108. showRank () {
  109. this.$refs.rankRef.show()
  110. }
  111. }
  112. }
  113. </script>
  114. <style lang="scss" scoped>
  115. .bg {
  116. position: fixed;
  117. left: 0;
  118. right: 0;
  119. top: 0;
  120. bottom: 0;
  121. background: linear-gradient(180deg, #8332f5 0%, #2f4abd 100%);
  122. z-index: -1;
  123. }
  124. .bg-2 {
  125. position: fixed;
  126. z-index: -1;
  127. left: 0;
  128. top: 0;
  129. width: 100%;
  130. height: 1624rpx;
  131. z-index: 0;
  132. }
  133. .image-1 {
  134. position: fixed;
  135. left: 0;
  136. top: 200rpx;
  137. width: 100%;
  138. height: 100rpx;
  139. }
  140. .index {
  141. position: fixed;
  142. top: 180rpx;
  143. right: 0;
  144. width: 96rpx;
  145. height: 48rpx;
  146. background: linear-gradient(315deg, #0bd1ce 0%, #3ba1ff 100%);
  147. border-radius: 200rpx 0px 0px 200rpx;
  148. line-height: 48rpx;
  149. text-align: center;
  150. color: #fff;
  151. font-size: 28rpx;
  152. z-index: 100;
  153. }
  154. .item {
  155. margin: 10rpx 12rpx;
  156. position: relative;
  157. width: 152rpx;
  158. height: 180rpx;
  159. background: #ffffff;
  160. box-shadow: inset 0px 0px 30rpx 0px rgba(125, 84, 255, 0.5);
  161. border-radius: 12rpx;
  162. .image {
  163. width: 132rpx;
  164. height: 150rpx;
  165. }
  166. .flag {
  167. width: 60rpx;
  168. height: 26rpx;
  169. position: absolute;
  170. right: 0;
  171. bottom: 0;
  172. }
  173. }
  174. .content {
  175. position: relative;
  176. background: #ffffff;
  177. box-shadow: inset 0px 0px 10px 5px rgba(143, 75, 241, 0.15);
  178. border-radius: 10px;
  179. margin: 30rpx 30rpx;
  180. // margin-left: 30rpx;
  181. // margin-right: 30rpx;
  182. .title-wrapper {
  183. position: absolute;
  184. top: -8rpx;
  185. width: 250rpx;
  186. height: 50rpx;
  187. line-height: 50rpx;
  188. text-align: center;
  189. .image {
  190. position: absolute;
  191. left: 0;
  192. top: 0;
  193. width: 250rpx;
  194. height: 50rpx;
  195. z-index: 0;
  196. }
  197. }
  198. }
  199. .bottom {
  200. position: fixed;
  201. left: 0;
  202. right: 0;
  203. bottom: 0;
  204. .share-btn {
  205. position: absolute;
  206. left: 0;
  207. right: 0;
  208. top: 0;
  209. bottom: 0;
  210. }
  211. }</style>