first_last.vue 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280
  1. <template>
  2. <view class="firstLast">
  3. <view class="wrapper" :style="{ backgroundImage: 'url(' + ossurl.box.detail.yfsBg + ')' }">
  4. <view class="boxSection">
  5. <view class="titlebox"><text>超帅模型对决</text></view>
  6. <view class="t fx-c-s">
  7. <view class="l fx-c">
  8. <image style="width: 40rpx;" src="https://file.supermarts.cn/file/yi_huo_man_yu/images/award/i25.png" mode="widthFix">
  9. </image>
  10. <view class="Remaining">当前盒子剩余:<text style="font-size: 38rpx; font-weight: bold;">{{ box.leftQuantity }}</text>/{{ box.quantity }}发</view>
  11. </view>
  12. <view class="r fx-c">
  13. <image style="width: 40rpx;" src="https://file.supermarts.cn/file/yi_huo_man_yu/images/award/i29.png" mode="widthFix"></image>
  14. <text>玩法</text>
  15. </view>
  16. </view>
  17. </view>
  18. <!-- <view class="title">
  19. {{ data.name }}
  20. <view class="size">
  21. <image :src="ossurl.box.detail.boxIcon" class="boxIcon" mode="aspectFit" />
  22. 当前盒子剩余:
  23. <span class="currentSize">{{ box.leftQuantity }}</span>
  24. /{{ box.quantity }}发
  25. </view>
  26. </view> -->
  27. <view class="flex-align-around">
  28. <view v-for="(item, index) in prizeList" :key="index" class="cell prize"
  29. @click="showGoodsDetail(item.spu)">
  30. <image :src="item.cover" class="image" mode="aspectFit" />
  31. <view class="levelTitle" :class="[item.level === 'FIRST' ? 'first' : 'last']">
  32. {{ item.level === 'FIRST' ? '抢先赏' : 'LAST赏' }}
  33. </view>
  34. <view v-if="item.nickname" class="userBox">
  35. <image :src="item.avatar" class="userAvatar" />
  36. <view class="nickname">{{item.nickname}}</view>
  37. </view>
  38. </view>
  39. </view>
  40. <view v-if="box" class="controlBox">
  41. <view class="paddingY3 flex-align-center">
  42. <view class="flex-align marginR2 preBox" @click="preBox">
  43. <image :src="ossurl.box.detail.prev" style="width: 32rpx; height: 32rpx" />
  44. <view class="font2">上一盒</view>
  45. </view>
  46. <view class="changeBox" @click="showBox" :style="{ backgroundImage: 'url(' + ossurl.mine.butbj + ')' }">
  47. <image :src="ossurl.box.detail.refreshIcon"
  48. style="width: 32rpx; height: 32rpx; margin-right: 18rpx" />
  49. 换盒 (
  50. <text>{{ box.number }}</text>
  51. /{{ box.lastNumber }})
  52. </view>
  53. <view class="flex-align marginL2 nextBox" @click="nextBox">
  54. <view class="font2">下一盒</view>
  55. <image :src="ossurl.box.detail.next" style="width: 32rpx; height: 32rpx" />
  56. </view>
  57. </view>
  58. </view>
  59. <!-- <image :src="ossurl.box.detail.playMethod" @click="showRule" class="rule" /> -->
  60. </view>
  61. <rule ref="rule" />
  62. <goods-detail ref="goodsDetailRef" @close="goodsDetailColse" />
  63. </view>
  64. </template>
  65. <script>
  66. import ossurl from '@/utils/ossurl'
  67. import rule from './first_last_rule.vue'
  68. import goodsDetail from './../store/goods_detail'
  69. export default {
  70. components: {
  71. rule,
  72. goodsDetail
  73. },
  74. props: {
  75. data: Object,
  76. prizeList: Array,
  77. box: Object
  78. },
  79. data() {
  80. return {
  81. ossurl
  82. }
  83. },
  84. methods: {
  85. showRule() {
  86. this.$refs.rule.show()
  87. },
  88. goodsDetailColse() {
  89. this.$parent.$parent.lock = false
  90. },
  91. showGoodsDetail(spu) {
  92. this.$parent.$parent.lock = true
  93. this.$refs.goodsDetailRef.show(spu)
  94. },
  95. showBox() {
  96. this.$emit('showBox')
  97. },
  98. preBox() {
  99. this.$emit('preBox')
  100. },
  101. nextBox() {
  102. this.$emit('nextBox')
  103. }
  104. }
  105. }
  106. </script>
  107. <style lang="scss" scoped>
  108. .firstLast {
  109. padding: 20rpx;
  110. }
  111. .boxSection{
  112. .titlebox{
  113. width: 100%;
  114. text-align: center;
  115. padding-top: 16rpx;
  116. text{
  117. font-size: 34rpx;
  118. font-weight: bold;
  119. }
  120. }
  121. .t{
  122. margin-bottom: 26rpx;
  123. .l{
  124. padding-top: 20rpx;
  125. }
  126. .r{
  127. padding-top: 2rpx;
  128. text{
  129. color: #999;
  130. font-size: 24rpx;
  131. }
  132. }
  133. }
  134. }
  135. .wrapper {
  136. position: relative;
  137. height: 436rpx;
  138. background-size: 100% 100%;
  139. text-align: center;
  140. .title {
  141. font-size: 28rpx;
  142. font-family: Source Han Sans, Source Han Sans;
  143. font-weight: 500;
  144. color: #000000;
  145. line-height: 80rpx;
  146. display: flex;
  147. justify-content: space-between;
  148. .size {
  149. font-size: 24rpx;
  150. display: flex;
  151. align-items: center;
  152. }
  153. .boxIcon {
  154. width: 32rpx;
  155. height: 32rpx;
  156. margin-right: 8rpx;
  157. }
  158. .currentSize {
  159. font-size: 32rpx;
  160. }
  161. }
  162. .rule {
  163. width: 80rpx;
  164. height: 42rpx;
  165. position: absolute;
  166. right: -5rpx;
  167. top: 100rpx;
  168. }
  169. .prize {
  170. position: relative;
  171. .image {
  172. width: 132rpx;
  173. height: 132rpx;
  174. background: #ffffff;
  175. opacity: 1;
  176. border: 4rpx solid #ffeab7;
  177. border-radius: 50%;
  178. }
  179. .levelTitle {
  180. width: 126rpx;
  181. height: 42rpx;
  182. font-size: 24rpx;
  183. font-family: Source Han Sans, Source Han Sans;
  184. font-weight: 400;
  185. color: #000000;
  186. line-height: 44rpx;
  187. text-align: center;
  188. border-radius: 552rpx 552rpx 552rpx 552rpx;
  189. margin-top: -20rpx;
  190. z-index: 10;
  191. position: relative;
  192. }
  193. .levelTitle.first {
  194. background: linear-gradient(90deg, #2ddfec 0%, #37b0fb 100%);
  195. border-radius: 552rpx 552rpx 552rpx 552rpx;
  196. opacity: 1;
  197. border: 2rpx solid #63efff;
  198. }
  199. .levelTitle.last {
  200. background: linear-gradient(90deg, #ff453c 0%, #ff683f 100%);
  201. opacity: 1;
  202. border: 2rpx solid #ff7b72;
  203. }
  204. }
  205. .changeBox {
  206. width: 282rpx;
  207. height: 60rpx;
  208. // background: #fec433;
  209. border-radius: 30rpx;
  210. display: flex;
  211. align-items: center;
  212. justify-content: center;
  213. font-size: 28rpx;
  214. font-family: Source Han Sans, Source Han Sans;
  215. font-weight: 350;
  216. color: #000000;
  217. }
  218. .controlBox {
  219. background: #fffcf4;
  220. padding: 8rpx 12rpx;
  221. display: inline-block;
  222. margin: auto;
  223. border-radius: 50rpx;
  224. margin-top: 20rpx;
  225. }
  226. }
  227. .nextBox,
  228. .preBox {
  229. padding: 0 20rpx;
  230. }
  231. .userBox {
  232. position: absolute;
  233. top:0;
  234. .nickname {
  235. font-size: 12px;
  236. color: #FEC433;
  237. width: 132rpx;
  238. height: 132rpx;
  239. background: #ffffff;
  240. opacity: 1;
  241. border: 4rpx solid #ffeab7;
  242. background: rgba(0, 0, 0, 0.8);
  243. border: 1px solid;
  244. border-image: linear-gradient(180deg, rgba(253.0000001192093, 234.00000125169754, 222.00000196695328, 1), rgba(253.0000001192093, 229.00000154972076, 208.0000028014183, 0)) 1 1;
  245. line-height: 132rpx;
  246. border-radius: 50%;
  247. top: 0;
  248. overflow: hidden;
  249. }
  250. }
  251. .userAvatar {
  252. width: 32px;
  253. height: 32px;
  254. border: 2px solid #FFE996;
  255. box-sizing: border-box;
  256. position: absolute;
  257. top: -20rpx;
  258. left: 30rpx;
  259. border-radius: 50%;
  260. }
  261. </style>