card.vue 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. <template>
  2. <view class="page">
  3. <u-tabs :font-size='28' :list="list" :is-scroll="false" :current="current" @change="change"></u-tabs>
  4. <view class="list" v-if="current==0">
  5. <view class="box u-flex" v-for="(item,index) in MyCertificate" :key="index">
  6. <image :src="item.goods.image" style="width:120rpx;height: 160rpx;" mode=""></image>
  7. <view class="" style="margin-left: 62rpx;width: 300rpx;">
  8. <view class="title">
  9. {{item.goods.title}}
  10. </view>
  11. <view class="time">
  12. {{item.free_end_time||''}}
  13. </view>
  14. </view>
  15. <view v-if="item.is_expire==1" class="button" style="margin-left: 36rpx;" @click='use(item.id)'>
  16. 立即使用
  17. </view>
  18. <view v-if="item.is_expire==0" class="">
  19. <image src="../../static/images/past.png" style="width: 200rpx;height: 200rpx;" mode=""></image>
  20. </view>
  21. </view>
  22. </view>
  23. <view class="list" v-if="current==1">
  24. <view class="box u-flex" v-for="(item,index) in certificate" :key="index">
  25. <image :src="item.goods.image" style="width:120rpx;height: 160rpx;" mode=""></image>
  26. <view class="" style="margin-left: 62rpx;width: 300rpx;">
  27. <view class="title">
  28. {{item.goods.title}}
  29. </view>
  30. <view class="time">
  31. {{item.free_end_time||''}}
  32. </view>
  33. </view>
  34. <view v-if="item.is_expire==1" class="button" style="margin-left: 36rpx;" @click='use(item.id)'>
  35. 立即使用
  36. </view>
  37. <view v-if="item.is_expire==0" class="">
  38. <image src="../../static/images/past.png" style="width: 200rpx;height: 200rpx;" mode=""></image>
  39. </view>
  40. </view>
  41. </view>
  42. <view class="list" v-if="current==2">
  43. <view class="box u-flex" v-for="(item,index) in uncertificate" :key="index">
  44. <image :src="item.goods.image" style="width:120rpx;height: 160rpx;" mode=""></image>
  45. <view class="" style="margin-left: 62rpx;width: 300rpx;">
  46. <view class="title">
  47. {{item.goods.title}}
  48. </view>
  49. <view class="time">
  50. {{item.free_end_time||''}}
  51. </view>
  52. </view>
  53. <view v-if="item.is_expire==1" class="button" style="margin-left: 36rpx;">
  54. 立即使用
  55. </view>
  56. <view v-if="item.is_expire==0" class="">
  57. <image src="../../static/images/past.png" style="width: 200rpx;height: 200rpx;" mode=""></image>
  58. </view>
  59. </view>
  60. </view>
  61. </view>
  62. </template>
  63. <script>
  64. export default {
  65. data() {
  66. return {
  67. list: [{
  68. name: '全部'
  69. }, {
  70. name: '生效中'
  71. }, {
  72. name: '已过期',
  73. }],
  74. current: 0,
  75. MyCertificate: [],
  76. certificate: [],
  77. uncertificate: [],
  78. };
  79. },
  80. onLoad() {
  81. this.getMyCertificate()
  82. this.Certificate()
  83. this.unCertificate()
  84. },
  85. methods: {
  86. use(id) {
  87. this.$u.post('/api/certificate/useCertificate', {
  88. id: this.id
  89. }).then(res => {
  90. })
  91. },
  92. change(index) {
  93. this.current = index;
  94. },
  95. getMyCertificate() {
  96. this.$u.post('/api/certificate/getMyCertificate', {
  97. is_expire: ''
  98. }).then(res => {
  99. console.log(res);
  100. this.MyCertificate = res.data.data
  101. })
  102. },
  103. Certificate() {
  104. this.$u.post('/api/certificate/getMyCertificate', {
  105. is_expire: 1
  106. }).then(res => {
  107. console.log(res);
  108. this.certificate = res.data.data
  109. })
  110. },
  111. unCertificate() {
  112. this.$u.post('/api/certificate/getMyCertificate', {
  113. is_expire: 0
  114. }).then(res => {
  115. console.log(res);
  116. this.uncertificate = res.data.data
  117. })
  118. },
  119. }
  120. }
  121. </script>
  122. <style lang="scss">
  123. .title {
  124. font-size: 28rpx;
  125. font-family: PingFangSC, PingFang SC;
  126. font-weight: 400;
  127. color: #333333;
  128. }
  129. .time {
  130. font-size: 20rpx;
  131. font-family: SFPro, SFPro;
  132. font-weight: 400;
  133. color: #222222;
  134. margin-top: 40rpx;
  135. opacity: 0.6;
  136. }
  137. .button {
  138. width: 144rpx;
  139. height: 64rpx;
  140. background: #06A971;
  141. border-radius: 8rpx;
  142. line-height: 64rpx;
  143. text-align: center;
  144. font-size: 26rpx;
  145. font-family: PingFangSC, PingFang SC;
  146. font-weight: 500;
  147. color: #FFFFFF;
  148. }
  149. ::v-deep .u-tab-bar {
  150. background-color: #06A971 !important;
  151. }
  152. ::v-deep .u-tab-item {
  153. color: #222 !important
  154. }
  155. .box {
  156. margin-top: 20rpx;
  157. padding: 40rpx 20rpx 40rpx 28rpx;
  158. width: 694rpx;
  159. height: 240rpx;
  160. background: #FFFFFF;
  161. background: url('../../static/images/module.png') no-repeat;
  162. background-size: cover;
  163. }
  164. .list {
  165. padding: 0 28rpx;
  166. }
  167. .page {
  168. background: #F6F6F6;
  169. min-height: 100vh;
  170. }
  171. </style>