num_choose.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393
  1. <template>
  2. <view class="cu-modal bottom-modal" :class="{ show: visible }" v-if="visible">
  3. <view class="mask" @click="close"></view>
  4. <view class="wrapper cu-dialog">
  5. <view>
  6. <view class="title">
  7. 自由超神
  8. <view class="close" @click="close">
  9. <text class="cuIcon-close"></text>
  10. </view>
  11. </view>
  12. </view>
  13. <view class="flex-align-center font2 paddingY5">
  14. <view class="bold">
  15. <text style="color: #FFE957;">{{ box.number }}</text>
  16. /{{ box.lastNumber }}盒
  17. </view>
  18. </view>
  19. <tabbar4
  20. v-if="tabs"
  21. custom-class="marginX10 marginB10"
  22. :tabs="tabs"
  23. @change="clickTab"
  24. />
  25. <scroll-view ref="scrollRef" style="height: 888rpx" scroll-y :scroll-top="scrollTop">
  26. <view class="flex-wrap" v-if="tab">
  27. <view
  28. v-for="item in tab.data"
  29. :key="item"
  30. @click="choose(item)"
  31. class="item flex-column-align-center"
  32. :class="[
  33. !!checkMap[item] && 'active',
  34. !!useMap[item] && 'level',
  35. !!lockMap[item] && 'invalid'
  36. ]"
  37. :style="{ width: itemWidth + 'px', height: itemWidth / 2 + 'px' }"
  38. >
  39. <div v-if="useMap[item]" class="flex-column-align-center">
  40. <div class="font0 bold" style="opacity: 0.5">{{ item }}号</div>
  41. <view
  42. class="levelTitle"
  43. :style="{ color: LEVEL_MAP[useMap[item]].color }"
  44. >
  45. {{ LEVEL_MAP[useMap[item]].title }}
  46. </view>
  47. </div>
  48. <div v-else>{{ item }}号</div>
  49. <view class="checkIcon" v-if="!!checkMap[item]">
  50. <text class="cuIcon-check"></text>
  51. </view>
  52. <view class="checkIcon" v-if="!!lockMap[item]">
  53. <text class="cuIcon-lock"></text>
  54. </view>
  55. </view>
  56. </view>
  57. </scroll-view>
  58. <view class="paddingB20">
  59. <scroll-view scroll-x class="scroll-content paddingX9 marginT10 marginB2">
  60. <view v-for="item in chooseData" :key="item" class="cell marginX5 selectItem">
  61. <div class="flex-align-between height100">
  62. <div class="font2">{{ item }}号</div>
  63. <view class="closeBtn" @click="deleteChoose(item)">
  64. <text class="cuIcon-close"></text>
  65. </view>
  66. </div>
  67. </view>
  68. </scroll-view>
  69. <view class="btnBox">
  70. <view class="relative btn" :style="{ backgroundImage: 'url(' + ossurl.mine.butbj + ')' }" @click="preview">
  71. 确定选择
  72. <view class="text">
  73. 已选择
  74. <span class="num">({{ chooseData.length }})</span>
  75. </view>
  76. </view>
  77. </view>
  78. </view>
  79. </view>
  80. </view>
  81. </template>
  82. <script>
  83. import resource from '@/utils/resource'
  84. import tabbar4 from '@/components/tabbar4'
  85. import ossurl from '@/utils/ossurl'
  86. import { LEVEL_MAP } from '@/utils/config'
  87. export default {
  88. components: { tabbar4 },
  89. props: {
  90. poolId: [Number,String]
  91. },
  92. data() {
  93. return {
  94. ossurl,
  95. LEVEL_MAP,
  96. resource,
  97. visible: false,
  98. data: [],
  99. tabs: null,
  100. tab: null,
  101. box: null,
  102. value: 10,
  103. checkMap: {},
  104. useMap: {},
  105. lockMap: {},
  106. scrollTop: 0
  107. }
  108. },
  109. computed: {
  110. itemWidth() {
  111. if (!this.$store.state.systemInfo) {
  112. return 60
  113. }
  114. let width = (this.$store.state.systemInfo.screenWidth - 28 - 12 * 4) / 5
  115. return Math.floor(width)
  116. },
  117. chooseData() {
  118. let array = Object.values(this.checkMap)
  119. return array
  120. }
  121. },
  122. methods: {
  123. isShow() {
  124. return this.visible
  125. },
  126. show(box) {
  127. this.$parent.$parent.lock = true
  128. this.visible = true
  129. this.box = box
  130. setTimeout(() => {
  131. this.getData()
  132. }, 0)
  133. setTimeout(() => {
  134. this.handleTab()
  135. }, 310)
  136. this.$event.on(this.$event.key.NUM_REFRESH, this.getData)
  137. },
  138. close() {
  139. this.$parent.$parent.lock = false
  140. this.data = []
  141. this.box = null
  142. this.tabs = null
  143. this.tab = null
  144. this.visible = false
  145. this.checkMap = {}
  146. this.useMap = {}
  147. this.lockMap = {}
  148. this.$emit('close', false)
  149. this.$event.off(this.$event.key.NUM_REFRESH)
  150. },
  151. handleTab() {
  152. let totalData = []
  153. for (let i = 1; i <= this.box.quantity; i++) {
  154. totalData.push(i)
  155. }
  156. const Tabs = []
  157. let count =
  158. Math.floor(this.box.quantity / 100) + (this.box.quantity % 100 > 0 ? 1 : 0)
  159. for (let i = 0; i < count; i++) {
  160. let title = `${100 * i + 1}~${100 * i + 100}`
  161. if (100 * (i + 1) > totalData.length) {
  162. title = `${100 * i + 1}~${totalData.length}`
  163. }
  164. Tabs.push({
  165. title: title,
  166. value: i + 1,
  167. data: totalData.slice(100 * i, 100 * (i + 1))
  168. })
  169. }
  170. this.tabs = Tabs
  171. this.tab = Tabs[0]
  172. },
  173. async getData() {
  174. let startSeatNumber = 1
  175. let endSeatNumber = 100
  176. if (this.tab) {
  177. let data = this.tab.data
  178. startSeatNumber = data[0]
  179. endSeatNumber = data[data.length - 1]
  180. }
  181. const res = await this.$service.award.unavaliableSeatNumbers(
  182. this.poolId,
  183. this.box.number,
  184. startSeatNumber,
  185. endSeatNumber
  186. )
  187. if (res) {
  188. let nums = []
  189. if (res.usedSeatNumbers) {
  190. let map = {}
  191. res.usedSeatNumbers.forEach((item) => {
  192. map[item.seatNumber] = item.level
  193. nums.push(item.seatNumber)
  194. })
  195. setTimeout(() => {
  196. this.useMap = map
  197. }, 0)
  198. }
  199. if (res.applyedSeatNumbers) {
  200. let map = {}
  201. res.applyedSeatNumbers.forEach((item) => {
  202. map[item] = item
  203. nums.push(item)
  204. })
  205. setTimeout(() => {
  206. this.lockMap = map
  207. }, 0)
  208. }
  209. if (nums && nums.length > 0) {
  210. this.handleDuplicate(nums)
  211. }
  212. }
  213. },
  214. clickTab(item) {
  215. this.tab = item
  216. this.getData()
  217. this.scrollTop = this.scrollTop == 1 ? 0 : 1
  218. },
  219. choose(item) {
  220. if (this.useMap[item] || this.lockMap[item]) {
  221. return
  222. }
  223. if (this.checkMap[item]) {
  224. delete this.checkMap[item]
  225. } else {
  226. if (this.chooseData && this.chooseData.length >= 50) {
  227. this.$message.warn('最多不超过50发')
  228. return
  229. }
  230. this.checkMap[item] = item
  231. }
  232. this.checkMap = { ...this.checkMap }
  233. },
  234. deleteChoose(item) {
  235. delete this.checkMap[item]
  236. this.checkMap = { ...this.checkMap }
  237. },
  238. handleDuplicate(nums) {
  239. nums.forEach((item) => {
  240. delete this.checkMap[item]
  241. })
  242. this.checkMap = { ...this.checkMap }
  243. },
  244. async preview() {
  245. if (!this.$common.isLogin()) {
  246. this.$router.push('login')
  247. return
  248. }
  249. if (!this.chooseData || this.chooseData.length <= 0) {
  250. this.$message.warn('请选择号码')
  251. return
  252. }
  253. const res = await this.$service.award.preview(
  254. this.poolId,
  255. this.chooseData.length,
  256. this.box.number,
  257. this.chooseData
  258. )
  259. if (res) {
  260. if (res.duplicateSeatNumbers && res.duplicateSeatNumbers.length > 0) {
  261. this.$message.alert(`${res.duplicateSeatNumbers.join(',')}号被占用`)
  262. this.handleDuplicate(res.duplicateSeatNumbers)
  263. this.getData()
  264. return
  265. }
  266. this.$emit('pay', { res, chooseNum: this.chooseData, boxNum: this.box.number })
  267. }
  268. }
  269. }
  270. }
  271. </script>
  272. <style lang="scss" scoped>
  273. .mask {
  274. position: absolute;
  275. left: 0;
  276. right: 0;
  277. top: 0;
  278. bottom: 0;
  279. }
  280. .wrapper {
  281. background: #fff;
  282. border-radius: 15px 15px 0px 0px !important;
  283. .title {
  284. text-align: center;
  285. font-size: 32rpx;
  286. font-family: Source Han Sans, Source Han Sans;
  287. font-weight: 700;
  288. color: #000000;
  289. padding: 44rpx 0 10rpx 0;
  290. position: relative;
  291. }
  292. .close {
  293. position: absolute;
  294. right: 0;
  295. width: 48rpx;
  296. height: 48rpx;
  297. background: #ebebeb;
  298. border-radius: 48rpx;
  299. color: #a2a2a2;
  300. top: 30rpx;
  301. line-height: 48rpx;
  302. }
  303. .item {
  304. margin: 7px 6px;
  305. background: #FFE957;
  306. border-radius: 4rpx;
  307. font-size: 24rpx;
  308. color: #000;
  309. position: relative;
  310. .levelTitle {
  311. font-size: 20rpx;
  312. }
  313. &.active {
  314. }
  315. &.level {
  316. background: #e8e8e8;
  317. }
  318. &.invalid {
  319. background: rgba(98, 99, 115, 0.3);
  320. box-shadow: none;
  321. color: rgba(255, 255, 255, 0.3);
  322. border: none;
  323. }
  324. .checkIcon {
  325. width: 32rpx;
  326. height: 28rpx;
  327. color: #FFE957;
  328. background: #000;
  329. border-radius: 12rpx 0 0 0;
  330. text-align: center;
  331. position: absolute;
  332. right: 0;
  333. bottom: 0;
  334. }
  335. }
  336. }
  337. .scroll-content {
  338. position: relative;
  339. height: 60rpx;
  340. white-space: nowrap;
  341. width: 100%;
  342. .cell {
  343. display: inline-block;
  344. overflow: hidden;
  345. width: 60px;
  346. height: 30px;
  347. border-radius: 4rpx;
  348. padding: 0 7px;
  349. }
  350. .selectItem {
  351. background: #FFE957;
  352. .closeBtn {
  353. color: #000;
  354. background: rgba(255, 255, 255, 0.3);
  355. border-radius: 50%;
  356. padding: 4rpx;
  357. margin-left: 12rpx;
  358. }
  359. }
  360. }
  361. .btnBox {
  362. color: #000;
  363. .btn {
  364. width: 358rpx;
  365. height: 80rpx;
  366. padding-top: 10rpx;
  367. font-size: 28rpx;
  368. text-align: center;
  369. border-radius: 178rpx 178rpx 178rpx 178rpx;
  370. font-weight: bold;
  371. margin: auto;
  372. line-height: 40rpx;
  373. .text {
  374. font-size: 20rpx;
  375. font-family: Source Han Sans, Source Han Sans;
  376. font-weight: 350;
  377. color: #000000;
  378. width: 100%;
  379. line-height: 20rpx;
  380. }
  381. }
  382. }
  383. </style>