pay_freedom.vue 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  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 class="relative">
  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="paddingX15 btnList">
  14. <view v-for="(item, pIndex) in btns" :key="pIndex" class="marginB17">
  15. <view
  16. class="relative btn"
  17. :class="{ active: checkNum == item }"
  18. @click="checkNum = item"
  19. >
  20. {{ item }}
  21. <text class="unit">发</text>
  22. <view v-if="checkNum == item" class="checkIcon cuIcon-check"></view>
  23. </view>
  24. </view>
  25. </view>
  26. <view class="flex-align-center paddingT13">
  27. <view class="relative submitBtn" :style="{ backgroundImage: 'url(' + ossurl.mine.butbj + ')' }" @click="pay">
  28. <view class="">确认选择{{ price }}</view>
  29. </view>
  30. </view>
  31. <view class="fill"></view>
  32. </view>
  33. </view>
  34. </template>
  35. <script>
  36. import { throttle } from '@/utils'
  37. import resource from '@/utils/resource'
  38. import ossurl from '@/utils/ossurl'
  39. const btns = [10, 20, 30, 40, 50]
  40. export default {
  41. props: {
  42. data: Object,
  43. poolId: [Number,String]
  44. },
  45. data() {
  46. return {
  47. ossurl,
  48. resource,
  49. visible: false,
  50. checkNum: btns[0][0],
  51. btns: btns
  52. }
  53. },
  54. computed: {
  55. price() {
  56. if (!this.checkNum) return ''
  57. let tp = 0
  58. let price = `¥${(this.data.price * this.checkNum).toFixed(2)}`
  59. switch (this.checkNum) {
  60. case 10:
  61. tp = this.data.specialPriceTen
  62. ? `优惠价 ¥${this.data.specialPriceTen}`
  63. : price
  64. break
  65. case 20:
  66. tp = this.data.specialPriceTwenty
  67. ? `优惠价 ¥${this.data.specialPriceTwenty}`
  68. : price
  69. break
  70. case 30:
  71. tp = this.data.specialPriceThirty
  72. ? `优惠价 ¥${this.data.specialPriceThirty}`
  73. : price
  74. break
  75. case 40:
  76. tp = this.data.specialPriceForty
  77. ? `优惠价 ¥${this.data.specialPriceForty}`
  78. : price
  79. break
  80. case 50:
  81. tp = this.data.specialPriceFifty
  82. ? `优惠价 ¥${this.data.specialPriceFifty}`
  83. : price
  84. break
  85. }
  86. return tp
  87. }
  88. },
  89. methods: {
  90. show() {
  91. this.visible = true
  92. },
  93. close() {
  94. this.visible = false
  95. this.$emit('close', false)
  96. },
  97. pay() {
  98. if (!this.checkNum) return
  99. this.$emit('pay', this.checkNum)
  100. this.close()
  101. }
  102. }
  103. }
  104. </script>
  105. <style lang="scss" scoped>
  106. .mask {
  107. position: absolute;
  108. left: 0;
  109. right: 0;
  110. top: 0;
  111. bottom: 0;
  112. }
  113. .wrapper {
  114. padding: 0 28rpx;
  115. background: #fff;
  116. border-radius: 15px 15px 0px 0px !important;
  117. .title {
  118. text-align: center;
  119. font-size: 32rpx;
  120. font-family: Source Han Sans, Source Han Sans;
  121. font-weight: 700;
  122. color: #000000;
  123. padding: 44rpx 0 48rpx 0;
  124. position: relative;
  125. }
  126. .x {
  127. width: 32rpx;
  128. height: 32rpx;
  129. }
  130. .close {
  131. position: absolute;
  132. right: 0rpx;
  133. width: 48rpx;
  134. height: 48rpx;
  135. background: #ebebeb;
  136. border-radius: 48rpx;
  137. color: #a2a2a2;
  138. top: 30rpx;
  139. line-height: 48rpx;
  140. }
  141. .btnList {
  142. display: flex;
  143. flex-wrap: wrap;
  144. justify-content: space-between;
  145. padding: 0 30rpx;
  146. }
  147. .btn {
  148. width: 258rpx;
  149. height: 80rpx;
  150. background: #fff7e3;
  151. border-radius: 12rpx 12rpx 12rpx 12rpx;
  152. opacity: 1;
  153. font-size: 40rpx;
  154. font-weight: bold;
  155. color: #000000;
  156. text-align: center;
  157. line-height: 80rpx;
  158. position: relative;
  159. .unit {
  160. font-size: 24rpx;
  161. font-weight: 500;
  162. }
  163. &.active {
  164. background-color: #FFE957;
  165. }
  166. .checkIcon {
  167. position: absolute;
  168. bottom: 0;
  169. right: 0;
  170. color: #FFE957;
  171. background-color: #000000;
  172. height: 30rpx;
  173. width: 36rpx;
  174. font-size: 26rpx;
  175. line-height: 30rpx;
  176. border-radius: 24rpx 0 12rpx 0;
  177. }
  178. }
  179. .flag {
  180. width: 40rpx;
  181. height: 40rpx;
  182. position: absolute;
  183. right: 0;
  184. bottom: 0;
  185. }
  186. .btn-text {
  187. position: absolute;
  188. bottom: 10rpx;
  189. }
  190. .fill {
  191. height: 68rpx;
  192. }
  193. .submitBtn {
  194. width: 358rpx;
  195. height: 80rpx;
  196. border-radius: 178rpx 178rpx 178rpx 178rpx;
  197. font-size: 28rpx;
  198. font-family: Source Han Sans, Source Han Sans;
  199. font-weight: 350;
  200. color: #000000;
  201. line-height: 80rpx;
  202. text-align: center;
  203. }
  204. }
  205. </style>