product_a.vue 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. <template>
  2. <view class="p30" style="padding-bottom: 200rpx;">
  3. <view class="levelBox" v-for="levelItem of Arrbylevel">
  4. <view class="levelItem" v-if="levelItem.list.length > 0" :style="'background: url(' + levelItem.itembj + ')no-repeat; background-size: 100% 100%;'">
  5. <view
  6. class="levelTitle fx-c-c"
  7. :style="{
  8. color: levelItem.color
  9. }"
  10. >
  11. {{ levelItem.title }}
  12. <span class="levelProportion">{{ getLevelA(levelItem.level) }}</span>
  13. </view>
  14. <view class="levelList">
  15. <view class="listBg">
  16. <view class="levelListScroll">
  17. <view
  18. v-for="(item, index) in levelItem.list"
  19. :key="index"
  20. class="item"
  21. :style="{
  22. backgroundImage: 'url(' + LEVEL_MAP[item.level].bg + ')'
  23. }"
  24. @click="showSwipe(item)"
  25. >
  26. <image
  27. class="super-image translateX"
  28. :src="item.spu.cover"
  29. mode="aspectFit"
  30. />
  31. <view class="text Probability">
  32. <text>{{ $common.ignoreRatio0(item.probability) }}%</text>
  33. </view>
  34. </view>
  35. </view>
  36. </view>
  37. </view>
  38. </view>
  39. </view>
  40. </view>
  41. </template>
  42. <script>
  43. import { LEVEL_MAP } from '@/utils/config'
  44. import ossurl from '../../utils/ossurl'
  45. export default {
  46. props: {
  47. products: Array,
  48. poolId: [Number,String],
  49. levelist: Array
  50. },
  51. data() {
  52. return {
  53. ossurl,
  54. LEVEL_MAP
  55. }
  56. },
  57. computed: {
  58. Arrbylevel() {
  59. let levelA = this.products.filter((e) => {
  60. return e.level == 'A'
  61. })
  62. let levelB = this.products.filter((e) => {
  63. return e.level == 'B'
  64. })
  65. let levelC = this.products.filter((e) => {
  66. return e.level == 'C'
  67. })
  68. let levelD = this.products.filter((e) => {
  69. return e.level == 'D'
  70. })
  71. return [
  72. {
  73. ...LEVEL_MAP['A'],
  74. level: 'A',
  75. itembj: ossurl.box.detail.itembjA,
  76. list: levelA
  77. },
  78. {
  79. ...LEVEL_MAP['B'],
  80. level: 'B',
  81. itembj: ossurl.box.detail.itembjB,
  82. list: levelB
  83. },
  84. {
  85. ...LEVEL_MAP['C'],
  86. level: 'C',
  87. itembj: ossurl.box.detail.itembjC,
  88. list: levelC
  89. },
  90. {
  91. ...LEVEL_MAP['D'],
  92. level: 'D',
  93. itembj: ossurl.box.detail.itembjD,
  94. list: levelD
  95. }
  96. ]
  97. }
  98. },
  99. methods: {
  100. showSwipe(item) {
  101. let index = this.products.findIndex(e=>{
  102. return e.spu.id == item.spu.id
  103. })
  104. this.$router.push('award_detail_swipe', { poolId: this.poolId, index })
  105. },
  106. getLevelA(level) {
  107. let item = this.levelist.find((e) => {
  108. return e.level == level
  109. })
  110. if (item) {
  111. return item.probability + '%'
  112. } else {
  113. return '0%'
  114. }
  115. }
  116. }
  117. }
  118. </script>
  119. <style lang="scss" scoped>
  120. .levelBox {
  121. }
  122. .levelItem {
  123. padding: 8rpx 20rpx;
  124. margin-bottom: 30rpx;
  125. .levelTitle {
  126. font-size: 36rpx;
  127. // background: #fdd6b3;
  128. // display: inline-block;
  129. font-weight: bold;
  130. padding: 12rpx 28rpx;
  131. border-radius: 24rpx 24rpx 0 0;
  132. background-size: 100%;
  133. .levelProportion {
  134. font-size: 24rpx;
  135. font-family: Source Han Sans, Source Han Sans;
  136. font-weight: 350;
  137. background: #fff;
  138. border-radius: 40rpx;
  139. margin-left: 10rpx;
  140. padding: 4rpx 16rpx;
  141. }
  142. }
  143. .levelList {
  144. // background: #fdd6b3;
  145. padding: 12rpx 18rpx 22rpx 18rpx;
  146. border-radius: 0 0 24rpx 24rpx;
  147. .listBg {
  148. overflow: hidden;
  149. word-break: keep-all;
  150. white-space: nowrap;
  151. padding-bottom: 24rpx;
  152. border-radius: 24rpx;
  153. position: relative;
  154. width: 100%;
  155. }
  156. .levelListScroll {
  157. overflow: auto;
  158. }
  159. .item {
  160. width: 155rpx;
  161. // height: 230rpx;
  162. display: inline-block;
  163. background-position: 0 40rpx;
  164. background-size: 100% auto;
  165. background-repeat: no-repeat;
  166. margin-left: 10px;
  167. position: relative;
  168. padding-top: 46rpx;
  169. box-sizing: border-box;
  170. // padding-bottom: 10rpx;
  171. .super-image {
  172. width: 140rpx;
  173. height: 170rpx;
  174. }
  175. .text {
  176. color: #fff;
  177. border-radius: 5rpx;
  178. font-size: 22rpx;
  179. text-align: center;
  180. }
  181. .Probability {
  182. width: 100%;
  183. height: 70rpx;
  184. text-align: center;
  185. text{
  186. color: #000;
  187. }
  188. }
  189. }
  190. }
  191. }
  192. </style>