coupon.vue 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  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="handleCoupon(item)">
  6. <view class="bg">
  7. <image src="@/static/mine/coupon/bg_1.png"></image>
  8. </view>
  9. <view class="content">
  10. <view class="left">
  11. <view class="price">{{item.couponValue}}<text>元</text></view>
  12. <view class="text" v-if="item.couponType == 'SATISFY'">满{{item.orderAmount}}可用</view>
  13. </view>
  14. <view class="right">
  15. <view class="main">
  16. <view class="row1 ellipsis-2">{{item.couponName}}</view>
  17. <view class="row2">
  18. <view class="date" v-if="item.obtainType == 0 || item.obtainType == 1">
  19. <view>领取时间:</view>
  20. <view>{{item.obtainStartTime | dateToYYmmdd2}}-{{item.obtainEndTime | dateToYYmmdd2}}</view>
  21. </view>
  22. <view class="date" v-if="item.obtainType == 2">
  23. <view>使用时间:</view>
  24. <view>{{item.activeStartTime | dateToYYmmdd2}}-{{item.activeEndTime | dateToYYmmdd2}}</view>
  25. </view>
  26. <view class="button gary" v-if="item.obtainType == 0">待开始</view>
  27. <view class="button red" v-if="item.obtainType == 1">立即领取</view>
  28. <view class="button white" v-if="item.obtainType == 2">去使用</view>
  29. </view>
  30. </view>
  31. </view>
  32. </view>
  33. </view>
  34. </block>
  35. </view>
  36. <no-data v-if="!couponList.length" :showText="'暂无可领取优惠券'"></no-data>
  37. </view>
  38. </template>
  39. <script>
  40. import {mapState} from 'vuex';
  41. export default {
  42. data() {
  43. return {
  44. couponList: [],
  45. }
  46. },
  47. computed:{
  48. ...mapState(['userInfo', 'isLogin', 'userId'])
  49. },
  50. onLoad() {
  51. this.getCouponList();
  52. },
  53. methods: {
  54. getCouponList() {
  55. this.$axios({
  56. url: '/coupon/list/all',
  57. method: 'get',
  58. params: {
  59. userId: this.userId
  60. },
  61. isLoading: 1
  62. }).then(res => {
  63. this.couponList = res.data;
  64. })
  65. },
  66. // 处理优惠券
  67. handleCoupon(item) {
  68. if(item.obtainType == 0) {
  69. return this.$toast('该优惠券不可领取');
  70. }else if(item.obtainType == 1) {
  71. this.$axios({
  72. url: '/coupon/obtain',
  73. method: 'get',
  74. params: {
  75. userId: this.userId,
  76. couponId: item.couponId
  77. }
  78. }).then(res => {
  79. this.$successToast('领取成功');
  80. this.getCouponList();
  81. })
  82. }else if(item.obtainType == 2) {
  83. uni.switchTab({
  84. url: '/pages/goods/classify'
  85. });
  86. }
  87. },
  88. }
  89. }
  90. </script>
  91. <style lang="scss">
  92. .app-container {
  93. background: #F4F2F2;
  94. padding: 20rpx;
  95. box-sizing: border-box;
  96. }
  97. .list-container {
  98. .item {
  99. position: relative;
  100. margin-bottom: 20rpx;
  101. .bg {
  102. image {
  103. width: 710rpx;
  104. height: 160rpx;
  105. display: block;
  106. }
  107. }
  108. .content {
  109. position: absolute;
  110. left: 0;
  111. top: 0;
  112. width: 710rpx;
  113. height: 160rpx;
  114. display: flex;
  115. align-items: center;
  116. .left {
  117. width: 240rpx;
  118. display: flex;
  119. align-items: center;
  120. justify-content: center;
  121. flex-direction: column;
  122. .price {
  123. font-size: 60rpx;
  124. color: #FFFFFF;
  125. text {
  126. font-size: 28rpx;
  127. margin-top: 20rpx;
  128. }
  129. }
  130. .text {
  131. color: #FFFFFF;
  132. font-size: 28rpx;
  133. }
  134. }
  135. .right {
  136. display: flex;
  137. align-items: center;
  138. justify-content: space-between;
  139. padding: 0 20rpx;
  140. width: 470rpx;
  141. height: 160rpx;
  142. box-sizing: border-box;
  143. .main {
  144. width: 430rpx;
  145. height: 160rpx;
  146. padding: 16rpx 0;
  147. box-sizing: border-box;
  148. display: flex;
  149. flex-direction: column;
  150. justify-content: space-between;
  151. .row1 {
  152. font-size: 28rpx;
  153. line-height: 32rpx;
  154. }
  155. .row2 {
  156. display: flex;
  157. justify-content: space-between;
  158. align-items: center;
  159. .date {
  160. font-size: 24rpx;
  161. color: #999999;
  162. line-height: 28rpx;
  163. }
  164. .button {
  165. width: 120rpx;
  166. height: 40rpx;
  167. border-radius: 40rpx;
  168. font-size: 24rpx;
  169. flex-shrink: 0;
  170. box-sizing: border-box;
  171. display: flex;
  172. justify-content: center;
  173. align-items: center;
  174. &.gary {
  175. background: #AAAAAA;
  176. color: #FFFFFF;
  177. border: 1px solid #AAAAAA;
  178. }
  179. &.red {
  180. background: #C434FF;
  181. color: #FFFFFF;
  182. border: 1px solid #C434FF;
  183. }
  184. &.white {
  185. color: #FF3F42;
  186. border: 1px solid #FF3F42;
  187. }
  188. }
  189. }
  190. }
  191. }
  192. }
  193. }
  194. }
  195. </style>