coupon.vue 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  1. <template>
  2. <view class="app-container">
  3. <view class="list-container">
  4. <block v-for="(item, index) in couponList" :key='index'>
  5. <view class="item" @tap="chooseCoupon(index, item.useableFlag)">
  6. <view class="bg">
  7. <image src="@/static/mine/coupon/bg_0.png" v-if="!item.useableFlag"></image>
  8. <image src="@/static/mine/coupon/bg_1.png" v-if="item.useableFlag"></image>
  9. </view>
  10. <view class="content">
  11. <view class="left">
  12. <view class="price">{{item.couponValue}}<text>元</text></view>
  13. <view class="text" v-if="item.couponType == 'SATISFY'">满{{item.orderAmount}}可用</view>
  14. </view>
  15. <view class="right">
  16. <view class="main">
  17. <view class="row1 ellipsis-2">{{item.couponName}}</view>
  18. <view class="row2">
  19. <view class="date">
  20. <view>使用时间:</view>
  21. <view>{{item.activeStartTime | dateToYYmmdd2}}-{{item.activeEndTime | dateToYYmmdd2}}</view>
  22. </view>
  23. <view class="button2" v-if="!item.useableFlag">不可用</view>
  24. <view class="button" v-if="item.useableFlag">使用</view>
  25. </view>
  26. </view>
  27. </view>
  28. </view>
  29. </view>
  30. </block>
  31. </view>
  32. <no-data v-if="!couponList.length" :showText="'暂无可用优惠券'"></no-data>
  33. <view class="bottom-container">
  34. <view class="button" @tap="noUseCoupon">不使用优惠券</view>
  35. </view>
  36. </view>
  37. </template>
  38. <script>
  39. import {mapState} from 'vuex';
  40. import EventBus from '@/utils/eventbus.js';
  41. export default {
  42. data() {
  43. return {
  44. couponList: [],
  45. orderAmount: 0,
  46. goodsIds: [],
  47. }
  48. },
  49. computed:{
  50. ...mapState(['userInfo', 'isLogin', 'userId'])
  51. },
  52. onLoad({orderAmount, goodsIds}) {
  53. this.orderAmount = orderAmount;
  54. this.goodsIds = JSON.parse(goodsIds);
  55. this.getCouponList();
  56. },
  57. methods: {
  58. getCouponList() {
  59. this.$axios({
  60. url: '/coupon/list/useable',
  61. method: 'get',
  62. params: {
  63. orderAmount: this.orderAmount,
  64. goodsSpecIds: this.goodsIds.join(','),
  65. userId: this.userId
  66. },
  67. isLoading: 1
  68. }).then(res => {
  69. this.couponList = res.data;
  70. })
  71. },
  72. // 选择优惠券
  73. chooseCoupon(index, canUse) {
  74. if(!canUse) {
  75. return this.$toast('该优惠券不可用');
  76. }
  77. EventBus.$emit('chooseCoupon', this.couponList[index]);
  78. uni.navigateBack({
  79. delta: 1
  80. })
  81. },
  82. // 不使用优惠券
  83. noUseCoupon() {
  84. uni.$emit('chooseCoupon', '');
  85. uni.navigateBack({
  86. delta: 1
  87. })
  88. }
  89. }
  90. }
  91. </script>
  92. <style lang="scss">
  93. .app-container {
  94. background: #F4F2F2;
  95. padding: 20rpx 20rpx 120rpx;
  96. box-sizing: border-box;
  97. }
  98. .list-container {
  99. .item {
  100. position: relative;
  101. margin-bottom: 20rpx;
  102. .bg {
  103. image {
  104. width: 710rpx;
  105. height: 160rpx;
  106. display: block;
  107. }
  108. }
  109. .content {
  110. position: absolute;
  111. left: 0;
  112. top: 0;
  113. width: 710rpx;
  114. height: 160rpx;
  115. display: flex;
  116. align-items: center;
  117. .left {
  118. width: 240rpx;
  119. display: flex;
  120. align-items: center;
  121. justify-content: center;
  122. flex-direction: column;
  123. .price {
  124. font-size: 60rpx;
  125. color: #FFFFFF;
  126. text {
  127. font-size: 28rpx;
  128. margin-top: 20rpx;
  129. }
  130. }
  131. .text {
  132. color: #FFFFFF;
  133. font-size: 28rpx;
  134. }
  135. }
  136. .right {
  137. display: flex;
  138. align-items: center;
  139. justify-content: space-between;
  140. padding: 0 20rpx;
  141. width: 470rpx;
  142. height: 160rpx;
  143. box-sizing: border-box;
  144. .main {
  145. width: 430rpx;
  146. height: 160rpx;
  147. padding: 16rpx 0;
  148. box-sizing: border-box;
  149. display: flex;
  150. flex-direction: column;
  151. justify-content: space-between;
  152. .row1 {
  153. font-size: 28rpx;
  154. line-height: 32rpx;
  155. }
  156. .row2 {
  157. display: flex;
  158. justify-content: space-between;
  159. align-items: center;
  160. .date {
  161. font-size: 24rpx;
  162. color: #999999;
  163. line-height: 28rpx;
  164. }
  165. .button {
  166. width: 100rpx;
  167. height: 40rpx;
  168. text-align: center;
  169. line-height: 40rpx;
  170. border-radius: 40rpx;
  171. border: 1px solid #FF3F42;
  172. font-size: 24rpx;
  173. color: #FF3F42;
  174. flex-shrink: 0;
  175. }
  176. .button2 {
  177. width: 100rpx;
  178. height: 40rpx;
  179. text-align: center;
  180. line-height: 40rpx;
  181. border-radius: 40rpx;
  182. border: 1px solid #b0b0b0;
  183. font-size: 24rpx;
  184. color: #999999;
  185. flex-shrink: 0;
  186. }
  187. }
  188. }
  189. .tag {
  190. position: absolute;
  191. right: 20rpx;
  192. top: 10rpx;
  193. image {
  194. width: 80rpx;
  195. height: 80rpx;
  196. }
  197. }
  198. }
  199. }
  200. }
  201. }
  202. .bottom-container {
  203. position: fixed;
  204. bottom: 0;
  205. left: 0;
  206. width: 100%;
  207. padding: 0 20rpx;
  208. box-sizing: border-box;
  209. background: #FFFFFF;
  210. display: flex;
  211. align-items: center;
  212. height: 100rpx;
  213. .button {
  214. width: 100%;
  215. height: 68rpx;
  216. line-height: 68rpx;
  217. border-radius: 68rpx;
  218. text-align: center;
  219. font-size: 28rpx;
  220. color: #666666;
  221. border: 1px solid #B0B0B0;
  222. }
  223. }
  224. </style>