youhuiquan.vue 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. <template>
  2. <view class="content">
  3. <view class="tabs">
  4. <u-tabs :list="tabs" :scrollable="true" lineWidth="0" @click="changetab" keyName="name" :current="current"
  5. :inactiveStyle="{color: '#999999',fontSize: '30rpx',}"
  6. :activeStyle="{color: '#222222',fontSize: '30rpx',}"></u-tabs>
  7. </view>
  8. <view class="list" v-if="list.length> 0">
  9. <view class="list-item hflex acenter jbetween" v-for="(item,index) in list" :key="index">
  10. <view class="item-left vflex acenter jcenter" :class="item.is_use == 1 || item.is_expire == 1 ? 'left-bg' : ''">
  11. <view class="left-price">¥{{Number(item.coupon.amount).toFixed(0)}}</view>
  12. <view class="left-text" v-if="item.coupon.type == 'integral_threshold'">满{{Number(item.coupon.threshold).toFixed(0)}}元可用</view>
  13. </view>
  14. <view class="item-center vflex">
  15. <text>{{item.coupon.name}}</text>
  16. <text>{{item.coupon.description}}</text>
  17. <text>到期时间:{{item.coupon.expired_at.slice(0,-9)}}</text>
  18. </view>
  19. <view class="item-right hflex acenter jcenter">
  20. <view class="btn" v-if="item.is_use == 0 && item.is_expire == 0">使用</view>
  21. <image src="static/yishiyong.png" mode="aspectFill" v-if="item.is_use == 1"></image><!-- 已使用 -->
  22. <image src="static/yishixiao.png" mode="aspectFill" v-if="item.is_expire == 1"></image><!-- 已失效 -->
  23. </view>
  24. </view>
  25. </view>
  26. <view class="hflex acenter jcenter " style="height: 100vh;" v-else >
  27. <u-empty mode="data"></u-empty>
  28. </view>
  29. </view>
  30. </template>
  31. <script>
  32. import $api from '@/static/js/api.js'
  33. export default {
  34. data() {
  35. return {
  36. tabs: [
  37. {
  38. name: '全部'
  39. },
  40. {
  41. name: '待使用'
  42. },
  43. {
  44. name: '已使用'
  45. },
  46. {
  47. name: '已失效'
  48. },
  49. ],
  50. current: 0,
  51. list: [],
  52. page: 1,
  53. last_page: 1
  54. }
  55. },
  56. onLoad() {
  57. this.getlist()
  58. },
  59. onReachBottom() {
  60. if(this.page < this.last_page) {
  61. this.page++
  62. this.getlist()
  63. } else {
  64. uni.$u.toast('已经到底了')
  65. return
  66. }
  67. },
  68. methods: {
  69. changetab(e) {
  70. console.log(e);
  71. this.current = e.index
  72. this.list = []
  73. this.page = 1
  74. this.getlist()
  75. },
  76. getlist() {
  77. var _this = this
  78. var is_expire = ''
  79. var is_use = ''
  80. if(_this.current == 1) {
  81. is_expire = 0
  82. is_use = 0
  83. } else if(_this.current == 2) {
  84. is_use = 1
  85. } else if(_this.current == 3) {
  86. is_expire = 1
  87. }
  88. $api.req({
  89. url: 'user/coupon',
  90. data: {
  91. is_page: 1,
  92. page: _this.page,
  93. limit: 10,
  94. is_expire: is_expire,
  95. is_use: is_use
  96. }
  97. }, function(res) {
  98. if(res.code == 10000) {
  99. _this.list = _this.list.concat(res.data.list)
  100. _this.last_page = res.data.last_page
  101. }
  102. })
  103. }
  104. }
  105. }
  106. </script>
  107. <style lang="scss">
  108. .content {
  109. background: #F5F5F5;
  110. .list {
  111. width: 100%;
  112. box-sizing: border-box;
  113. padding: 0 28rpx;
  114. .list-item {
  115. margin: 20rpx 0 0;
  116. width: 694rpx;
  117. height: 160rpx;
  118. border-radius: 8rpx;
  119. background: #FFFFFF;
  120. .item-right {
  121. height: 100%;
  122. padding: 0 28rpx 0 0;
  123. .btn {
  124. width: 124rpx;
  125. height: 48rpx;
  126. border-radius: 28rpx;
  127. border: 1rpx solid #00B0B0;
  128. font-size: 22rpx;
  129. font-family: PingFangSC, PingFang SC;
  130. font-weight: 400;
  131. color: #00B0B0;
  132. line-height: 48rpx;
  133. text-align: center;
  134. }
  135. image {
  136. width: 108rpx;
  137. height: 108rpx;
  138. }
  139. }
  140. .item-center {
  141. padding: 16rpx 20rpx;
  142. max-width: 362rpx;
  143. text {
  144. font-size: 20rpx;
  145. font-family: PingFangSC, PingFang SC;
  146. font-weight: 400;
  147. color: #333333;
  148. }
  149. text:first-child {
  150. font-size: 28rpx;
  151. font-family: PingFangSC, PingFang SC;
  152. font-weight: 500;
  153. color: #333333;
  154. padding: 0 0 8rpx;
  155. }
  156. text:last-child {
  157. font-size: 18rpx;
  158. font-family: SFPro, SFPro;
  159. font-weight: 400;
  160. color: #666666;
  161. padding: 24rpx 0 0;
  162. white-space: nowrap;
  163. }
  164. }
  165. .item-left {
  166. height: 100%;
  167. width: 196rpx;
  168. background: #00B0B0;
  169. .left-price {
  170. font-size: 32rpx;
  171. font-family: PingFangSC, PingFang SC;
  172. font-weight: 600;
  173. color: #FFFFFF;
  174. }
  175. .left-text {
  176. font-size: 20rpx;
  177. font-family: PingFangSC, PingFang SC;
  178. font-weight: 400;
  179. color: #FFFFFF;
  180. padding: 18rpx 0 0;
  181. }
  182. }
  183. .left-bg {
  184. background: #B2B2B2 !important;
  185. }
  186. }
  187. }
  188. .tabs {
  189. background: #FFFFFF;
  190. }
  191. }
  192. </style>