product_a.vue 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  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. <view class="text" style="color: #333;">{{ getLeftNum(item) }}/{{ item.quantity }}</view>
  27. <image
  28. class="super-image translateX"
  29. :src="item.spu.cover"
  30. mode="aspectFit"
  31. />
  32. <view
  33. class="text Probability"
  34. :style="{
  35. color: levelItem.color,
  36. borderColor: levelItem.color
  37. }"
  38. >
  39. <text>{{ getProbability(item) }}</text>
  40. </view>
  41. </view>
  42. </view>
  43. </view>
  44. </view>
  45. </view>
  46. </view>
  47. </view>
  48. </template>
  49. <script>
  50. import { LEVEL_MAP } from '@/utils/config'
  51. import ossurl from '@/utils/ossurl'
  52. export default {
  53. props: {
  54. products: Array,
  55. poolId: [Number,String],
  56. box: Object,
  57. levelist: Array
  58. },
  59. data() {
  60. return {
  61. LEVEL_MAP,
  62. ossurl
  63. }
  64. },
  65. computed: {
  66. Arrbylevel() {
  67. let levelA = this.products.filter((e) => {
  68. return e.level == 'A'
  69. })
  70. let levelB = this.products.filter((e) => {
  71. return e.level == 'B'
  72. })
  73. let levelC = this.products.filter((e) => {
  74. return e.level == 'C'
  75. })
  76. let levelD = this.products.filter((e) => {
  77. return e.level == 'D'
  78. })
  79. return [
  80. {
  81. ...LEVEL_MAP['A'],
  82. level: 'A',
  83. itembj: ossurl.box.detail.itembjA,
  84. list: levelA
  85. },
  86. {
  87. ...LEVEL_MAP['B'],
  88. level: 'B',
  89. itembj: ossurl.box.detail.itembjB,
  90. list: levelB
  91. },
  92. {
  93. ...LEVEL_MAP['C'],
  94. level: 'C',
  95. itembj: ossurl.box.detail.itembjC,
  96. list: levelC
  97. },
  98. {
  99. ...LEVEL_MAP['D'],
  100. level: 'D',
  101. itembj: ossurl.box.detail.itembjD,
  102. list: levelD
  103. }
  104. ]
  105. }
  106. },
  107. created() {
  108. console.log('sd', this.Arrbylevel);
  109. },
  110. methods: {
  111. showSwipe(item) {
  112. console.log(item)
  113. let index = this.products.findIndex(e=>{
  114. return e.spu.id == item.spu.id
  115. })
  116. this.$router.push('award_detail_swipe', { poolId: this.poolId, index })
  117. },
  118. getLeftNum(row) {
  119. if (
  120. !this.box ||
  121. !this.box.usedStat ||
  122. !this.box.usedStat[row.spu.id] ||
  123. !this.box.usedStat[row.spu.id].quantity
  124. ) {
  125. return row.quantity
  126. }
  127. return row.quantity - this.box.usedStat[row.spu.id].quantity
  128. },
  129. getProbability(row) {
  130. if (!this.box) return
  131. let leftNum = this.getLeftNum(row)
  132. return (
  133. this.$common.ignoreRatio0(
  134. ((leftNum / this.box.leftQuantity) * 100).toFixed(4)
  135. ) + '%'
  136. )
  137. },
  138. getLevelA(level) {
  139. let item = this.levelist.find((e) => {
  140. return e.level == level
  141. })
  142. if (item) {
  143. return item.probability + '%'
  144. } else {
  145. return '0%'
  146. }
  147. }
  148. }
  149. }
  150. </script>
  151. <style lang="scss" scoped>
  152. .levelBox {
  153. }
  154. .levelItem {
  155. padding: 8rpx 20rpx;
  156. margin-bottom: 30rpx;
  157. .levelTitle {
  158. font-size: 36rpx;
  159. // background: #fdd6b3;
  160. // display: inline-block;
  161. font-weight: bold;
  162. padding: 12rpx 28rpx;
  163. border-radius: 24rpx 24rpx 0 0;
  164. background-size: 100%;
  165. .levelProportion {
  166. font-size: 24rpx;
  167. font-family: Source Han Sans, Source Han Sans;
  168. font-weight: 350;
  169. background: #fff;
  170. border-radius: 40rpx;
  171. margin-left: 10rpx;
  172. padding: 4rpx 16rpx;
  173. }
  174. }
  175. .levelList {
  176. // background: #fdd6b3;
  177. padding: 12rpx 18rpx 22rpx 18rpx;
  178. border-radius: 0 0 24rpx 24rpx;
  179. .listBg {
  180. overflow: hidden;
  181. word-break: keep-all;
  182. white-space: nowrap;
  183. padding-bottom: 24rpx;
  184. border-radius: 24rpx;
  185. position: relative;
  186. width: 100%;
  187. }
  188. .levelListScroll {
  189. overflow: auto;
  190. }
  191. .item {
  192. width: 155rpx;
  193. // height: 230rpx;
  194. display: inline-block;
  195. background-position: 0 40rpx;
  196. background-size: 100% auto;
  197. background-repeat: no-repeat;
  198. margin-left: 10px;
  199. position: relative;
  200. padding-top: 28rpx;
  201. // padding-bottom: 10rpx;
  202. .super-image {
  203. width: 140rpx;
  204. height: 170rpx;
  205. }
  206. .text {
  207. color: #fff;
  208. border-radius: 5rpx;
  209. font-size: 22rpx;
  210. text-align: center;
  211. }
  212. .Probability {
  213. width: 100%;
  214. height: 70rpx;
  215. text-align: center;
  216. text{
  217. color: #000;
  218. }
  219. }
  220. }
  221. }
  222. }
  223. </style>