card.vue 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  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: id
  89. }).then(res => {
  90. this.$u.toast(res.msg)
  91. setTimeout(() => {
  92. uni.navigateTo({
  93. url: '/pages/index/bookinfo?id=' + id
  94. })
  95. }, 800)
  96. })
  97. },
  98. change(index) {
  99. this.current = index;
  100. },
  101. getMyCertificate() {
  102. this.$u.post('/api/certificate/getMyCertificate', {
  103. is_expire: ''
  104. }).then(res => {
  105. this.MyCertificate = res.data.data
  106. console.log('MyCertificate', this.MyCertificate);
  107. })
  108. },
  109. Certificate() {
  110. this.$u.post('/api/certificate/getMyCertificate', {
  111. is_expire: 1
  112. }).then(res => {
  113. console.log(res);
  114. this.certificate = res.data.data
  115. })
  116. },
  117. unCertificate() {
  118. this.$u.post('/api/certificate/getMyCertificate', {
  119. is_expire: 0
  120. }).then(res => {
  121. console.log(res);
  122. this.uncertificate = res.data.data
  123. })
  124. },
  125. }
  126. }
  127. </script>
  128. <style lang="scss">
  129. .title {
  130. font-size: 28rpx;
  131. font-family: PingFangSC, PingFang SC;
  132. font-weight: 400;
  133. color: #333333;
  134. }
  135. .time {
  136. font-size: 20rpx;
  137. font-family: SFPro, SFPro;
  138. font-weight: 400;
  139. color: #222222;
  140. margin-top: 40rpx;
  141. opacity: 0.6;
  142. }
  143. .button {
  144. width: 144rpx;
  145. height: 64rpx;
  146. background: #06A971;
  147. border-radius: 8rpx;
  148. line-height: 64rpx;
  149. text-align: center;
  150. font-size: 26rpx;
  151. font-family: PingFangSC, PingFang SC;
  152. font-weight: 500;
  153. color: #FFFFFF;
  154. }
  155. ::v-deep .u-tab-bar {
  156. background-color: #06A971 !important;
  157. }
  158. ::v-deep .u-tab-item {
  159. color: #222 !important
  160. }
  161. .box {
  162. margin-top: 20rpx;
  163. padding: 40rpx 20rpx 40rpx 28rpx;
  164. width: 694rpx;
  165. height: 240rpx;
  166. background: #FFFFFF;
  167. background: url('../../static/images/module.png') no-repeat;
  168. background-size: cover;
  169. }
  170. .list {
  171. padding: 0 28rpx;
  172. }
  173. .page {
  174. background: #F6F6F6;
  175. min-height: 100vh;
  176. }
  177. </style>