box_choose.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294
  1. <template>
  2. <view class="cu-modal bottom-modal" :class="{ show: visible }">
  3. <view class="mask" @click="close"></view>
  4. <view class="wrapper cu-dialog">
  5. <view>
  6. <view>
  7. <view class="title">
  8. 全部盒子
  9. <view class="close" @click="close">
  10. <text class="cuIcon-close"></text>
  11. </view>
  12. </view>
  13. </view>
  14. <tabbar3
  15. custom-class="marginX14 marginB15 flex-align-between"
  16. :tabs="tabs"
  17. @change="clickTab"
  18. />
  19. <scroll-view
  20. style="height: 950rpx"
  21. scroll-y
  22. class=" paddingB20"
  23. refresher-enabled
  24. refresher-default-style="white"
  25. @refresherrefresh="pullRefresh"
  26. :refresher-triggered="refreshing"
  27. @scrolltolower="loadMore"
  28. :scroll-top="scrollTop"
  29. >
  30. <view>
  31. <view
  32. v-for="(item, index) in tableData.filter((e) => {
  33. return e.leftQuantity > 0
  34. })"
  35. :key="item.number"
  36. class="item invalid paddingY5 flex-align marginB10"
  37. :style="{ backgroundImage: 'url(' + ossurl.box.detail.boxChoosebj + ')' }"
  38. @click="choose(item)"
  39. >
  40. <view
  41. class="itemIndex"
  42. :style="{
  43. backgroundImage: 'url(' + ossurl.box.detail.boxIndexBg + ')'
  44. }"
  45. >
  46. {{ index + 1 }}
  47. </view>
  48. <view class="itemBox">
  49. <view class="left flex-column-align-center">
  50. <view class="relative">
  51. <image
  52. :src="ossurl.box.detail.boxIcon"
  53. class="boxIcon"
  54. mode="aspectFit"
  55. />
  56. </view>
  57. <view class="font2">剩{{ item.leftQuantity }}发</view>
  58. </view>
  59. <view class="line"></view>
  60. <view class="flex1 levelList">
  61. <view class="font1 levelBox">
  62. <image
  63. :src="ossurl.box.detail.levelTextA"
  64. class="levelIcon"
  65. mode="aspectFit"
  66. />
  67. <view class="numBox">
  68. <span class="currentNum">{{ item.leftQuantityA }}</span>
  69. /{{ item.quantityA }}
  70. </view>
  71. </view>
  72. <view class="font1 levelBox">
  73. <image
  74. :src="ossurl.box.detail.levelTextB"
  75. class="levelIcon"
  76. mode="aspectFit"
  77. />
  78. <view class="numBox">
  79. <span class="currentNum">{{ item.leftQuantityB }}</span>
  80. /{{ item.quantityB }}
  81. </view>
  82. </view>
  83. <view class="font1 levelBox">
  84. <image
  85. :src="ossurl.box.detail.levelTextC"
  86. class="levelIcon"
  87. mode="aspectFit"
  88. />
  89. <view class="numBox">
  90. <span class="currentNum">{{ item.leftQuantityC }}</span>
  91. /{{ item.quantityC }}
  92. </view>
  93. </view>
  94. <view class="font1 levelBox">
  95. <image
  96. :src="ossurl.box.detail.levelTextD"
  97. class="levelIcon"
  98. mode="aspectFit"
  99. />
  100. <view class="numBox">
  101. <span class="currentNum">{{ item.leftQuantityD }}</span>
  102. /{{ item.quantityD }}
  103. </view>
  104. </view>
  105. </view>
  106. </view>
  107. </view>
  108. </view>
  109. </scroll-view>
  110. </view>
  111. </view>
  112. </view>
  113. </template>
  114. <script>
  115. import resource from '@/utils/resource'
  116. import ossurl from '@/utils/ossurl'
  117. import pageMixin from '@/mixin/page'
  118. import tabbar3 from '@/components/tabbar3'
  119. const Tabs = [
  120. { title: '全部', value: '' },
  121. { title: '超神款', value: 'A' },
  122. { title: '欧皇款', value: 'B' },
  123. { title: '隐藏款', value: 'C' },
  124. { title: '普通款', value: 'D' }
  125. ]
  126. export default {
  127. mixins: [pageMixin],
  128. components: { tabbar3 },
  129. props: {
  130. poolId: [Number,String]
  131. },
  132. data() {
  133. return {
  134. resource,
  135. ossurl,
  136. visible: false,
  137. refreshing: false,
  138. tabs: Tabs,
  139. tab: Tabs[0],
  140. scrollTop: 0
  141. }
  142. },
  143. methods: {
  144. show() {
  145. this.$parent.$parent.lock = true
  146. this.visible = true
  147. this.refresh()
  148. },
  149. clickTab(item) {
  150. this.tab = item
  151. this.refresh(true)
  152. this.scrollTop = this.scrollTop == 1 ? 0 : 1
  153. },
  154. pullRefresh() {
  155. this.refreshing = true
  156. this.refresh()
  157. },
  158. async loadData() {
  159. const res = await this.$service.award.boxs(
  160. this.poolId,
  161. this.tab.value,
  162. this.pageNum,
  163. this.pageSize
  164. )
  165. if (this.pageNum == 1) {
  166. setTimeout(() => {
  167. this.refreshing = false
  168. }, 500)
  169. }
  170. return res
  171. },
  172. close() {
  173. this.$parent.$parent.lock = false
  174. this.data = []
  175. this.visible = false
  176. this.$emit('close', false)
  177. this.tab = Tabs[0]
  178. },
  179. choose(item) {
  180. if (item.leftQuantity <= 0) return
  181. this.close()
  182. this.$emit('choose', item.number)
  183. }
  184. }
  185. }
  186. </script>
  187. <style lang="scss" scoped>
  188. .mask {
  189. position: absolute;
  190. left: 0;
  191. right: 0;
  192. top: 0;
  193. bottom: 0;
  194. }
  195. .wrapper {
  196. background: #fff;
  197. border-radius: 15px 15px 0px 0px !important;
  198. .title {
  199. text-align: center;
  200. font-size: 32rpx;
  201. font-family: Source Han Sans, Source Han Sans;
  202. font-weight: 700;
  203. color: #000000;
  204. padding: 44rpx 0 48rpx 0;
  205. position: relative;
  206. }
  207. .close {
  208. position: absolute;
  209. right: 0;
  210. width: 48rpx;
  211. height: 48rpx;
  212. background: #ebebeb;
  213. border-radius: 48rpx;
  214. color: #a2a2a2;
  215. top: 30rpx;
  216. line-height: 48rpx;
  217. }
  218. .item {
  219. border-radius: 4px;
  220. padding: 14rpx;
  221. position: relative;
  222. .itemIndex {
  223. position: absolute;
  224. left: 0;
  225. top: 0;
  226. width: 68rpx;
  227. height: 44rpx;
  228. background-size: 100%;
  229. font-size: 28rpx;
  230. font-family: Source Han Sans, Source Han Sans;
  231. font-weight: 700;
  232. color: #000000;
  233. line-height: 44rpx;
  234. font-size: 28rpx;
  235. font-family: Source Han Sans, Source Han Sans;
  236. font-weight: 700;
  237. color: #000000;
  238. line-height: 44rpx;
  239. text-align: center;
  240. }
  241. .left {
  242. width: 148rpx;
  243. font-size: 24rpx;
  244. .boxIcon {
  245. height: 48rpx;
  246. width: 48rpx;
  247. }
  248. }
  249. .line {
  250. width: 1px;
  251. height: 79rpx;
  252. opacity: 0.1;
  253. border: 1px solid #dcdad3;
  254. margin-right: 20rpx;
  255. }
  256. .itemBox {
  257. width: 100%;
  258. display: flex;
  259. align-items: center;
  260. padding: 24rpx;
  261. .currentNum {
  262. font-size: 36rpx;
  263. font-family: Source Han Sans, Source Han Sans;
  264. font-weight: 700;
  265. color: #000000;
  266. }
  267. .levelBox {
  268. width: 50%;
  269. flex: 1;
  270. display: flex;
  271. align-items: center;
  272. .levelIcon {
  273. min-width: 90rpx;
  274. width: 90rpx;
  275. height: 32rpx;
  276. }
  277. }
  278. .levelList {
  279. display: flex;
  280. flex-wrap: wrap;
  281. }
  282. }
  283. }
  284. }
  285. </style>