youhuiquan.vue 5.1 KB

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